@aws-sdk/client-fsx 3.43.0 → 3.47.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.
- package/CHANGELOG.md +50 -0
- package/dist-cjs/FSx.js +150 -0
- package/dist-cjs/commands/CreateDataRepositoryAssociationCommand.js +36 -0
- package/dist-cjs/commands/CreateSnapshotCommand.js +36 -0
- package/dist-cjs/commands/DeleteDataRepositoryAssociationCommand.js +36 -0
- package/dist-cjs/commands/DeleteSnapshotCommand.js +36 -0
- package/dist-cjs/commands/DescribeDataRepositoryAssociationsCommand.js +36 -0
- package/dist-cjs/commands/DescribeSnapshotsCommand.js +36 -0
- package/dist-cjs/commands/ReleaseFileSystemNfsV3LocksCommand.js +36 -0
- package/dist-cjs/commands/RestoreVolumeFromSnapshotCommand.js +36 -0
- package/dist-cjs/commands/UpdateDataRepositoryAssociationCommand.js +36 -0
- package/dist-cjs/commands/UpdateSnapshotCommand.js +36 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/endpoints.js +1 -28
- package/dist-cjs/models/models_0.js +351 -208
- package/dist-cjs/pagination/DescribeDataRepositoryAssociationsPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeSnapshotsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1745 -131
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/FSx.js +150 -0
- package/dist-es/commands/CreateDataRepositoryAssociationCommand.js +39 -0
- package/dist-es/commands/CreateSnapshotCommand.js +39 -0
- package/dist-es/commands/DeleteDataRepositoryAssociationCommand.js +39 -0
- package/dist-es/commands/DeleteSnapshotCommand.js +39 -0
- package/dist-es/commands/DescribeDataRepositoryAssociationsCommand.js +39 -0
- package/dist-es/commands/DescribeSnapshotsCommand.js +39 -0
- package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +39 -0
- package/dist-es/commands/RestoreVolumeFromSnapshotCommand.js +39 -0
- package/dist-es/commands/UpdateDataRepositoryAssociationCommand.js +39 -0
- package/dist-es/commands/UpdateSnapshotCommand.js +39 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoints.js +1 -28
- package/dist-es/models/models_0.js +265 -148
- package/dist-es/pagination/DescribeDataRepositoryAssociationsPaginator.js +74 -0
- package/dist-es/pagination/DescribeSnapshotsPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +1653 -74
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/FSx.d.ts +406 -146
- package/dist-types/FSxClient.d.ts +17 -3
- package/dist-types/commands/CopyBackupCommand.d.ts +12 -12
- package/dist-types/commands/CreateBackupCommand.d.ts +27 -25
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +45 -0
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +6 -5
- package/dist-types/commands/CreateFileSystemCommand.d.ts +36 -16
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +14 -14
- package/dist-types/commands/CreateSnapshotCommand.d.ts +62 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/commands/DeleteBackupCommand.d.ts +4 -3
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +41 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +14 -15
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +39 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +2 -4
- package/dist-types/commands/DescribeBackupsCommand.d.ts +17 -18
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +53 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +9 -9
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +61 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +2 -1
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +36 -0
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +36 -0
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +37 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +95 -22
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +35 -0
- package/dist-types/commands/UpdateVolumeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +2666 -808
- package/dist-types/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/FSx.d.ts +50 -0
- package/dist-types/ts3.4/FSxClient.d.ts +15 -3
- package/dist-types/ts3.4/commands/CreateDataRepositoryAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataRepositoryAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDataRepositoryAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RestoreVolumeFromSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataRepositoryAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +768 -191
- package/dist-types/ts3.4/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -11,16 +11,15 @@ export var ActiveDirectoryErrorType;
|
|
|
11
11
|
ActiveDirectoryErrorType["INVALID_DOMAIN_STAGE"] = "INVALID_DOMAIN_STAGE";
|
|
12
12
|
ActiveDirectoryErrorType["WRONG_VPC"] = "WRONG_VPC";
|
|
13
13
|
})(ActiveDirectoryErrorType || (ActiveDirectoryErrorType = {}));
|
|
14
|
-
export var ActiveDirectoryError;
|
|
15
|
-
(function (ActiveDirectoryError) {
|
|
16
|
-
ActiveDirectoryError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
|
-
})(ActiveDirectoryError || (ActiveDirectoryError = {}));
|
|
18
14
|
export var AdministrativeActionType;
|
|
19
15
|
(function (AdministrativeActionType) {
|
|
20
16
|
AdministrativeActionType["FILE_SYSTEM_ALIAS_ASSOCIATION"] = "FILE_SYSTEM_ALIAS_ASSOCIATION";
|
|
21
17
|
AdministrativeActionType["FILE_SYSTEM_ALIAS_DISASSOCIATION"] = "FILE_SYSTEM_ALIAS_DISASSOCIATION";
|
|
22
18
|
AdministrativeActionType["FILE_SYSTEM_UPDATE"] = "FILE_SYSTEM_UPDATE";
|
|
19
|
+
AdministrativeActionType["RELEASE_NFS_V3_LOCKS"] = "RELEASE_NFS_V3_LOCKS";
|
|
20
|
+
AdministrativeActionType["SNAPSHOT_UPDATE"] = "SNAPSHOT_UPDATE";
|
|
23
21
|
AdministrativeActionType["STORAGE_OPTIMIZATION"] = "STORAGE_OPTIMIZATION";
|
|
22
|
+
AdministrativeActionType["VOLUME_UPDATE"] = "VOLUME_UPDATE";
|
|
24
23
|
})(AdministrativeActionType || (AdministrativeActionType = {}));
|
|
25
24
|
export var AdministrativeActionFailureDetails;
|
|
26
25
|
(function (AdministrativeActionFailureDetails) {
|
|
@@ -42,6 +41,7 @@ export var FileSystemType;
|
|
|
42
41
|
(function (FileSystemType) {
|
|
43
42
|
FileSystemType["LUSTRE"] = "LUSTRE";
|
|
44
43
|
FileSystemType["ONTAP"] = "ONTAP";
|
|
44
|
+
FileSystemType["OPENZFS"] = "OPENZFS";
|
|
45
45
|
FileSystemType["WINDOWS"] = "WINDOWS";
|
|
46
46
|
})(FileSystemType || (FileSystemType = {}));
|
|
47
47
|
export var FileSystemLifecycle;
|
|
@@ -62,6 +62,7 @@ export var AutoImportPolicyType;
|
|
|
62
62
|
(function (AutoImportPolicyType) {
|
|
63
63
|
AutoImportPolicyType["NEW"] = "NEW";
|
|
64
64
|
AutoImportPolicyType["NEW_CHANGED"] = "NEW_CHANGED";
|
|
65
|
+
AutoImportPolicyType["NEW_CHANGED_DELETED"] = "NEW_CHANGED_DELETED";
|
|
65
66
|
AutoImportPolicyType["NONE"] = "NONE";
|
|
66
67
|
})(AutoImportPolicyType || (AutoImportPolicyType = {}));
|
|
67
68
|
export var DataRepositoryFailureDetails;
|
|
@@ -73,6 +74,7 @@ export var DataRepositoryLifecycle;
|
|
|
73
74
|
DataRepositoryLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
74
75
|
DataRepositoryLifecycle["CREATING"] = "CREATING";
|
|
75
76
|
DataRepositoryLifecycle["DELETING"] = "DELETING";
|
|
77
|
+
DataRepositoryLifecycle["FAILED"] = "FAILED";
|
|
76
78
|
DataRepositoryLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
|
|
77
79
|
DataRepositoryLifecycle["UPDATING"] = "UPDATING";
|
|
78
80
|
})(DataRepositoryLifecycle || (DataRepositoryLifecycle = {}));
|
|
@@ -83,6 +85,7 @@ export var DataRepositoryConfiguration;
|
|
|
83
85
|
export var LustreDeploymentType;
|
|
84
86
|
(function (LustreDeploymentType) {
|
|
85
87
|
LustreDeploymentType["PERSISTENT_1"] = "PERSISTENT_1";
|
|
88
|
+
LustreDeploymentType["PERSISTENT_2"] = "PERSISTENT_2";
|
|
86
89
|
LustreDeploymentType["SCRATCH_1"] = "SCRATCH_1";
|
|
87
90
|
LustreDeploymentType["SCRATCH_2"] = "SCRATCH_2";
|
|
88
91
|
})(LustreDeploymentType || (LustreDeploymentType = {}));
|
|
@@ -91,6 +94,17 @@ export var DriveCacheType;
|
|
|
91
94
|
DriveCacheType["NONE"] = "NONE";
|
|
92
95
|
DriveCacheType["READ"] = "READ";
|
|
93
96
|
})(DriveCacheType || (DriveCacheType = {}));
|
|
97
|
+
export var LustreAccessAuditLogLevel;
|
|
98
|
+
(function (LustreAccessAuditLogLevel) {
|
|
99
|
+
LustreAccessAuditLogLevel["DISABLED"] = "DISABLED";
|
|
100
|
+
LustreAccessAuditLogLevel["ERROR_ONLY"] = "ERROR_ONLY";
|
|
101
|
+
LustreAccessAuditLogLevel["WARN_ERROR"] = "WARN_ERROR";
|
|
102
|
+
LustreAccessAuditLogLevel["WARN_ONLY"] = "WARN_ONLY";
|
|
103
|
+
})(LustreAccessAuditLogLevel || (LustreAccessAuditLogLevel = {}));
|
|
104
|
+
export var LustreLogConfiguration;
|
|
105
|
+
(function (LustreLogConfiguration) {
|
|
106
|
+
LustreLogConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
+
})(LustreLogConfiguration || (LustreLogConfiguration = {}));
|
|
94
108
|
export var LustreFileSystemConfiguration;
|
|
95
109
|
(function (LustreFileSystemConfiguration) {
|
|
96
110
|
LustreFileSystemConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -120,6 +134,14 @@ export var OntapFileSystemConfiguration;
|
|
|
120
134
|
(function (OntapFileSystemConfiguration) {
|
|
121
135
|
OntapFileSystemConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
136
|
})(OntapFileSystemConfiguration || (OntapFileSystemConfiguration = {}));
|
|
137
|
+
export var OpenZFSDeploymentType;
|
|
138
|
+
(function (OpenZFSDeploymentType) {
|
|
139
|
+
OpenZFSDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
|
|
140
|
+
})(OpenZFSDeploymentType || (OpenZFSDeploymentType = {}));
|
|
141
|
+
export var OpenZFSFileSystemConfiguration;
|
|
142
|
+
(function (OpenZFSFileSystemConfiguration) {
|
|
143
|
+
OpenZFSFileSystemConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
})(OpenZFSFileSystemConfiguration || (OpenZFSFileSystemConfiguration = {}));
|
|
123
145
|
export var StorageType;
|
|
124
146
|
(function (StorageType) {
|
|
125
147
|
StorageType["HDD"] = "HDD";
|
|
@@ -171,8 +193,16 @@ export var WindowsFileSystemConfiguration;
|
|
|
171
193
|
(function (WindowsFileSystemConfiguration) {
|
|
172
194
|
WindowsFileSystemConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
195
|
})(WindowsFileSystemConfiguration || (WindowsFileSystemConfiguration = {}));
|
|
196
|
+
export var SnapshotLifecycle;
|
|
197
|
+
(function (SnapshotLifecycle) {
|
|
198
|
+
SnapshotLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
199
|
+
SnapshotLifecycle["CREATING"] = "CREATING";
|
|
200
|
+
SnapshotLifecycle["DELETING"] = "DELETING";
|
|
201
|
+
SnapshotLifecycle["PENDING"] = "PENDING";
|
|
202
|
+
})(SnapshotLifecycle || (SnapshotLifecycle = {}));
|
|
174
203
|
export var VolumeLifecycle;
|
|
175
204
|
(function (VolumeLifecycle) {
|
|
205
|
+
VolumeLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
176
206
|
VolumeLifecycle["CREATED"] = "CREATED";
|
|
177
207
|
VolumeLifecycle["CREATING"] = "CREATING";
|
|
178
208
|
VolumeLifecycle["DELETING"] = "DELETING";
|
|
@@ -217,14 +247,46 @@ export var OntapVolumeConfiguration;
|
|
|
217
247
|
(function (OntapVolumeConfiguration) {
|
|
218
248
|
OntapVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
249
|
})(OntapVolumeConfiguration || (OntapVolumeConfiguration = {}));
|
|
250
|
+
export var OpenZFSDataCompressionType;
|
|
251
|
+
(function (OpenZFSDataCompressionType) {
|
|
252
|
+
OpenZFSDataCompressionType["NONE"] = "NONE";
|
|
253
|
+
OpenZFSDataCompressionType["ZSTD"] = "ZSTD";
|
|
254
|
+
})(OpenZFSDataCompressionType || (OpenZFSDataCompressionType = {}));
|
|
255
|
+
export var OpenZFSClientConfiguration;
|
|
256
|
+
(function (OpenZFSClientConfiguration) {
|
|
257
|
+
OpenZFSClientConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
})(OpenZFSClientConfiguration || (OpenZFSClientConfiguration = {}));
|
|
259
|
+
export var OpenZFSNfsExport;
|
|
260
|
+
(function (OpenZFSNfsExport) {
|
|
261
|
+
OpenZFSNfsExport.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
})(OpenZFSNfsExport || (OpenZFSNfsExport = {}));
|
|
263
|
+
export var OpenZFSCopyStrategy;
|
|
264
|
+
(function (OpenZFSCopyStrategy) {
|
|
265
|
+
OpenZFSCopyStrategy["CLONE"] = "CLONE";
|
|
266
|
+
OpenZFSCopyStrategy["FULL_COPY"] = "FULL_COPY";
|
|
267
|
+
})(OpenZFSCopyStrategy || (OpenZFSCopyStrategy = {}));
|
|
268
|
+
export var OpenZFSOriginSnapshotConfiguration;
|
|
269
|
+
(function (OpenZFSOriginSnapshotConfiguration) {
|
|
270
|
+
OpenZFSOriginSnapshotConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
})(OpenZFSOriginSnapshotConfiguration || (OpenZFSOriginSnapshotConfiguration = {}));
|
|
272
|
+
export var OpenZFSQuotaType;
|
|
273
|
+
(function (OpenZFSQuotaType) {
|
|
274
|
+
OpenZFSQuotaType["GROUP"] = "GROUP";
|
|
275
|
+
OpenZFSQuotaType["USER"] = "USER";
|
|
276
|
+
})(OpenZFSQuotaType || (OpenZFSQuotaType = {}));
|
|
277
|
+
export var OpenZFSUserOrGroupQuota;
|
|
278
|
+
(function (OpenZFSUserOrGroupQuota) {
|
|
279
|
+
OpenZFSUserOrGroupQuota.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
})(OpenZFSUserOrGroupQuota || (OpenZFSUserOrGroupQuota = {}));
|
|
281
|
+
export var OpenZFSVolumeConfiguration;
|
|
282
|
+
(function (OpenZFSVolumeConfiguration) {
|
|
283
|
+
OpenZFSVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
})(OpenZFSVolumeConfiguration || (OpenZFSVolumeConfiguration = {}));
|
|
220
285
|
export var VolumeType;
|
|
221
286
|
(function (VolumeType) {
|
|
222
287
|
VolumeType["ONTAP"] = "ONTAP";
|
|
288
|
+
VolumeType["OPENZFS"] = "OPENZFS";
|
|
223
289
|
})(VolumeType || (VolumeType = {}));
|
|
224
|
-
export var Volume;
|
|
225
|
-
(function (Volume) {
|
|
226
|
-
Volume.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
-
})(Volume || (Volume = {}));
|
|
228
290
|
export var AssociateFileSystemAliasesRequest;
|
|
229
291
|
(function (AssociateFileSystemAliasesRequest) {
|
|
230
292
|
AssociateFileSystemAliasesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -233,18 +295,20 @@ export var AssociateFileSystemAliasesResponse;
|
|
|
233
295
|
(function (AssociateFileSystemAliasesResponse) {
|
|
234
296
|
AssociateFileSystemAliasesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
297
|
})(AssociateFileSystemAliasesResponse || (AssociateFileSystemAliasesResponse = {}));
|
|
236
|
-
export var
|
|
237
|
-
(function (
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
(
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
(
|
|
246
|
-
|
|
247
|
-
|
|
298
|
+
export var EventType;
|
|
299
|
+
(function (EventType) {
|
|
300
|
+
EventType["CHANGED"] = "CHANGED";
|
|
301
|
+
EventType["DELETED"] = "DELETED";
|
|
302
|
+
EventType["NEW"] = "NEW";
|
|
303
|
+
})(EventType || (EventType = {}));
|
|
304
|
+
export var AutoExportPolicy;
|
|
305
|
+
(function (AutoExportPolicy) {
|
|
306
|
+
AutoExportPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
})(AutoExportPolicy || (AutoExportPolicy = {}));
|
|
308
|
+
export var AutoImportPolicy;
|
|
309
|
+
(function (AutoImportPolicy) {
|
|
310
|
+
AutoImportPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
})(AutoImportPolicy || (AutoImportPolicy = {}));
|
|
248
312
|
export var CancelDataRepositoryTaskRequest;
|
|
249
313
|
(function (CancelDataRepositoryTaskRequest) {
|
|
250
314
|
CancelDataRepositoryTaskRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -262,22 +326,6 @@ export var CancelDataRepositoryTaskResponse;
|
|
|
262
326
|
(function (CancelDataRepositoryTaskResponse) {
|
|
263
327
|
CancelDataRepositoryTaskResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
328
|
})(CancelDataRepositoryTaskResponse || (CancelDataRepositoryTaskResponse = {}));
|
|
265
|
-
export var DataRepositoryTaskEnded;
|
|
266
|
-
(function (DataRepositoryTaskEnded) {
|
|
267
|
-
DataRepositoryTaskEnded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
-
})(DataRepositoryTaskEnded || (DataRepositoryTaskEnded = {}));
|
|
269
|
-
export var DataRepositoryTaskNotFound;
|
|
270
|
-
(function (DataRepositoryTaskNotFound) {
|
|
271
|
-
DataRepositoryTaskNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
-
})(DataRepositoryTaskNotFound || (DataRepositoryTaskNotFound = {}));
|
|
273
|
-
export var UnsupportedOperation;
|
|
274
|
-
(function (UnsupportedOperation) {
|
|
275
|
-
UnsupportedOperation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
-
})(UnsupportedOperation || (UnsupportedOperation = {}));
|
|
277
|
-
export var BackupNotFound;
|
|
278
|
-
(function (BackupNotFound) {
|
|
279
|
-
BackupNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
-
})(BackupNotFound || (BackupNotFound = {}));
|
|
281
329
|
export var CopyBackupRequest;
|
|
282
330
|
(function (CopyBackupRequest) {
|
|
283
331
|
CopyBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -307,26 +355,6 @@ export var BackupType;
|
|
|
307
355
|
BackupType["AWS_BACKUP"] = "AWS_BACKUP";
|
|
308
356
|
BackupType["USER_INITIATED"] = "USER_INITIATED";
|
|
309
357
|
})(BackupType || (BackupType = {}));
|
|
310
|
-
export var IncompatibleParameterError;
|
|
311
|
-
(function (IncompatibleParameterError) {
|
|
312
|
-
IncompatibleParameterError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
-
})(IncompatibleParameterError || (IncompatibleParameterError = {}));
|
|
314
|
-
export var IncompatibleRegionForMultiAZ;
|
|
315
|
-
(function (IncompatibleRegionForMultiAZ) {
|
|
316
|
-
IncompatibleRegionForMultiAZ.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
-
})(IncompatibleRegionForMultiAZ || (IncompatibleRegionForMultiAZ = {}));
|
|
318
|
-
export var InvalidDestinationKmsKey;
|
|
319
|
-
(function (InvalidDestinationKmsKey) {
|
|
320
|
-
InvalidDestinationKmsKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
-
})(InvalidDestinationKmsKey || (InvalidDestinationKmsKey = {}));
|
|
322
|
-
export var InvalidRegion;
|
|
323
|
-
(function (InvalidRegion) {
|
|
324
|
-
InvalidRegion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
-
})(InvalidRegion || (InvalidRegion = {}));
|
|
326
|
-
export var InvalidSourceKmsKey;
|
|
327
|
-
(function (InvalidSourceKmsKey) {
|
|
328
|
-
InvalidSourceKmsKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
-
})(InvalidSourceKmsKey || (InvalidSourceKmsKey = {}));
|
|
330
358
|
export var ServiceLimit;
|
|
331
359
|
(function (ServiceLimit) {
|
|
332
360
|
ServiceLimit["FILE_SYSTEM_COUNT"] = "FILE_SYSTEM_COUNT";
|
|
@@ -339,26 +367,26 @@ export var ServiceLimit;
|
|
|
339
367
|
ServiceLimit["TOTAL_USER_TAGS"] = "TOTAL_USER_TAGS";
|
|
340
368
|
ServiceLimit["VOLUMES_PER_FILE_SYSTEM"] = "VOLUMES_PER_FILE_SYSTEM";
|
|
341
369
|
})(ServiceLimit || (ServiceLimit = {}));
|
|
342
|
-
export var ServiceLimitExceeded;
|
|
343
|
-
(function (ServiceLimitExceeded) {
|
|
344
|
-
ServiceLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
-
})(ServiceLimitExceeded || (ServiceLimitExceeded = {}));
|
|
346
|
-
export var SourceBackupUnavailable;
|
|
347
|
-
(function (SourceBackupUnavailable) {
|
|
348
|
-
SourceBackupUnavailable.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
-
})(SourceBackupUnavailable || (SourceBackupUnavailable = {}));
|
|
350
|
-
export var BackupInProgress;
|
|
351
|
-
(function (BackupInProgress) {
|
|
352
|
-
BackupInProgress.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
-
})(BackupInProgress || (BackupInProgress = {}));
|
|
354
370
|
export var CreateBackupRequest;
|
|
355
371
|
(function (CreateBackupRequest) {
|
|
356
372
|
CreateBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
373
|
})(CreateBackupRequest || (CreateBackupRequest = {}));
|
|
358
|
-
export var
|
|
359
|
-
(function (
|
|
360
|
-
|
|
361
|
-
})(
|
|
374
|
+
export var S3DataRepositoryConfiguration;
|
|
375
|
+
(function (S3DataRepositoryConfiguration) {
|
|
376
|
+
S3DataRepositoryConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
+
})(S3DataRepositoryConfiguration || (S3DataRepositoryConfiguration = {}));
|
|
378
|
+
export var CreateDataRepositoryAssociationRequest;
|
|
379
|
+
(function (CreateDataRepositoryAssociationRequest) {
|
|
380
|
+
CreateDataRepositoryAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
+
})(CreateDataRepositoryAssociationRequest || (CreateDataRepositoryAssociationRequest = {}));
|
|
382
|
+
export var DataRepositoryAssociation;
|
|
383
|
+
(function (DataRepositoryAssociation) {
|
|
384
|
+
DataRepositoryAssociation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
+
})(DataRepositoryAssociation || (DataRepositoryAssociation = {}));
|
|
386
|
+
export var CreateDataRepositoryAssociationResponse;
|
|
387
|
+
(function (CreateDataRepositoryAssociationResponse) {
|
|
388
|
+
CreateDataRepositoryAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
+
})(CreateDataRepositoryAssociationResponse || (CreateDataRepositoryAssociationResponse = {}));
|
|
362
390
|
export var ReportFormat;
|
|
363
391
|
(function (ReportFormat) {
|
|
364
392
|
ReportFormat["REPORT_CSV_20191124"] = "REPORT_CSV_20191124";
|
|
@@ -374,6 +402,7 @@ export var CompletionReport;
|
|
|
374
402
|
export var DataRepositoryTaskType;
|
|
375
403
|
(function (DataRepositoryTaskType) {
|
|
376
404
|
DataRepositoryTaskType["EXPORT"] = "EXPORT_TO_REPOSITORY";
|
|
405
|
+
DataRepositoryTaskType["IMPORT"] = "IMPORT_METADATA_FROM_REPOSITORY";
|
|
377
406
|
})(DataRepositoryTaskType || (DataRepositoryTaskType = {}));
|
|
378
407
|
export var CreateDataRepositoryTaskRequest;
|
|
379
408
|
(function (CreateDataRepositoryTaskRequest) {
|
|
@@ -395,10 +424,10 @@ export var CreateDataRepositoryTaskResponse;
|
|
|
395
424
|
(function (CreateDataRepositoryTaskResponse) {
|
|
396
425
|
CreateDataRepositoryTaskResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
426
|
})(CreateDataRepositoryTaskResponse || (CreateDataRepositoryTaskResponse = {}));
|
|
398
|
-
export var
|
|
399
|
-
(function (
|
|
400
|
-
|
|
401
|
-
})(
|
|
427
|
+
export var LustreLogCreateConfiguration;
|
|
428
|
+
(function (LustreLogCreateConfiguration) {
|
|
429
|
+
LustreLogCreateConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
430
|
+
})(LustreLogCreateConfiguration || (LustreLogCreateConfiguration = {}));
|
|
402
431
|
export var CreateFileSystemLustreConfiguration;
|
|
403
432
|
(function (CreateFileSystemLustreConfiguration) {
|
|
404
433
|
CreateFileSystemLustreConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -407,6 +436,14 @@ export var CreateFileSystemOntapConfiguration;
|
|
|
407
436
|
(function (CreateFileSystemOntapConfiguration) {
|
|
408
437
|
CreateFileSystemOntapConfiguration.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FsxAdminPassword && { FsxAdminPassword: SENSITIVE_STRING }))); };
|
|
409
438
|
})(CreateFileSystemOntapConfiguration || (CreateFileSystemOntapConfiguration = {}));
|
|
439
|
+
export var OpenZFSCreateRootVolumeConfiguration;
|
|
440
|
+
(function (OpenZFSCreateRootVolumeConfiguration) {
|
|
441
|
+
OpenZFSCreateRootVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
442
|
+
})(OpenZFSCreateRootVolumeConfiguration || (OpenZFSCreateRootVolumeConfiguration = {}));
|
|
443
|
+
export var CreateFileSystemOpenZFSConfiguration;
|
|
444
|
+
(function (CreateFileSystemOpenZFSConfiguration) {
|
|
445
|
+
CreateFileSystemOpenZFSConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
|
+
})(CreateFileSystemOpenZFSConfiguration || (CreateFileSystemOpenZFSConfiguration = {}));
|
|
410
447
|
export var WindowsAuditLogCreateConfiguration;
|
|
411
448
|
(function (WindowsAuditLogCreateConfiguration) {
|
|
412
449
|
WindowsAuditLogCreateConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -429,32 +466,16 @@ export var CreateFileSystemRequest;
|
|
|
429
466
|
OntapConfiguration: CreateFileSystemOntapConfiguration.filterSensitiveLog(obj.OntapConfiguration),
|
|
430
467
|
}))); };
|
|
431
468
|
})(CreateFileSystemRequest || (CreateFileSystemRequest = {}));
|
|
432
|
-
export var InvalidExportPath;
|
|
433
|
-
(function (InvalidExportPath) {
|
|
434
|
-
InvalidExportPath.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
435
|
-
})(InvalidExportPath || (InvalidExportPath = {}));
|
|
436
|
-
export var InvalidImportPath;
|
|
437
|
-
(function (InvalidImportPath) {
|
|
438
|
-
InvalidImportPath.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
439
|
-
})(InvalidImportPath || (InvalidImportPath = {}));
|
|
440
|
-
export var InvalidNetworkSettings;
|
|
441
|
-
(function (InvalidNetworkSettings) {
|
|
442
|
-
InvalidNetworkSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
443
|
-
})(InvalidNetworkSettings || (InvalidNetworkSettings = {}));
|
|
444
|
-
export var InvalidPerUnitStorageThroughput;
|
|
445
|
-
(function (InvalidPerUnitStorageThroughput) {
|
|
446
|
-
InvalidPerUnitStorageThroughput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
447
|
-
})(InvalidPerUnitStorageThroughput || (InvalidPerUnitStorageThroughput = {}));
|
|
448
|
-
export var MissingFileSystemConfiguration;
|
|
449
|
-
(function (MissingFileSystemConfiguration) {
|
|
450
|
-
MissingFileSystemConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
451
|
-
})(MissingFileSystemConfiguration || (MissingFileSystemConfiguration = {}));
|
|
452
469
|
export var CreateFileSystemFromBackupRequest;
|
|
453
470
|
(function (CreateFileSystemFromBackupRequest) {
|
|
454
471
|
CreateFileSystemFromBackupRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.WindowsConfiguration && {
|
|
455
472
|
WindowsConfiguration: CreateFileSystemWindowsConfiguration.filterSensitiveLog(obj.WindowsConfiguration),
|
|
456
473
|
}))); };
|
|
457
474
|
})(CreateFileSystemFromBackupRequest || (CreateFileSystemFromBackupRequest = {}));
|
|
475
|
+
export var CreateSnapshotRequest;
|
|
476
|
+
(function (CreateSnapshotRequest) {
|
|
477
|
+
CreateSnapshotRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
478
|
+
})(CreateSnapshotRequest || (CreateSnapshotRequest = {}));
|
|
458
479
|
export var CreateSvmActiveDirectoryConfiguration;
|
|
459
480
|
(function (CreateSvmActiveDirectoryConfiguration) {
|
|
460
481
|
CreateSvmActiveDirectoryConfiguration.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SelfManagedActiveDirectoryConfiguration && {
|
|
@@ -513,38 +534,22 @@ export var CreateOntapVolumeConfiguration;
|
|
|
513
534
|
(function (CreateOntapVolumeConfiguration) {
|
|
514
535
|
CreateOntapVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
515
536
|
})(CreateOntapVolumeConfiguration || (CreateOntapVolumeConfiguration = {}));
|
|
537
|
+
export var CreateOpenZFSOriginSnapshotConfiguration;
|
|
538
|
+
(function (CreateOpenZFSOriginSnapshotConfiguration) {
|
|
539
|
+
CreateOpenZFSOriginSnapshotConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
540
|
+
})(CreateOpenZFSOriginSnapshotConfiguration || (CreateOpenZFSOriginSnapshotConfiguration = {}));
|
|
541
|
+
export var CreateOpenZFSVolumeConfiguration;
|
|
542
|
+
(function (CreateOpenZFSVolumeConfiguration) {
|
|
543
|
+
CreateOpenZFSVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
544
|
+
})(CreateOpenZFSVolumeConfiguration || (CreateOpenZFSVolumeConfiguration = {}));
|
|
516
545
|
export var CreateVolumeRequest;
|
|
517
546
|
(function (CreateVolumeRequest) {
|
|
518
547
|
CreateVolumeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
519
548
|
})(CreateVolumeRequest || (CreateVolumeRequest = {}));
|
|
520
|
-
export var CreateVolumeResponse;
|
|
521
|
-
(function (CreateVolumeResponse) {
|
|
522
|
-
CreateVolumeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
-
})(CreateVolumeResponse || (CreateVolumeResponse = {}));
|
|
524
|
-
export var MissingVolumeConfiguration;
|
|
525
|
-
(function (MissingVolumeConfiguration) {
|
|
526
|
-
MissingVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
-
})(MissingVolumeConfiguration || (MissingVolumeConfiguration = {}));
|
|
528
|
-
export var StorageVirtualMachineNotFound;
|
|
529
|
-
(function (StorageVirtualMachineNotFound) {
|
|
530
|
-
StorageVirtualMachineNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
531
|
-
})(StorageVirtualMachineNotFound || (StorageVirtualMachineNotFound = {}));
|
|
532
549
|
export var CreateVolumeFromBackupRequest;
|
|
533
550
|
(function (CreateVolumeFromBackupRequest) {
|
|
534
551
|
CreateVolumeFromBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
535
552
|
})(CreateVolumeFromBackupRequest || (CreateVolumeFromBackupRequest = {}));
|
|
536
|
-
export var CreateVolumeFromBackupResponse;
|
|
537
|
-
(function (CreateVolumeFromBackupResponse) {
|
|
538
|
-
CreateVolumeFromBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
539
|
-
})(CreateVolumeFromBackupResponse || (CreateVolumeFromBackupResponse = {}));
|
|
540
|
-
export var BackupBeingCopied;
|
|
541
|
-
(function (BackupBeingCopied) {
|
|
542
|
-
BackupBeingCopied.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
543
|
-
})(BackupBeingCopied || (BackupBeingCopied = {}));
|
|
544
|
-
export var BackupRestoring;
|
|
545
|
-
(function (BackupRestoring) {
|
|
546
|
-
BackupRestoring.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
547
|
-
})(BackupRestoring || (BackupRestoring = {}));
|
|
548
553
|
export var DeleteBackupRequest;
|
|
549
554
|
(function (DeleteBackupRequest) {
|
|
550
555
|
DeleteBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -553,10 +558,22 @@ export var DeleteBackupResponse;
|
|
|
553
558
|
(function (DeleteBackupResponse) {
|
|
554
559
|
DeleteBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
555
560
|
})(DeleteBackupResponse || (DeleteBackupResponse = {}));
|
|
561
|
+
export var DeleteDataRepositoryAssociationRequest;
|
|
562
|
+
(function (DeleteDataRepositoryAssociationRequest) {
|
|
563
|
+
DeleteDataRepositoryAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
|
+
})(DeleteDataRepositoryAssociationRequest || (DeleteDataRepositoryAssociationRequest = {}));
|
|
565
|
+
export var DeleteDataRepositoryAssociationResponse;
|
|
566
|
+
(function (DeleteDataRepositoryAssociationResponse) {
|
|
567
|
+
DeleteDataRepositoryAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
568
|
+
})(DeleteDataRepositoryAssociationResponse || (DeleteDataRepositoryAssociationResponse = {}));
|
|
556
569
|
export var DeleteFileSystemLustreConfiguration;
|
|
557
570
|
(function (DeleteFileSystemLustreConfiguration) {
|
|
558
571
|
DeleteFileSystemLustreConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
559
572
|
})(DeleteFileSystemLustreConfiguration || (DeleteFileSystemLustreConfiguration = {}));
|
|
573
|
+
export var DeleteFileSystemOpenZFSConfiguration;
|
|
574
|
+
(function (DeleteFileSystemOpenZFSConfiguration) {
|
|
575
|
+
DeleteFileSystemOpenZFSConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
576
|
+
})(DeleteFileSystemOpenZFSConfiguration || (DeleteFileSystemOpenZFSConfiguration = {}));
|
|
560
577
|
export var DeleteFileSystemWindowsConfiguration;
|
|
561
578
|
(function (DeleteFileSystemWindowsConfiguration) {
|
|
562
579
|
DeleteFileSystemWindowsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -569,6 +586,10 @@ export var DeleteFileSystemLustreResponse;
|
|
|
569
586
|
(function (DeleteFileSystemLustreResponse) {
|
|
570
587
|
DeleteFileSystemLustreResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
571
588
|
})(DeleteFileSystemLustreResponse || (DeleteFileSystemLustreResponse = {}));
|
|
589
|
+
export var DeleteFileSystemOpenZFSResponse;
|
|
590
|
+
(function (DeleteFileSystemOpenZFSResponse) {
|
|
591
|
+
DeleteFileSystemOpenZFSResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
592
|
+
})(DeleteFileSystemOpenZFSResponse || (DeleteFileSystemOpenZFSResponse = {}));
|
|
572
593
|
export var DeleteFileSystemWindowsResponse;
|
|
573
594
|
(function (DeleteFileSystemWindowsResponse) {
|
|
574
595
|
DeleteFileSystemWindowsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -577,6 +598,14 @@ export var DeleteFileSystemResponse;
|
|
|
577
598
|
(function (DeleteFileSystemResponse) {
|
|
578
599
|
DeleteFileSystemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
579
600
|
})(DeleteFileSystemResponse || (DeleteFileSystemResponse = {}));
|
|
601
|
+
export var DeleteSnapshotRequest;
|
|
602
|
+
(function (DeleteSnapshotRequest) {
|
|
603
|
+
DeleteSnapshotRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
604
|
+
})(DeleteSnapshotRequest || (DeleteSnapshotRequest = {}));
|
|
605
|
+
export var DeleteSnapshotResponse;
|
|
606
|
+
(function (DeleteSnapshotResponse) {
|
|
607
|
+
DeleteSnapshotResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
|
+
})(DeleteSnapshotResponse || (DeleteSnapshotResponse = {}));
|
|
580
609
|
export var DeleteStorageVirtualMachineRequest;
|
|
581
610
|
(function (DeleteStorageVirtualMachineRequest) {
|
|
582
611
|
DeleteStorageVirtualMachineRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -589,6 +618,14 @@ export var DeleteVolumeOntapConfiguration;
|
|
|
589
618
|
(function (DeleteVolumeOntapConfiguration) {
|
|
590
619
|
DeleteVolumeOntapConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
591
620
|
})(DeleteVolumeOntapConfiguration || (DeleteVolumeOntapConfiguration = {}));
|
|
621
|
+
export var DeleteOpenZFSVolumeOption;
|
|
622
|
+
(function (DeleteOpenZFSVolumeOption) {
|
|
623
|
+
DeleteOpenZFSVolumeOption["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"] = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
|
|
624
|
+
})(DeleteOpenZFSVolumeOption || (DeleteOpenZFSVolumeOption = {}));
|
|
625
|
+
export var DeleteVolumeOpenZFSConfiguration;
|
|
626
|
+
(function (DeleteVolumeOpenZFSConfiguration) {
|
|
627
|
+
DeleteVolumeOpenZFSConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
628
|
+
})(DeleteVolumeOpenZFSConfiguration || (DeleteVolumeOpenZFSConfiguration = {}));
|
|
592
629
|
export var DeleteVolumeRequest;
|
|
593
630
|
(function (DeleteVolumeRequest) {
|
|
594
631
|
DeleteVolumeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -604,6 +641,7 @@ export var DeleteVolumeResponse;
|
|
|
604
641
|
export var FilterName;
|
|
605
642
|
(function (FilterName) {
|
|
606
643
|
FilterName["BACKUP_TYPE"] = "backup-type";
|
|
644
|
+
FilterName["DATA_REPOSITORY_TYPE"] = "data-repository-type";
|
|
607
645
|
FilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
608
646
|
FilterName["FILE_SYSTEM_TYPE"] = "file-system-type";
|
|
609
647
|
FilterName["VOLUME_ID"] = "volume-id";
|
|
@@ -616,8 +654,17 @@ export var DescribeBackupsRequest;
|
|
|
616
654
|
(function (DescribeBackupsRequest) {
|
|
617
655
|
DescribeBackupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
618
656
|
})(DescribeBackupsRequest || (DescribeBackupsRequest = {}));
|
|
657
|
+
export var DescribeDataRepositoryAssociationsRequest;
|
|
658
|
+
(function (DescribeDataRepositoryAssociationsRequest) {
|
|
659
|
+
DescribeDataRepositoryAssociationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
660
|
+
})(DescribeDataRepositoryAssociationsRequest || (DescribeDataRepositoryAssociationsRequest = {}));
|
|
661
|
+
export var DescribeDataRepositoryAssociationsResponse;
|
|
662
|
+
(function (DescribeDataRepositoryAssociationsResponse) {
|
|
663
|
+
DescribeDataRepositoryAssociationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
|
+
})(DescribeDataRepositoryAssociationsResponse || (DescribeDataRepositoryAssociationsResponse = {}));
|
|
619
665
|
export var DataRepositoryTaskFilterName;
|
|
620
666
|
(function (DataRepositoryTaskFilterName) {
|
|
667
|
+
DataRepositoryTaskFilterName["DATA_REPO_ASSOCIATION_ID"] = "data-repository-association-id";
|
|
621
668
|
DataRepositoryTaskFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
622
669
|
DataRepositoryTaskFilterName["TASK_LIFECYCLE"] = "task-lifecycle";
|
|
623
670
|
})(DataRepositoryTaskFilterName || (DataRepositoryTaskFilterName = {}));
|
|
@@ -645,6 +692,19 @@ export var DescribeFileSystemsRequest;
|
|
|
645
692
|
(function (DescribeFileSystemsRequest) {
|
|
646
693
|
DescribeFileSystemsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
647
694
|
})(DescribeFileSystemsRequest || (DescribeFileSystemsRequest = {}));
|
|
695
|
+
export var SnapshotFilterName;
|
|
696
|
+
(function (SnapshotFilterName) {
|
|
697
|
+
SnapshotFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
698
|
+
SnapshotFilterName["VOLUME_ID"] = "volume-id";
|
|
699
|
+
})(SnapshotFilterName || (SnapshotFilterName = {}));
|
|
700
|
+
export var SnapshotFilter;
|
|
701
|
+
(function (SnapshotFilter) {
|
|
702
|
+
SnapshotFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
703
|
+
})(SnapshotFilter || (SnapshotFilter = {}));
|
|
704
|
+
export var DescribeSnapshotsRequest;
|
|
705
|
+
(function (DescribeSnapshotsRequest) {
|
|
706
|
+
DescribeSnapshotsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
707
|
+
})(DescribeSnapshotsRequest || (DescribeSnapshotsRequest = {}));
|
|
648
708
|
export var StorageVirtualMachineFilterName;
|
|
649
709
|
(function (StorageVirtualMachineFilterName) {
|
|
650
710
|
StorageVirtualMachineFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
@@ -674,10 +734,6 @@ export var DescribeVolumesRequest;
|
|
|
674
734
|
(function (DescribeVolumesRequest) {
|
|
675
735
|
DescribeVolumesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
736
|
})(DescribeVolumesRequest || (DescribeVolumesRequest = {}));
|
|
677
|
-
export var DescribeVolumesResponse;
|
|
678
|
-
(function (DescribeVolumesResponse) {
|
|
679
|
-
DescribeVolumesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
680
|
-
})(DescribeVolumesResponse || (DescribeVolumesResponse = {}));
|
|
681
737
|
export var DisassociateFileSystemAliasesRequest;
|
|
682
738
|
(function (DisassociateFileSystemAliasesRequest) {
|
|
683
739
|
DisassociateFileSystemAliasesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -694,18 +750,23 @@ export var ListTagsForResourceResponse;
|
|
|
694
750
|
(function (ListTagsForResourceResponse) {
|
|
695
751
|
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
696
752
|
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
697
|
-
export var
|
|
698
|
-
(function (
|
|
699
|
-
|
|
700
|
-
})(
|
|
701
|
-
export var
|
|
702
|
-
(function (
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
753
|
+
export var ReleaseFileSystemNfsV3LocksRequest;
|
|
754
|
+
(function (ReleaseFileSystemNfsV3LocksRequest) {
|
|
755
|
+
ReleaseFileSystemNfsV3LocksRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
756
|
+
})(ReleaseFileSystemNfsV3LocksRequest || (ReleaseFileSystemNfsV3LocksRequest = {}));
|
|
757
|
+
export var RestoreOpenZFSVolumeOption;
|
|
758
|
+
(function (RestoreOpenZFSVolumeOption) {
|
|
759
|
+
RestoreOpenZFSVolumeOption["DELETE_CLONED_VOLUMES"] = "DELETE_CLONED_VOLUMES";
|
|
760
|
+
RestoreOpenZFSVolumeOption["DELETE_INTERMEDIATE_SNAPSHOTS"] = "DELETE_INTERMEDIATE_SNAPSHOTS";
|
|
761
|
+
})(RestoreOpenZFSVolumeOption || (RestoreOpenZFSVolumeOption = {}));
|
|
762
|
+
export var RestoreVolumeFromSnapshotRequest;
|
|
763
|
+
(function (RestoreVolumeFromSnapshotRequest) {
|
|
764
|
+
RestoreVolumeFromSnapshotRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
765
|
+
})(RestoreVolumeFromSnapshotRequest || (RestoreVolumeFromSnapshotRequest = {}));
|
|
766
|
+
export var RestoreVolumeFromSnapshotResponse;
|
|
767
|
+
(function (RestoreVolumeFromSnapshotResponse) {
|
|
768
|
+
RestoreVolumeFromSnapshotResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
769
|
+
})(RestoreVolumeFromSnapshotResponse || (RestoreVolumeFromSnapshotResponse = {}));
|
|
709
770
|
export var TagResourceRequest;
|
|
710
771
|
(function (TagResourceRequest) {
|
|
711
772
|
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -722,6 +783,14 @@ export var UntagResourceResponse;
|
|
|
722
783
|
(function (UntagResourceResponse) {
|
|
723
784
|
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
724
785
|
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
786
|
+
export var UpdateDataRepositoryAssociationRequest;
|
|
787
|
+
(function (UpdateDataRepositoryAssociationRequest) {
|
|
788
|
+
UpdateDataRepositoryAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
789
|
+
})(UpdateDataRepositoryAssociationRequest || (UpdateDataRepositoryAssociationRequest = {}));
|
|
790
|
+
export var UpdateDataRepositoryAssociationResponse;
|
|
791
|
+
(function (UpdateDataRepositoryAssociationResponse) {
|
|
792
|
+
UpdateDataRepositoryAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
793
|
+
})(UpdateDataRepositoryAssociationResponse || (UpdateDataRepositoryAssociationResponse = {}));
|
|
725
794
|
export var UpdateFileSystemLustreConfiguration;
|
|
726
795
|
(function (UpdateFileSystemLustreConfiguration) {
|
|
727
796
|
UpdateFileSystemLustreConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -730,6 +799,10 @@ export var UpdateFileSystemOntapConfiguration;
|
|
|
730
799
|
(function (UpdateFileSystemOntapConfiguration) {
|
|
731
800
|
UpdateFileSystemOntapConfiguration.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FsxAdminPassword && { FsxAdminPassword: SENSITIVE_STRING }))); };
|
|
732
801
|
})(UpdateFileSystemOntapConfiguration || (UpdateFileSystemOntapConfiguration = {}));
|
|
802
|
+
export var UpdateFileSystemOpenZFSConfiguration;
|
|
803
|
+
(function (UpdateFileSystemOpenZFSConfiguration) {
|
|
804
|
+
UpdateFileSystemOpenZFSConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
805
|
+
})(UpdateFileSystemOpenZFSConfiguration || (UpdateFileSystemOpenZFSConfiguration = {}));
|
|
733
806
|
export var SelfManagedActiveDirectoryConfigurationUpdates;
|
|
734
807
|
(function (SelfManagedActiveDirectoryConfigurationUpdates) {
|
|
735
808
|
SelfManagedActiveDirectoryConfigurationUpdates.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Password && { Password: SENSITIVE_STRING }))); };
|
|
@@ -748,6 +821,10 @@ export var UpdateFileSystemRequest;
|
|
|
748
821
|
OntapConfiguration: UpdateFileSystemOntapConfiguration.filterSensitiveLog(obj.OntapConfiguration),
|
|
749
822
|
}))); };
|
|
750
823
|
})(UpdateFileSystemRequest || (UpdateFileSystemRequest = {}));
|
|
824
|
+
export var UpdateSnapshotRequest;
|
|
825
|
+
(function (UpdateSnapshotRequest) {
|
|
826
|
+
UpdateSnapshotRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
827
|
+
})(UpdateSnapshotRequest || (UpdateSnapshotRequest = {}));
|
|
751
828
|
export var UpdateSvmActiveDirectoryConfiguration;
|
|
752
829
|
(function (UpdateSvmActiveDirectoryConfiguration) {
|
|
753
830
|
UpdateSvmActiveDirectoryConfiguration.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SelfManagedActiveDirectoryConfiguration && {
|
|
@@ -768,14 +845,14 @@ export var UpdateOntapVolumeConfiguration;
|
|
|
768
845
|
(function (UpdateOntapVolumeConfiguration) {
|
|
769
846
|
UpdateOntapVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
770
847
|
})(UpdateOntapVolumeConfiguration || (UpdateOntapVolumeConfiguration = {}));
|
|
848
|
+
export var UpdateOpenZFSVolumeConfiguration;
|
|
849
|
+
(function (UpdateOpenZFSVolumeConfiguration) {
|
|
850
|
+
UpdateOpenZFSVolumeConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
851
|
+
})(UpdateOpenZFSVolumeConfiguration || (UpdateOpenZFSVolumeConfiguration = {}));
|
|
771
852
|
export var UpdateVolumeRequest;
|
|
772
853
|
(function (UpdateVolumeRequest) {
|
|
773
854
|
UpdateVolumeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
774
855
|
})(UpdateVolumeRequest || (UpdateVolumeRequest = {}));
|
|
775
|
-
export var UpdateVolumeResponse;
|
|
776
|
-
(function (UpdateVolumeResponse) {
|
|
777
|
-
UpdateVolumeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
778
|
-
})(UpdateVolumeResponse || (UpdateVolumeResponse = {}));
|
|
779
856
|
export var AdministrativeAction;
|
|
780
857
|
(function (AdministrativeAction) {
|
|
781
858
|
AdministrativeAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -784,10 +861,14 @@ export var FileSystem;
|
|
|
784
861
|
(function (FileSystem) {
|
|
785
862
|
FileSystem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
786
863
|
})(FileSystem || (FileSystem = {}));
|
|
787
|
-
export var
|
|
788
|
-
(function (
|
|
789
|
-
|
|
790
|
-
})(
|
|
864
|
+
export var Snapshot;
|
|
865
|
+
(function (Snapshot) {
|
|
866
|
+
Snapshot.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
867
|
+
})(Snapshot || (Snapshot = {}));
|
|
868
|
+
export var Volume;
|
|
869
|
+
(function (Volume) {
|
|
870
|
+
Volume.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
871
|
+
})(Volume || (Volume = {}));
|
|
791
872
|
export var CreateFileSystemFromBackupResponse;
|
|
792
873
|
(function (CreateFileSystemFromBackupResponse) {
|
|
793
874
|
CreateFileSystemFromBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -796,10 +877,50 @@ export var CreateFileSystemResponse;
|
|
|
796
877
|
(function (CreateFileSystemResponse) {
|
|
797
878
|
CreateFileSystemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
798
879
|
})(CreateFileSystemResponse || (CreateFileSystemResponse = {}));
|
|
880
|
+
export var CreateSnapshotResponse;
|
|
881
|
+
(function (CreateSnapshotResponse) {
|
|
882
|
+
CreateSnapshotResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
883
|
+
})(CreateSnapshotResponse || (CreateSnapshotResponse = {}));
|
|
884
|
+
export var CreateVolumeFromBackupResponse;
|
|
885
|
+
(function (CreateVolumeFromBackupResponse) {
|
|
886
|
+
CreateVolumeFromBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
887
|
+
})(CreateVolumeFromBackupResponse || (CreateVolumeFromBackupResponse = {}));
|
|
888
|
+
export var CreateVolumeResponse;
|
|
889
|
+
(function (CreateVolumeResponse) {
|
|
890
|
+
CreateVolumeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
891
|
+
})(CreateVolumeResponse || (CreateVolumeResponse = {}));
|
|
892
|
+
export var ReleaseFileSystemNfsV3LocksResponse;
|
|
893
|
+
(function (ReleaseFileSystemNfsV3LocksResponse) {
|
|
894
|
+
ReleaseFileSystemNfsV3LocksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
895
|
+
})(ReleaseFileSystemNfsV3LocksResponse || (ReleaseFileSystemNfsV3LocksResponse = {}));
|
|
799
896
|
export var UpdateFileSystemResponse;
|
|
800
897
|
(function (UpdateFileSystemResponse) {
|
|
801
898
|
UpdateFileSystemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
802
899
|
})(UpdateFileSystemResponse || (UpdateFileSystemResponse = {}));
|
|
900
|
+
export var UpdateSnapshotResponse;
|
|
901
|
+
(function (UpdateSnapshotResponse) {
|
|
902
|
+
UpdateSnapshotResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
903
|
+
})(UpdateSnapshotResponse || (UpdateSnapshotResponse = {}));
|
|
904
|
+
export var UpdateVolumeResponse;
|
|
905
|
+
(function (UpdateVolumeResponse) {
|
|
906
|
+
UpdateVolumeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
907
|
+
})(UpdateVolumeResponse || (UpdateVolumeResponse = {}));
|
|
908
|
+
export var DescribeFileSystemsResponse;
|
|
909
|
+
(function (DescribeFileSystemsResponse) {
|
|
910
|
+
DescribeFileSystemsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
911
|
+
})(DescribeFileSystemsResponse || (DescribeFileSystemsResponse = {}));
|
|
912
|
+
export var DescribeSnapshotsResponse;
|
|
913
|
+
(function (DescribeSnapshotsResponse) {
|
|
914
|
+
DescribeSnapshotsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
915
|
+
})(DescribeSnapshotsResponse || (DescribeSnapshotsResponse = {}));
|
|
916
|
+
export var DescribeVolumesResponse;
|
|
917
|
+
(function (DescribeVolumesResponse) {
|
|
918
|
+
DescribeVolumesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
919
|
+
})(DescribeVolumesResponse || (DescribeVolumesResponse = {}));
|
|
920
|
+
export var Backup;
|
|
921
|
+
(function (Backup) {
|
|
922
|
+
Backup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
923
|
+
})(Backup || (Backup = {}));
|
|
803
924
|
export var CopyBackupResponse;
|
|
804
925
|
(function (CopyBackupResponse) {
|
|
805
926
|
CopyBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -808,10 +929,6 @@ export var CreateBackupResponse;
|
|
|
808
929
|
(function (CreateBackupResponse) {
|
|
809
930
|
CreateBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
810
931
|
})(CreateBackupResponse || (CreateBackupResponse = {}));
|
|
811
|
-
export var DescribeFileSystemsResponse;
|
|
812
|
-
(function (DescribeFileSystemsResponse) {
|
|
813
|
-
DescribeFileSystemsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
814
|
-
})(DescribeFileSystemsResponse || (DescribeFileSystemsResponse = {}));
|
|
815
932
|
export var DescribeBackupsResponse;
|
|
816
933
|
(function (DescribeBackupsResponse) {
|
|
817
934
|
DescribeBackupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|