@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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.StorageVirtualMachineLifecycle = exports.SvmEndpoints = exports.SvmEndpoint = exports.SvmActiveDirectoryConfiguration = exports.CreateStorageVirtualMachineRequest = exports.StorageVirtualMachineRootVolumeSecurityStyle = exports.CreateSvmActiveDirectoryConfiguration = exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.DescribeBackupsResponse = exports.DescribeFileSystemsResponse = exports.
|
|
3
|
+
exports.OpenZFSOriginSnapshotConfiguration = exports.OpenZFSCopyStrategy = exports.OpenZFSNfsExport = exports.OpenZFSClientConfiguration = exports.OpenZFSDataCompressionType = exports.OntapVolumeConfiguration = exports.TieringPolicy = exports.TieringPolicyName = exports.SecurityStyle = exports.OntapVolumeType = exports.FlexCacheEndpointType = exports.LifecycleTransitionReason = exports.VolumeLifecycle = exports.SnapshotLifecycle = exports.WindowsFileSystemConfiguration = exports.SelfManagedActiveDirectoryAttributes = exports.FileSystemMaintenanceOperation = exports.WindowsDeploymentType = exports.WindowsAuditLogConfiguration = exports.WindowsAccessAuditLogLevel = exports.Alias = exports.AliasLifecycle = exports.Tag = exports.StorageType = exports.OpenZFSFileSystemConfiguration = exports.OpenZFSDeploymentType = exports.OntapFileSystemConfiguration = exports.FileSystemEndpoints = exports.FileSystemEndpoint = exports.DiskIopsConfiguration = exports.DiskIopsConfigurationMode = exports.OntapDeploymentType = exports.LustreFileSystemConfiguration = exports.LustreLogConfiguration = exports.LustreAccessAuditLogLevel = exports.DriveCacheType = exports.LustreDeploymentType = exports.DataRepositoryConfiguration = exports.DataRepositoryLifecycle = exports.DataRepositoryFailureDetails = exports.AutoImportPolicyType = exports.DataCompressionType = exports.FileSystemLifecycle = exports.FileSystemType = exports.FileSystemFailureDetails = exports.Status = exports.AdministrativeActionFailureDetails = exports.AdministrativeActionType = exports.ActiveDirectoryErrorType = exports.ActiveDirectoryBackupAttributes = void 0;
|
|
4
|
+
exports.StorageVirtualMachineLifecycle = exports.SvmEndpoints = exports.SvmEndpoint = exports.SvmActiveDirectoryConfiguration = exports.CreateStorageVirtualMachineRequest = exports.StorageVirtualMachineRootVolumeSecurityStyle = exports.CreateSvmActiveDirectoryConfiguration = exports.CreateSnapshotRequest = exports.CreateFileSystemFromBackupRequest = exports.CreateFileSystemRequest = exports.CreateFileSystemWindowsConfiguration = exports.SelfManagedActiveDirectoryConfiguration = exports.WindowsAuditLogCreateConfiguration = exports.CreateFileSystemOpenZFSConfiguration = exports.OpenZFSCreateRootVolumeConfiguration = exports.CreateFileSystemOntapConfiguration = exports.CreateFileSystemLustreConfiguration = exports.LustreLogCreateConfiguration = exports.CreateDataRepositoryTaskResponse = exports.DataRepositoryTask = exports.DataRepositoryTaskStatus = exports.DataRepositoryTaskFailureDetails = exports.CreateDataRepositoryTaskRequest = exports.DataRepositoryTaskType = exports.CompletionReport = exports.ReportScope = exports.ReportFormat = exports.CreateDataRepositoryAssociationResponse = exports.DataRepositoryAssociation = exports.CreateDataRepositoryAssociationRequest = exports.S3DataRepositoryConfiguration = exports.CreateBackupRequest = exports.ServiceLimit = exports.BackupType = exports.ResourceType = exports.BackupLifecycle = exports.BackupFailureDetails = exports.CopyBackupRequest = exports.CancelDataRepositoryTaskResponse = exports.DataRepositoryTaskLifecycle = exports.CancelDataRepositoryTaskRequest = exports.AutoImportPolicy = exports.AutoExportPolicy = exports.EventType = exports.AssociateFileSystemAliasesResponse = exports.AssociateFileSystemAliasesRequest = exports.VolumeType = exports.OpenZFSVolumeConfiguration = exports.OpenZFSUserOrGroupQuota = exports.OpenZFSQuotaType = void 0;
|
|
5
|
+
exports.VolumeFilterName = exports.DescribeStorageVirtualMachinesResponse = exports.DescribeStorageVirtualMachinesRequest = exports.StorageVirtualMachineFilter = exports.StorageVirtualMachineFilterName = exports.DescribeSnapshotsRequest = exports.SnapshotFilter = exports.SnapshotFilterName = exports.DescribeFileSystemsRequest = exports.DescribeFileSystemAliasesResponse = exports.DescribeFileSystemAliasesRequest = exports.DescribeDataRepositoryTasksResponse = exports.DescribeDataRepositoryTasksRequest = exports.DataRepositoryTaskFilter = exports.DataRepositoryTaskFilterName = exports.DescribeDataRepositoryAssociationsResponse = exports.DescribeDataRepositoryAssociationsRequest = exports.DescribeBackupsRequest = exports.Filter = exports.FilterName = exports.DeleteVolumeResponse = exports.DeleteVolumeOntapResponse = exports.DeleteVolumeRequest = exports.DeleteVolumeOpenZFSConfiguration = exports.DeleteOpenZFSVolumeOption = exports.DeleteVolumeOntapConfiguration = exports.DeleteStorageVirtualMachineResponse = exports.DeleteStorageVirtualMachineRequest = exports.DeleteSnapshotResponse = exports.DeleteSnapshotRequest = exports.DeleteFileSystemResponse = exports.DeleteFileSystemWindowsResponse = exports.DeleteFileSystemOpenZFSResponse = exports.DeleteFileSystemLustreResponse = exports.DeleteFileSystemRequest = exports.DeleteFileSystemWindowsConfiguration = exports.DeleteFileSystemOpenZFSConfiguration = exports.DeleteFileSystemLustreConfiguration = exports.DeleteDataRepositoryAssociationResponse = exports.DeleteDataRepositoryAssociationRequest = exports.DeleteBackupResponse = exports.DeleteBackupRequest = exports.CreateVolumeFromBackupRequest = exports.CreateVolumeRequest = exports.CreateOpenZFSVolumeConfiguration = exports.CreateOpenZFSOriginSnapshotConfiguration = exports.CreateOntapVolumeConfiguration = exports.CreateStorageVirtualMachineResponse = exports.StorageVirtualMachine = exports.StorageVirtualMachineSubtype = void 0;
|
|
6
|
+
exports.DescribeBackupsResponse = exports.CreateBackupResponse = exports.CopyBackupResponse = exports.Backup = exports.DescribeVolumesResponse = exports.DescribeSnapshotsResponse = exports.DescribeFileSystemsResponse = exports.UpdateVolumeResponse = exports.UpdateSnapshotResponse = exports.UpdateFileSystemResponse = exports.ReleaseFileSystemNfsV3LocksResponse = exports.CreateVolumeResponse = exports.CreateVolumeFromBackupResponse = exports.CreateSnapshotResponse = exports.CreateFileSystemResponse = exports.CreateFileSystemFromBackupResponse = exports.Volume = exports.Snapshot = exports.FileSystem = exports.AdministrativeAction = exports.UpdateVolumeRequest = exports.UpdateOpenZFSVolumeConfiguration = exports.UpdateOntapVolumeConfiguration = exports.UpdateStorageVirtualMachineResponse = exports.UpdateStorageVirtualMachineRequest = exports.UpdateSvmActiveDirectoryConfiguration = exports.UpdateSnapshotRequest = exports.UpdateFileSystemRequest = exports.UpdateFileSystemWindowsConfiguration = exports.SelfManagedActiveDirectoryConfigurationUpdates = exports.UpdateFileSystemOpenZFSConfiguration = exports.UpdateFileSystemOntapConfiguration = exports.UpdateFileSystemLustreConfiguration = exports.UpdateDataRepositoryAssociationResponse = exports.UpdateDataRepositoryAssociationRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.RestoreVolumeFromSnapshotResponse = exports.RestoreVolumeFromSnapshotRequest = exports.RestoreOpenZFSVolumeOption = exports.ReleaseFileSystemNfsV3LocksRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.DisassociateFileSystemAliasesResponse = exports.DisassociateFileSystemAliasesRequest = exports.DescribeVolumesRequest = exports.VolumeFilter = void 0;
|
|
7
7
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
8
8
|
var ActiveDirectoryBackupAttributes;
|
|
9
9
|
(function (ActiveDirectoryBackupAttributes) {
|
|
@@ -18,18 +18,15 @@ var ActiveDirectoryErrorType;
|
|
|
18
18
|
ActiveDirectoryErrorType["INVALID_DOMAIN_STAGE"] = "INVALID_DOMAIN_STAGE";
|
|
19
19
|
ActiveDirectoryErrorType["WRONG_VPC"] = "WRONG_VPC";
|
|
20
20
|
})(ActiveDirectoryErrorType = exports.ActiveDirectoryErrorType || (exports.ActiveDirectoryErrorType = {}));
|
|
21
|
-
var ActiveDirectoryError;
|
|
22
|
-
(function (ActiveDirectoryError) {
|
|
23
|
-
ActiveDirectoryError.filterSensitiveLog = (obj) => ({
|
|
24
|
-
...obj,
|
|
25
|
-
});
|
|
26
|
-
})(ActiveDirectoryError = exports.ActiveDirectoryError || (exports.ActiveDirectoryError = {}));
|
|
27
21
|
var AdministrativeActionType;
|
|
28
22
|
(function (AdministrativeActionType) {
|
|
29
23
|
AdministrativeActionType["FILE_SYSTEM_ALIAS_ASSOCIATION"] = "FILE_SYSTEM_ALIAS_ASSOCIATION";
|
|
30
24
|
AdministrativeActionType["FILE_SYSTEM_ALIAS_DISASSOCIATION"] = "FILE_SYSTEM_ALIAS_DISASSOCIATION";
|
|
31
25
|
AdministrativeActionType["FILE_SYSTEM_UPDATE"] = "FILE_SYSTEM_UPDATE";
|
|
26
|
+
AdministrativeActionType["RELEASE_NFS_V3_LOCKS"] = "RELEASE_NFS_V3_LOCKS";
|
|
27
|
+
AdministrativeActionType["SNAPSHOT_UPDATE"] = "SNAPSHOT_UPDATE";
|
|
32
28
|
AdministrativeActionType["STORAGE_OPTIMIZATION"] = "STORAGE_OPTIMIZATION";
|
|
29
|
+
AdministrativeActionType["VOLUME_UPDATE"] = "VOLUME_UPDATE";
|
|
33
30
|
})(AdministrativeActionType = exports.AdministrativeActionType || (exports.AdministrativeActionType = {}));
|
|
34
31
|
var AdministrativeActionFailureDetails;
|
|
35
32
|
(function (AdministrativeActionFailureDetails) {
|
|
@@ -55,6 +52,7 @@ var FileSystemType;
|
|
|
55
52
|
(function (FileSystemType) {
|
|
56
53
|
FileSystemType["LUSTRE"] = "LUSTRE";
|
|
57
54
|
FileSystemType["ONTAP"] = "ONTAP";
|
|
55
|
+
FileSystemType["OPENZFS"] = "OPENZFS";
|
|
58
56
|
FileSystemType["WINDOWS"] = "WINDOWS";
|
|
59
57
|
})(FileSystemType = exports.FileSystemType || (exports.FileSystemType = {}));
|
|
60
58
|
var FileSystemLifecycle;
|
|
@@ -75,6 +73,7 @@ var AutoImportPolicyType;
|
|
|
75
73
|
(function (AutoImportPolicyType) {
|
|
76
74
|
AutoImportPolicyType["NEW"] = "NEW";
|
|
77
75
|
AutoImportPolicyType["NEW_CHANGED"] = "NEW_CHANGED";
|
|
76
|
+
AutoImportPolicyType["NEW_CHANGED_DELETED"] = "NEW_CHANGED_DELETED";
|
|
78
77
|
AutoImportPolicyType["NONE"] = "NONE";
|
|
79
78
|
})(AutoImportPolicyType = exports.AutoImportPolicyType || (exports.AutoImportPolicyType = {}));
|
|
80
79
|
var DataRepositoryFailureDetails;
|
|
@@ -88,6 +87,7 @@ var DataRepositoryLifecycle;
|
|
|
88
87
|
DataRepositoryLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
89
88
|
DataRepositoryLifecycle["CREATING"] = "CREATING";
|
|
90
89
|
DataRepositoryLifecycle["DELETING"] = "DELETING";
|
|
90
|
+
DataRepositoryLifecycle["FAILED"] = "FAILED";
|
|
91
91
|
DataRepositoryLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
|
|
92
92
|
DataRepositoryLifecycle["UPDATING"] = "UPDATING";
|
|
93
93
|
})(DataRepositoryLifecycle = exports.DataRepositoryLifecycle || (exports.DataRepositoryLifecycle = {}));
|
|
@@ -100,6 +100,7 @@ var DataRepositoryConfiguration;
|
|
|
100
100
|
var LustreDeploymentType;
|
|
101
101
|
(function (LustreDeploymentType) {
|
|
102
102
|
LustreDeploymentType["PERSISTENT_1"] = "PERSISTENT_1";
|
|
103
|
+
LustreDeploymentType["PERSISTENT_2"] = "PERSISTENT_2";
|
|
103
104
|
LustreDeploymentType["SCRATCH_1"] = "SCRATCH_1";
|
|
104
105
|
LustreDeploymentType["SCRATCH_2"] = "SCRATCH_2";
|
|
105
106
|
})(LustreDeploymentType = exports.LustreDeploymentType || (exports.LustreDeploymentType = {}));
|
|
@@ -108,6 +109,19 @@ var DriveCacheType;
|
|
|
108
109
|
DriveCacheType["NONE"] = "NONE";
|
|
109
110
|
DriveCacheType["READ"] = "READ";
|
|
110
111
|
})(DriveCacheType = exports.DriveCacheType || (exports.DriveCacheType = {}));
|
|
112
|
+
var LustreAccessAuditLogLevel;
|
|
113
|
+
(function (LustreAccessAuditLogLevel) {
|
|
114
|
+
LustreAccessAuditLogLevel["DISABLED"] = "DISABLED";
|
|
115
|
+
LustreAccessAuditLogLevel["ERROR_ONLY"] = "ERROR_ONLY";
|
|
116
|
+
LustreAccessAuditLogLevel["WARN_ERROR"] = "WARN_ERROR";
|
|
117
|
+
LustreAccessAuditLogLevel["WARN_ONLY"] = "WARN_ONLY";
|
|
118
|
+
})(LustreAccessAuditLogLevel = exports.LustreAccessAuditLogLevel || (exports.LustreAccessAuditLogLevel = {}));
|
|
119
|
+
var LustreLogConfiguration;
|
|
120
|
+
(function (LustreLogConfiguration) {
|
|
121
|
+
LustreLogConfiguration.filterSensitiveLog = (obj) => ({
|
|
122
|
+
...obj,
|
|
123
|
+
});
|
|
124
|
+
})(LustreLogConfiguration = exports.LustreLogConfiguration || (exports.LustreLogConfiguration = {}));
|
|
111
125
|
var LustreFileSystemConfiguration;
|
|
112
126
|
(function (LustreFileSystemConfiguration) {
|
|
113
127
|
LustreFileSystemConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -147,6 +161,16 @@ var OntapFileSystemConfiguration;
|
|
|
147
161
|
...obj,
|
|
148
162
|
});
|
|
149
163
|
})(OntapFileSystemConfiguration = exports.OntapFileSystemConfiguration || (exports.OntapFileSystemConfiguration = {}));
|
|
164
|
+
var OpenZFSDeploymentType;
|
|
165
|
+
(function (OpenZFSDeploymentType) {
|
|
166
|
+
OpenZFSDeploymentType["SINGLE_AZ_1"] = "SINGLE_AZ_1";
|
|
167
|
+
})(OpenZFSDeploymentType = exports.OpenZFSDeploymentType || (exports.OpenZFSDeploymentType = {}));
|
|
168
|
+
var OpenZFSFileSystemConfiguration;
|
|
169
|
+
(function (OpenZFSFileSystemConfiguration) {
|
|
170
|
+
OpenZFSFileSystemConfiguration.filterSensitiveLog = (obj) => ({
|
|
171
|
+
...obj,
|
|
172
|
+
});
|
|
173
|
+
})(OpenZFSFileSystemConfiguration = exports.OpenZFSFileSystemConfiguration || (exports.OpenZFSFileSystemConfiguration = {}));
|
|
150
174
|
var StorageType;
|
|
151
175
|
(function (StorageType) {
|
|
152
176
|
StorageType["HDD"] = "HDD";
|
|
@@ -208,8 +232,16 @@ var WindowsFileSystemConfiguration;
|
|
|
208
232
|
...obj,
|
|
209
233
|
});
|
|
210
234
|
})(WindowsFileSystemConfiguration = exports.WindowsFileSystemConfiguration || (exports.WindowsFileSystemConfiguration = {}));
|
|
235
|
+
var SnapshotLifecycle;
|
|
236
|
+
(function (SnapshotLifecycle) {
|
|
237
|
+
SnapshotLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
238
|
+
SnapshotLifecycle["CREATING"] = "CREATING";
|
|
239
|
+
SnapshotLifecycle["DELETING"] = "DELETING";
|
|
240
|
+
SnapshotLifecycle["PENDING"] = "PENDING";
|
|
241
|
+
})(SnapshotLifecycle = exports.SnapshotLifecycle || (exports.SnapshotLifecycle = {}));
|
|
211
242
|
var VolumeLifecycle;
|
|
212
243
|
(function (VolumeLifecycle) {
|
|
244
|
+
VolumeLifecycle["AVAILABLE"] = "AVAILABLE";
|
|
213
245
|
VolumeLifecycle["CREATED"] = "CREATED";
|
|
214
246
|
VolumeLifecycle["CREATING"] = "CREATING";
|
|
215
247
|
VolumeLifecycle["DELETING"] = "DELETING";
|
|
@@ -260,16 +292,56 @@ var OntapVolumeConfiguration;
|
|
|
260
292
|
...obj,
|
|
261
293
|
});
|
|
262
294
|
})(OntapVolumeConfiguration = exports.OntapVolumeConfiguration || (exports.OntapVolumeConfiguration = {}));
|
|
295
|
+
var OpenZFSDataCompressionType;
|
|
296
|
+
(function (OpenZFSDataCompressionType) {
|
|
297
|
+
OpenZFSDataCompressionType["NONE"] = "NONE";
|
|
298
|
+
OpenZFSDataCompressionType["ZSTD"] = "ZSTD";
|
|
299
|
+
})(OpenZFSDataCompressionType = exports.OpenZFSDataCompressionType || (exports.OpenZFSDataCompressionType = {}));
|
|
300
|
+
var OpenZFSClientConfiguration;
|
|
301
|
+
(function (OpenZFSClientConfiguration) {
|
|
302
|
+
OpenZFSClientConfiguration.filterSensitiveLog = (obj) => ({
|
|
303
|
+
...obj,
|
|
304
|
+
});
|
|
305
|
+
})(OpenZFSClientConfiguration = exports.OpenZFSClientConfiguration || (exports.OpenZFSClientConfiguration = {}));
|
|
306
|
+
var OpenZFSNfsExport;
|
|
307
|
+
(function (OpenZFSNfsExport) {
|
|
308
|
+
OpenZFSNfsExport.filterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
});
|
|
311
|
+
})(OpenZFSNfsExport = exports.OpenZFSNfsExport || (exports.OpenZFSNfsExport = {}));
|
|
312
|
+
var OpenZFSCopyStrategy;
|
|
313
|
+
(function (OpenZFSCopyStrategy) {
|
|
314
|
+
OpenZFSCopyStrategy["CLONE"] = "CLONE";
|
|
315
|
+
OpenZFSCopyStrategy["FULL_COPY"] = "FULL_COPY";
|
|
316
|
+
})(OpenZFSCopyStrategy = exports.OpenZFSCopyStrategy || (exports.OpenZFSCopyStrategy = {}));
|
|
317
|
+
var OpenZFSOriginSnapshotConfiguration;
|
|
318
|
+
(function (OpenZFSOriginSnapshotConfiguration) {
|
|
319
|
+
OpenZFSOriginSnapshotConfiguration.filterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
})(OpenZFSOriginSnapshotConfiguration = exports.OpenZFSOriginSnapshotConfiguration || (exports.OpenZFSOriginSnapshotConfiguration = {}));
|
|
323
|
+
var OpenZFSQuotaType;
|
|
324
|
+
(function (OpenZFSQuotaType) {
|
|
325
|
+
OpenZFSQuotaType["GROUP"] = "GROUP";
|
|
326
|
+
OpenZFSQuotaType["USER"] = "USER";
|
|
327
|
+
})(OpenZFSQuotaType = exports.OpenZFSQuotaType || (exports.OpenZFSQuotaType = {}));
|
|
328
|
+
var OpenZFSUserOrGroupQuota;
|
|
329
|
+
(function (OpenZFSUserOrGroupQuota) {
|
|
330
|
+
OpenZFSUserOrGroupQuota.filterSensitiveLog = (obj) => ({
|
|
331
|
+
...obj,
|
|
332
|
+
});
|
|
333
|
+
})(OpenZFSUserOrGroupQuota = exports.OpenZFSUserOrGroupQuota || (exports.OpenZFSUserOrGroupQuota = {}));
|
|
334
|
+
var OpenZFSVolumeConfiguration;
|
|
335
|
+
(function (OpenZFSVolumeConfiguration) {
|
|
336
|
+
OpenZFSVolumeConfiguration.filterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
});
|
|
339
|
+
})(OpenZFSVolumeConfiguration = exports.OpenZFSVolumeConfiguration || (exports.OpenZFSVolumeConfiguration = {}));
|
|
263
340
|
var VolumeType;
|
|
264
341
|
(function (VolumeType) {
|
|
265
342
|
VolumeType["ONTAP"] = "ONTAP";
|
|
343
|
+
VolumeType["OPENZFS"] = "OPENZFS";
|
|
266
344
|
})(VolumeType = exports.VolumeType || (exports.VolumeType = {}));
|
|
267
|
-
var Volume;
|
|
268
|
-
(function (Volume) {
|
|
269
|
-
Volume.filterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
})(Volume = exports.Volume || (exports.Volume = {}));
|
|
273
345
|
var AssociateFileSystemAliasesRequest;
|
|
274
346
|
(function (AssociateFileSystemAliasesRequest) {
|
|
275
347
|
AssociateFileSystemAliasesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -282,24 +354,24 @@ var AssociateFileSystemAliasesResponse;
|
|
|
282
354
|
...obj,
|
|
283
355
|
});
|
|
284
356
|
})(AssociateFileSystemAliasesResponse = exports.AssociateFileSystemAliasesResponse || (exports.AssociateFileSystemAliasesResponse = {}));
|
|
285
|
-
var
|
|
286
|
-
(function (
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
})(
|
|
291
|
-
var
|
|
292
|
-
(function (
|
|
293
|
-
|
|
357
|
+
var EventType;
|
|
358
|
+
(function (EventType) {
|
|
359
|
+
EventType["CHANGED"] = "CHANGED";
|
|
360
|
+
EventType["DELETED"] = "DELETED";
|
|
361
|
+
EventType["NEW"] = "NEW";
|
|
362
|
+
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
363
|
+
var AutoExportPolicy;
|
|
364
|
+
(function (AutoExportPolicy) {
|
|
365
|
+
AutoExportPolicy.filterSensitiveLog = (obj) => ({
|
|
294
366
|
...obj,
|
|
295
367
|
});
|
|
296
|
-
})(
|
|
297
|
-
var
|
|
298
|
-
(function (
|
|
299
|
-
|
|
368
|
+
})(AutoExportPolicy = exports.AutoExportPolicy || (exports.AutoExportPolicy = {}));
|
|
369
|
+
var AutoImportPolicy;
|
|
370
|
+
(function (AutoImportPolicy) {
|
|
371
|
+
AutoImportPolicy.filterSensitiveLog = (obj) => ({
|
|
300
372
|
...obj,
|
|
301
373
|
});
|
|
302
|
-
})(
|
|
374
|
+
})(AutoImportPolicy = exports.AutoImportPolicy || (exports.AutoImportPolicy = {}));
|
|
303
375
|
var CancelDataRepositoryTaskRequest;
|
|
304
376
|
(function (CancelDataRepositoryTaskRequest) {
|
|
305
377
|
CancelDataRepositoryTaskRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -321,30 +393,6 @@ var CancelDataRepositoryTaskResponse;
|
|
|
321
393
|
...obj,
|
|
322
394
|
});
|
|
323
395
|
})(CancelDataRepositoryTaskResponse = exports.CancelDataRepositoryTaskResponse || (exports.CancelDataRepositoryTaskResponse = {}));
|
|
324
|
-
var DataRepositoryTaskEnded;
|
|
325
|
-
(function (DataRepositoryTaskEnded) {
|
|
326
|
-
DataRepositoryTaskEnded.filterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
})(DataRepositoryTaskEnded = exports.DataRepositoryTaskEnded || (exports.DataRepositoryTaskEnded = {}));
|
|
330
|
-
var DataRepositoryTaskNotFound;
|
|
331
|
-
(function (DataRepositoryTaskNotFound) {
|
|
332
|
-
DataRepositoryTaskNotFound.filterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
})(DataRepositoryTaskNotFound = exports.DataRepositoryTaskNotFound || (exports.DataRepositoryTaskNotFound = {}));
|
|
336
|
-
var UnsupportedOperation;
|
|
337
|
-
(function (UnsupportedOperation) {
|
|
338
|
-
UnsupportedOperation.filterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
})(UnsupportedOperation = exports.UnsupportedOperation || (exports.UnsupportedOperation = {}));
|
|
342
|
-
var BackupNotFound;
|
|
343
|
-
(function (BackupNotFound) {
|
|
344
|
-
BackupNotFound.filterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
})(BackupNotFound = exports.BackupNotFound || (exports.BackupNotFound = {}));
|
|
348
396
|
var CopyBackupRequest;
|
|
349
397
|
(function (CopyBackupRequest) {
|
|
350
398
|
CopyBackupRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -378,36 +426,6 @@ var BackupType;
|
|
|
378
426
|
BackupType["AWS_BACKUP"] = "AWS_BACKUP";
|
|
379
427
|
BackupType["USER_INITIATED"] = "USER_INITIATED";
|
|
380
428
|
})(BackupType = exports.BackupType || (exports.BackupType = {}));
|
|
381
|
-
var IncompatibleParameterError;
|
|
382
|
-
(function (IncompatibleParameterError) {
|
|
383
|
-
IncompatibleParameterError.filterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
})(IncompatibleParameterError = exports.IncompatibleParameterError || (exports.IncompatibleParameterError = {}));
|
|
387
|
-
var IncompatibleRegionForMultiAZ;
|
|
388
|
-
(function (IncompatibleRegionForMultiAZ) {
|
|
389
|
-
IncompatibleRegionForMultiAZ.filterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
})(IncompatibleRegionForMultiAZ = exports.IncompatibleRegionForMultiAZ || (exports.IncompatibleRegionForMultiAZ = {}));
|
|
393
|
-
var InvalidDestinationKmsKey;
|
|
394
|
-
(function (InvalidDestinationKmsKey) {
|
|
395
|
-
InvalidDestinationKmsKey.filterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
})(InvalidDestinationKmsKey = exports.InvalidDestinationKmsKey || (exports.InvalidDestinationKmsKey = {}));
|
|
399
|
-
var InvalidRegion;
|
|
400
|
-
(function (InvalidRegion) {
|
|
401
|
-
InvalidRegion.filterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
})(InvalidRegion = exports.InvalidRegion || (exports.InvalidRegion = {}));
|
|
405
|
-
var InvalidSourceKmsKey;
|
|
406
|
-
(function (InvalidSourceKmsKey) {
|
|
407
|
-
InvalidSourceKmsKey.filterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
})(InvalidSourceKmsKey = exports.InvalidSourceKmsKey || (exports.InvalidSourceKmsKey = {}));
|
|
411
429
|
var ServiceLimit;
|
|
412
430
|
(function (ServiceLimit) {
|
|
413
431
|
ServiceLimit["FILE_SYSTEM_COUNT"] = "FILE_SYSTEM_COUNT";
|
|
@@ -420,36 +438,36 @@ var ServiceLimit;
|
|
|
420
438
|
ServiceLimit["TOTAL_USER_TAGS"] = "TOTAL_USER_TAGS";
|
|
421
439
|
ServiceLimit["VOLUMES_PER_FILE_SYSTEM"] = "VOLUMES_PER_FILE_SYSTEM";
|
|
422
440
|
})(ServiceLimit = exports.ServiceLimit || (exports.ServiceLimit = {}));
|
|
423
|
-
var
|
|
424
|
-
(function (
|
|
425
|
-
|
|
441
|
+
var CreateBackupRequest;
|
|
442
|
+
(function (CreateBackupRequest) {
|
|
443
|
+
CreateBackupRequest.filterSensitiveLog = (obj) => ({
|
|
426
444
|
...obj,
|
|
427
445
|
});
|
|
428
|
-
})(
|
|
429
|
-
var
|
|
430
|
-
(function (
|
|
431
|
-
|
|
446
|
+
})(CreateBackupRequest = exports.CreateBackupRequest || (exports.CreateBackupRequest = {}));
|
|
447
|
+
var S3DataRepositoryConfiguration;
|
|
448
|
+
(function (S3DataRepositoryConfiguration) {
|
|
449
|
+
S3DataRepositoryConfiguration.filterSensitiveLog = (obj) => ({
|
|
432
450
|
...obj,
|
|
433
451
|
});
|
|
434
|
-
})(
|
|
435
|
-
var
|
|
436
|
-
(function (
|
|
437
|
-
|
|
452
|
+
})(S3DataRepositoryConfiguration = exports.S3DataRepositoryConfiguration || (exports.S3DataRepositoryConfiguration = {}));
|
|
453
|
+
var CreateDataRepositoryAssociationRequest;
|
|
454
|
+
(function (CreateDataRepositoryAssociationRequest) {
|
|
455
|
+
CreateDataRepositoryAssociationRequest.filterSensitiveLog = (obj) => ({
|
|
438
456
|
...obj,
|
|
439
457
|
});
|
|
440
|
-
})(
|
|
441
|
-
var
|
|
442
|
-
(function (
|
|
443
|
-
|
|
458
|
+
})(CreateDataRepositoryAssociationRequest = exports.CreateDataRepositoryAssociationRequest || (exports.CreateDataRepositoryAssociationRequest = {}));
|
|
459
|
+
var DataRepositoryAssociation;
|
|
460
|
+
(function (DataRepositoryAssociation) {
|
|
461
|
+
DataRepositoryAssociation.filterSensitiveLog = (obj) => ({
|
|
444
462
|
...obj,
|
|
445
463
|
});
|
|
446
|
-
})(
|
|
447
|
-
var
|
|
448
|
-
(function (
|
|
449
|
-
|
|
464
|
+
})(DataRepositoryAssociation = exports.DataRepositoryAssociation || (exports.DataRepositoryAssociation = {}));
|
|
465
|
+
var CreateDataRepositoryAssociationResponse;
|
|
466
|
+
(function (CreateDataRepositoryAssociationResponse) {
|
|
467
|
+
CreateDataRepositoryAssociationResponse.filterSensitiveLog = (obj) => ({
|
|
450
468
|
...obj,
|
|
451
469
|
});
|
|
452
|
-
})(
|
|
470
|
+
})(CreateDataRepositoryAssociationResponse = exports.CreateDataRepositoryAssociationResponse || (exports.CreateDataRepositoryAssociationResponse = {}));
|
|
453
471
|
var ReportFormat;
|
|
454
472
|
(function (ReportFormat) {
|
|
455
473
|
ReportFormat["REPORT_CSV_20191124"] = "REPORT_CSV_20191124";
|
|
@@ -467,6 +485,7 @@ var CompletionReport;
|
|
|
467
485
|
var DataRepositoryTaskType;
|
|
468
486
|
(function (DataRepositoryTaskType) {
|
|
469
487
|
DataRepositoryTaskType["EXPORT"] = "EXPORT_TO_REPOSITORY";
|
|
488
|
+
DataRepositoryTaskType["IMPORT"] = "IMPORT_METADATA_FROM_REPOSITORY";
|
|
470
489
|
})(DataRepositoryTaskType = exports.DataRepositoryTaskType || (exports.DataRepositoryTaskType = {}));
|
|
471
490
|
var CreateDataRepositoryTaskRequest;
|
|
472
491
|
(function (CreateDataRepositoryTaskRequest) {
|
|
@@ -498,12 +517,12 @@ var CreateDataRepositoryTaskResponse;
|
|
|
498
517
|
...obj,
|
|
499
518
|
});
|
|
500
519
|
})(CreateDataRepositoryTaskResponse = exports.CreateDataRepositoryTaskResponse || (exports.CreateDataRepositoryTaskResponse = {}));
|
|
501
|
-
var
|
|
502
|
-
(function (
|
|
503
|
-
|
|
520
|
+
var LustreLogCreateConfiguration;
|
|
521
|
+
(function (LustreLogCreateConfiguration) {
|
|
522
|
+
LustreLogCreateConfiguration.filterSensitiveLog = (obj) => ({
|
|
504
523
|
...obj,
|
|
505
524
|
});
|
|
506
|
-
})(
|
|
525
|
+
})(LustreLogCreateConfiguration = exports.LustreLogCreateConfiguration || (exports.LustreLogCreateConfiguration = {}));
|
|
507
526
|
var CreateFileSystemLustreConfiguration;
|
|
508
527
|
(function (CreateFileSystemLustreConfiguration) {
|
|
509
528
|
CreateFileSystemLustreConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -517,6 +536,18 @@ var CreateFileSystemOntapConfiguration;
|
|
|
517
536
|
...(obj.FsxAdminPassword && { FsxAdminPassword: smithy_client_1.SENSITIVE_STRING }),
|
|
518
537
|
});
|
|
519
538
|
})(CreateFileSystemOntapConfiguration = exports.CreateFileSystemOntapConfiguration || (exports.CreateFileSystemOntapConfiguration = {}));
|
|
539
|
+
var OpenZFSCreateRootVolumeConfiguration;
|
|
540
|
+
(function (OpenZFSCreateRootVolumeConfiguration) {
|
|
541
|
+
OpenZFSCreateRootVolumeConfiguration.filterSensitiveLog = (obj) => ({
|
|
542
|
+
...obj,
|
|
543
|
+
});
|
|
544
|
+
})(OpenZFSCreateRootVolumeConfiguration = exports.OpenZFSCreateRootVolumeConfiguration || (exports.OpenZFSCreateRootVolumeConfiguration = {}));
|
|
545
|
+
var CreateFileSystemOpenZFSConfiguration;
|
|
546
|
+
(function (CreateFileSystemOpenZFSConfiguration) {
|
|
547
|
+
CreateFileSystemOpenZFSConfiguration.filterSensitiveLog = (obj) => ({
|
|
548
|
+
...obj,
|
|
549
|
+
});
|
|
550
|
+
})(CreateFileSystemOpenZFSConfiguration = exports.CreateFileSystemOpenZFSConfiguration || (exports.CreateFileSystemOpenZFSConfiguration = {}));
|
|
520
551
|
var WindowsAuditLogCreateConfiguration;
|
|
521
552
|
(function (WindowsAuditLogCreateConfiguration) {
|
|
522
553
|
WindowsAuditLogCreateConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -551,36 +582,6 @@ var CreateFileSystemRequest;
|
|
|
551
582
|
}),
|
|
552
583
|
});
|
|
553
584
|
})(CreateFileSystemRequest = exports.CreateFileSystemRequest || (exports.CreateFileSystemRequest = {}));
|
|
554
|
-
var InvalidExportPath;
|
|
555
|
-
(function (InvalidExportPath) {
|
|
556
|
-
InvalidExportPath.filterSensitiveLog = (obj) => ({
|
|
557
|
-
...obj,
|
|
558
|
-
});
|
|
559
|
-
})(InvalidExportPath = exports.InvalidExportPath || (exports.InvalidExportPath = {}));
|
|
560
|
-
var InvalidImportPath;
|
|
561
|
-
(function (InvalidImportPath) {
|
|
562
|
-
InvalidImportPath.filterSensitiveLog = (obj) => ({
|
|
563
|
-
...obj,
|
|
564
|
-
});
|
|
565
|
-
})(InvalidImportPath = exports.InvalidImportPath || (exports.InvalidImportPath = {}));
|
|
566
|
-
var InvalidNetworkSettings;
|
|
567
|
-
(function (InvalidNetworkSettings) {
|
|
568
|
-
InvalidNetworkSettings.filterSensitiveLog = (obj) => ({
|
|
569
|
-
...obj,
|
|
570
|
-
});
|
|
571
|
-
})(InvalidNetworkSettings = exports.InvalidNetworkSettings || (exports.InvalidNetworkSettings = {}));
|
|
572
|
-
var InvalidPerUnitStorageThroughput;
|
|
573
|
-
(function (InvalidPerUnitStorageThroughput) {
|
|
574
|
-
InvalidPerUnitStorageThroughput.filterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
});
|
|
577
|
-
})(InvalidPerUnitStorageThroughput = exports.InvalidPerUnitStorageThroughput || (exports.InvalidPerUnitStorageThroughput = {}));
|
|
578
|
-
var MissingFileSystemConfiguration;
|
|
579
|
-
(function (MissingFileSystemConfiguration) {
|
|
580
|
-
MissingFileSystemConfiguration.filterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
});
|
|
583
|
-
})(MissingFileSystemConfiguration = exports.MissingFileSystemConfiguration || (exports.MissingFileSystemConfiguration = {}));
|
|
584
585
|
var CreateFileSystemFromBackupRequest;
|
|
585
586
|
(function (CreateFileSystemFromBackupRequest) {
|
|
586
587
|
CreateFileSystemFromBackupRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -590,6 +591,12 @@ var CreateFileSystemFromBackupRequest;
|
|
|
590
591
|
}),
|
|
591
592
|
});
|
|
592
593
|
})(CreateFileSystemFromBackupRequest = exports.CreateFileSystemFromBackupRequest || (exports.CreateFileSystemFromBackupRequest = {}));
|
|
594
|
+
var CreateSnapshotRequest;
|
|
595
|
+
(function (CreateSnapshotRequest) {
|
|
596
|
+
CreateSnapshotRequest.filterSensitiveLog = (obj) => ({
|
|
597
|
+
...obj,
|
|
598
|
+
});
|
|
599
|
+
})(CreateSnapshotRequest = exports.CreateSnapshotRequest || (exports.CreateSnapshotRequest = {}));
|
|
593
600
|
var CreateSvmActiveDirectoryConfiguration;
|
|
594
601
|
(function (CreateSvmActiveDirectoryConfiguration) {
|
|
595
602
|
CreateSvmActiveDirectoryConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -667,54 +674,30 @@ var CreateOntapVolumeConfiguration;
|
|
|
667
674
|
...obj,
|
|
668
675
|
});
|
|
669
676
|
})(CreateOntapVolumeConfiguration = exports.CreateOntapVolumeConfiguration || (exports.CreateOntapVolumeConfiguration = {}));
|
|
670
|
-
var
|
|
671
|
-
(function (
|
|
672
|
-
|
|
677
|
+
var CreateOpenZFSOriginSnapshotConfiguration;
|
|
678
|
+
(function (CreateOpenZFSOriginSnapshotConfiguration) {
|
|
679
|
+
CreateOpenZFSOriginSnapshotConfiguration.filterSensitiveLog = (obj) => ({
|
|
673
680
|
...obj,
|
|
674
681
|
});
|
|
675
|
-
})(
|
|
676
|
-
var
|
|
677
|
-
(function (
|
|
678
|
-
|
|
679
|
-
...obj,
|
|
680
|
-
});
|
|
681
|
-
})(CreateVolumeResponse = exports.CreateVolumeResponse || (exports.CreateVolumeResponse = {}));
|
|
682
|
-
var MissingVolumeConfiguration;
|
|
683
|
-
(function (MissingVolumeConfiguration) {
|
|
684
|
-
MissingVolumeConfiguration.filterSensitiveLog = (obj) => ({
|
|
682
|
+
})(CreateOpenZFSOriginSnapshotConfiguration = exports.CreateOpenZFSOriginSnapshotConfiguration || (exports.CreateOpenZFSOriginSnapshotConfiguration = {}));
|
|
683
|
+
var CreateOpenZFSVolumeConfiguration;
|
|
684
|
+
(function (CreateOpenZFSVolumeConfiguration) {
|
|
685
|
+
CreateOpenZFSVolumeConfiguration.filterSensitiveLog = (obj) => ({
|
|
685
686
|
...obj,
|
|
686
687
|
});
|
|
687
|
-
})(
|
|
688
|
-
var
|
|
689
|
-
(function (
|
|
690
|
-
|
|
688
|
+
})(CreateOpenZFSVolumeConfiguration = exports.CreateOpenZFSVolumeConfiguration || (exports.CreateOpenZFSVolumeConfiguration = {}));
|
|
689
|
+
var CreateVolumeRequest;
|
|
690
|
+
(function (CreateVolumeRequest) {
|
|
691
|
+
CreateVolumeRequest.filterSensitiveLog = (obj) => ({
|
|
691
692
|
...obj,
|
|
692
693
|
});
|
|
693
|
-
})(
|
|
694
|
+
})(CreateVolumeRequest = exports.CreateVolumeRequest || (exports.CreateVolumeRequest = {}));
|
|
694
695
|
var CreateVolumeFromBackupRequest;
|
|
695
696
|
(function (CreateVolumeFromBackupRequest) {
|
|
696
697
|
CreateVolumeFromBackupRequest.filterSensitiveLog = (obj) => ({
|
|
697
698
|
...obj,
|
|
698
699
|
});
|
|
699
700
|
})(CreateVolumeFromBackupRequest = exports.CreateVolumeFromBackupRequest || (exports.CreateVolumeFromBackupRequest = {}));
|
|
700
|
-
var CreateVolumeFromBackupResponse;
|
|
701
|
-
(function (CreateVolumeFromBackupResponse) {
|
|
702
|
-
CreateVolumeFromBackupResponse.filterSensitiveLog = (obj) => ({
|
|
703
|
-
...obj,
|
|
704
|
-
});
|
|
705
|
-
})(CreateVolumeFromBackupResponse = exports.CreateVolumeFromBackupResponse || (exports.CreateVolumeFromBackupResponse = {}));
|
|
706
|
-
var BackupBeingCopied;
|
|
707
|
-
(function (BackupBeingCopied) {
|
|
708
|
-
BackupBeingCopied.filterSensitiveLog = (obj) => ({
|
|
709
|
-
...obj,
|
|
710
|
-
});
|
|
711
|
-
})(BackupBeingCopied = exports.BackupBeingCopied || (exports.BackupBeingCopied = {}));
|
|
712
|
-
var BackupRestoring;
|
|
713
|
-
(function (BackupRestoring) {
|
|
714
|
-
BackupRestoring.filterSensitiveLog = (obj) => ({
|
|
715
|
-
...obj,
|
|
716
|
-
});
|
|
717
|
-
})(BackupRestoring = exports.BackupRestoring || (exports.BackupRestoring = {}));
|
|
718
701
|
var DeleteBackupRequest;
|
|
719
702
|
(function (DeleteBackupRequest) {
|
|
720
703
|
DeleteBackupRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -727,12 +710,30 @@ var DeleteBackupResponse;
|
|
|
727
710
|
...obj,
|
|
728
711
|
});
|
|
729
712
|
})(DeleteBackupResponse = exports.DeleteBackupResponse || (exports.DeleteBackupResponse = {}));
|
|
713
|
+
var DeleteDataRepositoryAssociationRequest;
|
|
714
|
+
(function (DeleteDataRepositoryAssociationRequest) {
|
|
715
|
+
DeleteDataRepositoryAssociationRequest.filterSensitiveLog = (obj) => ({
|
|
716
|
+
...obj,
|
|
717
|
+
});
|
|
718
|
+
})(DeleteDataRepositoryAssociationRequest = exports.DeleteDataRepositoryAssociationRequest || (exports.DeleteDataRepositoryAssociationRequest = {}));
|
|
719
|
+
var DeleteDataRepositoryAssociationResponse;
|
|
720
|
+
(function (DeleteDataRepositoryAssociationResponse) {
|
|
721
|
+
DeleteDataRepositoryAssociationResponse.filterSensitiveLog = (obj) => ({
|
|
722
|
+
...obj,
|
|
723
|
+
});
|
|
724
|
+
})(DeleteDataRepositoryAssociationResponse = exports.DeleteDataRepositoryAssociationResponse || (exports.DeleteDataRepositoryAssociationResponse = {}));
|
|
730
725
|
var DeleteFileSystemLustreConfiguration;
|
|
731
726
|
(function (DeleteFileSystemLustreConfiguration) {
|
|
732
727
|
DeleteFileSystemLustreConfiguration.filterSensitiveLog = (obj) => ({
|
|
733
728
|
...obj,
|
|
734
729
|
});
|
|
735
730
|
})(DeleteFileSystemLustreConfiguration = exports.DeleteFileSystemLustreConfiguration || (exports.DeleteFileSystemLustreConfiguration = {}));
|
|
731
|
+
var DeleteFileSystemOpenZFSConfiguration;
|
|
732
|
+
(function (DeleteFileSystemOpenZFSConfiguration) {
|
|
733
|
+
DeleteFileSystemOpenZFSConfiguration.filterSensitiveLog = (obj) => ({
|
|
734
|
+
...obj,
|
|
735
|
+
});
|
|
736
|
+
})(DeleteFileSystemOpenZFSConfiguration = exports.DeleteFileSystemOpenZFSConfiguration || (exports.DeleteFileSystemOpenZFSConfiguration = {}));
|
|
736
737
|
var DeleteFileSystemWindowsConfiguration;
|
|
737
738
|
(function (DeleteFileSystemWindowsConfiguration) {
|
|
738
739
|
DeleteFileSystemWindowsConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -751,6 +752,12 @@ var DeleteFileSystemLustreResponse;
|
|
|
751
752
|
...obj,
|
|
752
753
|
});
|
|
753
754
|
})(DeleteFileSystemLustreResponse = exports.DeleteFileSystemLustreResponse || (exports.DeleteFileSystemLustreResponse = {}));
|
|
755
|
+
var DeleteFileSystemOpenZFSResponse;
|
|
756
|
+
(function (DeleteFileSystemOpenZFSResponse) {
|
|
757
|
+
DeleteFileSystemOpenZFSResponse.filterSensitiveLog = (obj) => ({
|
|
758
|
+
...obj,
|
|
759
|
+
});
|
|
760
|
+
})(DeleteFileSystemOpenZFSResponse = exports.DeleteFileSystemOpenZFSResponse || (exports.DeleteFileSystemOpenZFSResponse = {}));
|
|
754
761
|
var DeleteFileSystemWindowsResponse;
|
|
755
762
|
(function (DeleteFileSystemWindowsResponse) {
|
|
756
763
|
DeleteFileSystemWindowsResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -763,6 +770,18 @@ var DeleteFileSystemResponse;
|
|
|
763
770
|
...obj,
|
|
764
771
|
});
|
|
765
772
|
})(DeleteFileSystemResponse = exports.DeleteFileSystemResponse || (exports.DeleteFileSystemResponse = {}));
|
|
773
|
+
var DeleteSnapshotRequest;
|
|
774
|
+
(function (DeleteSnapshotRequest) {
|
|
775
|
+
DeleteSnapshotRequest.filterSensitiveLog = (obj) => ({
|
|
776
|
+
...obj,
|
|
777
|
+
});
|
|
778
|
+
})(DeleteSnapshotRequest = exports.DeleteSnapshotRequest || (exports.DeleteSnapshotRequest = {}));
|
|
779
|
+
var DeleteSnapshotResponse;
|
|
780
|
+
(function (DeleteSnapshotResponse) {
|
|
781
|
+
DeleteSnapshotResponse.filterSensitiveLog = (obj) => ({
|
|
782
|
+
...obj,
|
|
783
|
+
});
|
|
784
|
+
})(DeleteSnapshotResponse = exports.DeleteSnapshotResponse || (exports.DeleteSnapshotResponse = {}));
|
|
766
785
|
var DeleteStorageVirtualMachineRequest;
|
|
767
786
|
(function (DeleteStorageVirtualMachineRequest) {
|
|
768
787
|
DeleteStorageVirtualMachineRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -781,6 +800,16 @@ var DeleteVolumeOntapConfiguration;
|
|
|
781
800
|
...obj,
|
|
782
801
|
});
|
|
783
802
|
})(DeleteVolumeOntapConfiguration = exports.DeleteVolumeOntapConfiguration || (exports.DeleteVolumeOntapConfiguration = {}));
|
|
803
|
+
var DeleteOpenZFSVolumeOption;
|
|
804
|
+
(function (DeleteOpenZFSVolumeOption) {
|
|
805
|
+
DeleteOpenZFSVolumeOption["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"] = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
|
|
806
|
+
})(DeleteOpenZFSVolumeOption = exports.DeleteOpenZFSVolumeOption || (exports.DeleteOpenZFSVolumeOption = {}));
|
|
807
|
+
var DeleteVolumeOpenZFSConfiguration;
|
|
808
|
+
(function (DeleteVolumeOpenZFSConfiguration) {
|
|
809
|
+
DeleteVolumeOpenZFSConfiguration.filterSensitiveLog = (obj) => ({
|
|
810
|
+
...obj,
|
|
811
|
+
});
|
|
812
|
+
})(DeleteVolumeOpenZFSConfiguration = exports.DeleteVolumeOpenZFSConfiguration || (exports.DeleteVolumeOpenZFSConfiguration = {}));
|
|
784
813
|
var DeleteVolumeRequest;
|
|
785
814
|
(function (DeleteVolumeRequest) {
|
|
786
815
|
DeleteVolumeRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -802,6 +831,7 @@ var DeleteVolumeResponse;
|
|
|
802
831
|
var FilterName;
|
|
803
832
|
(function (FilterName) {
|
|
804
833
|
FilterName["BACKUP_TYPE"] = "backup-type";
|
|
834
|
+
FilterName["DATA_REPOSITORY_TYPE"] = "data-repository-type";
|
|
805
835
|
FilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
806
836
|
FilterName["FILE_SYSTEM_TYPE"] = "file-system-type";
|
|
807
837
|
FilterName["VOLUME_ID"] = "volume-id";
|
|
@@ -818,8 +848,21 @@ var DescribeBackupsRequest;
|
|
|
818
848
|
...obj,
|
|
819
849
|
});
|
|
820
850
|
})(DescribeBackupsRequest = exports.DescribeBackupsRequest || (exports.DescribeBackupsRequest = {}));
|
|
851
|
+
var DescribeDataRepositoryAssociationsRequest;
|
|
852
|
+
(function (DescribeDataRepositoryAssociationsRequest) {
|
|
853
|
+
DescribeDataRepositoryAssociationsRequest.filterSensitiveLog = (obj) => ({
|
|
854
|
+
...obj,
|
|
855
|
+
});
|
|
856
|
+
})(DescribeDataRepositoryAssociationsRequest = exports.DescribeDataRepositoryAssociationsRequest || (exports.DescribeDataRepositoryAssociationsRequest = {}));
|
|
857
|
+
var DescribeDataRepositoryAssociationsResponse;
|
|
858
|
+
(function (DescribeDataRepositoryAssociationsResponse) {
|
|
859
|
+
DescribeDataRepositoryAssociationsResponse.filterSensitiveLog = (obj) => ({
|
|
860
|
+
...obj,
|
|
861
|
+
});
|
|
862
|
+
})(DescribeDataRepositoryAssociationsResponse = exports.DescribeDataRepositoryAssociationsResponse || (exports.DescribeDataRepositoryAssociationsResponse = {}));
|
|
821
863
|
var DataRepositoryTaskFilterName;
|
|
822
864
|
(function (DataRepositoryTaskFilterName) {
|
|
865
|
+
DataRepositoryTaskFilterName["DATA_REPO_ASSOCIATION_ID"] = "data-repository-association-id";
|
|
823
866
|
DataRepositoryTaskFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
824
867
|
DataRepositoryTaskFilterName["TASK_LIFECYCLE"] = "task-lifecycle";
|
|
825
868
|
})(DataRepositoryTaskFilterName = exports.DataRepositoryTaskFilterName || (exports.DataRepositoryTaskFilterName = {}));
|
|
@@ -859,6 +902,23 @@ var DescribeFileSystemsRequest;
|
|
|
859
902
|
...obj,
|
|
860
903
|
});
|
|
861
904
|
})(DescribeFileSystemsRequest = exports.DescribeFileSystemsRequest || (exports.DescribeFileSystemsRequest = {}));
|
|
905
|
+
var SnapshotFilterName;
|
|
906
|
+
(function (SnapshotFilterName) {
|
|
907
|
+
SnapshotFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
908
|
+
SnapshotFilterName["VOLUME_ID"] = "volume-id";
|
|
909
|
+
})(SnapshotFilterName = exports.SnapshotFilterName || (exports.SnapshotFilterName = {}));
|
|
910
|
+
var SnapshotFilter;
|
|
911
|
+
(function (SnapshotFilter) {
|
|
912
|
+
SnapshotFilter.filterSensitiveLog = (obj) => ({
|
|
913
|
+
...obj,
|
|
914
|
+
});
|
|
915
|
+
})(SnapshotFilter = exports.SnapshotFilter || (exports.SnapshotFilter = {}));
|
|
916
|
+
var DescribeSnapshotsRequest;
|
|
917
|
+
(function (DescribeSnapshotsRequest) {
|
|
918
|
+
DescribeSnapshotsRequest.filterSensitiveLog = (obj) => ({
|
|
919
|
+
...obj,
|
|
920
|
+
});
|
|
921
|
+
})(DescribeSnapshotsRequest = exports.DescribeSnapshotsRequest || (exports.DescribeSnapshotsRequest = {}));
|
|
862
922
|
var StorageVirtualMachineFilterName;
|
|
863
923
|
(function (StorageVirtualMachineFilterName) {
|
|
864
924
|
StorageVirtualMachineFilterName["FILE_SYSTEM_ID"] = "file-system-id";
|
|
@@ -898,12 +958,6 @@ var DescribeVolumesRequest;
|
|
|
898
958
|
...obj,
|
|
899
959
|
});
|
|
900
960
|
})(DescribeVolumesRequest = exports.DescribeVolumesRequest || (exports.DescribeVolumesRequest = {}));
|
|
901
|
-
var DescribeVolumesResponse;
|
|
902
|
-
(function (DescribeVolumesResponse) {
|
|
903
|
-
DescribeVolumesResponse.filterSensitiveLog = (obj) => ({
|
|
904
|
-
...obj,
|
|
905
|
-
});
|
|
906
|
-
})(DescribeVolumesResponse = exports.DescribeVolumesResponse || (exports.DescribeVolumesResponse = {}));
|
|
907
961
|
var DisassociateFileSystemAliasesRequest;
|
|
908
962
|
(function (DisassociateFileSystemAliasesRequest) {
|
|
909
963
|
DisassociateFileSystemAliasesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -928,24 +982,29 @@ var ListTagsForResourceResponse;
|
|
|
928
982
|
...obj,
|
|
929
983
|
});
|
|
930
984
|
})(ListTagsForResourceResponse = exports.ListTagsForResourceResponse || (exports.ListTagsForResourceResponse = {}));
|
|
931
|
-
var
|
|
932
|
-
(function (
|
|
933
|
-
|
|
985
|
+
var ReleaseFileSystemNfsV3LocksRequest;
|
|
986
|
+
(function (ReleaseFileSystemNfsV3LocksRequest) {
|
|
987
|
+
ReleaseFileSystemNfsV3LocksRequest.filterSensitiveLog = (obj) => ({
|
|
934
988
|
...obj,
|
|
935
989
|
});
|
|
936
|
-
})(
|
|
937
|
-
var
|
|
938
|
-
(function (
|
|
939
|
-
|
|
990
|
+
})(ReleaseFileSystemNfsV3LocksRequest = exports.ReleaseFileSystemNfsV3LocksRequest || (exports.ReleaseFileSystemNfsV3LocksRequest = {}));
|
|
991
|
+
var RestoreOpenZFSVolumeOption;
|
|
992
|
+
(function (RestoreOpenZFSVolumeOption) {
|
|
993
|
+
RestoreOpenZFSVolumeOption["DELETE_CLONED_VOLUMES"] = "DELETE_CLONED_VOLUMES";
|
|
994
|
+
RestoreOpenZFSVolumeOption["DELETE_INTERMEDIATE_SNAPSHOTS"] = "DELETE_INTERMEDIATE_SNAPSHOTS";
|
|
995
|
+
})(RestoreOpenZFSVolumeOption = exports.RestoreOpenZFSVolumeOption || (exports.RestoreOpenZFSVolumeOption = {}));
|
|
996
|
+
var RestoreVolumeFromSnapshotRequest;
|
|
997
|
+
(function (RestoreVolumeFromSnapshotRequest) {
|
|
998
|
+
RestoreVolumeFromSnapshotRequest.filterSensitiveLog = (obj) => ({
|
|
940
999
|
...obj,
|
|
941
1000
|
});
|
|
942
|
-
})(
|
|
943
|
-
var
|
|
944
|
-
(function (
|
|
945
|
-
|
|
1001
|
+
})(RestoreVolumeFromSnapshotRequest = exports.RestoreVolumeFromSnapshotRequest || (exports.RestoreVolumeFromSnapshotRequest = {}));
|
|
1002
|
+
var RestoreVolumeFromSnapshotResponse;
|
|
1003
|
+
(function (RestoreVolumeFromSnapshotResponse) {
|
|
1004
|
+
RestoreVolumeFromSnapshotResponse.filterSensitiveLog = (obj) => ({
|
|
946
1005
|
...obj,
|
|
947
1006
|
});
|
|
948
|
-
})(
|
|
1007
|
+
})(RestoreVolumeFromSnapshotResponse = exports.RestoreVolumeFromSnapshotResponse || (exports.RestoreVolumeFromSnapshotResponse = {}));
|
|
949
1008
|
var TagResourceRequest;
|
|
950
1009
|
(function (TagResourceRequest) {
|
|
951
1010
|
TagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -970,6 +1029,18 @@ var UntagResourceResponse;
|
|
|
970
1029
|
...obj,
|
|
971
1030
|
});
|
|
972
1031
|
})(UntagResourceResponse = exports.UntagResourceResponse || (exports.UntagResourceResponse = {}));
|
|
1032
|
+
var UpdateDataRepositoryAssociationRequest;
|
|
1033
|
+
(function (UpdateDataRepositoryAssociationRequest) {
|
|
1034
|
+
UpdateDataRepositoryAssociationRequest.filterSensitiveLog = (obj) => ({
|
|
1035
|
+
...obj,
|
|
1036
|
+
});
|
|
1037
|
+
})(UpdateDataRepositoryAssociationRequest = exports.UpdateDataRepositoryAssociationRequest || (exports.UpdateDataRepositoryAssociationRequest = {}));
|
|
1038
|
+
var UpdateDataRepositoryAssociationResponse;
|
|
1039
|
+
(function (UpdateDataRepositoryAssociationResponse) {
|
|
1040
|
+
UpdateDataRepositoryAssociationResponse.filterSensitiveLog = (obj) => ({
|
|
1041
|
+
...obj,
|
|
1042
|
+
});
|
|
1043
|
+
})(UpdateDataRepositoryAssociationResponse = exports.UpdateDataRepositoryAssociationResponse || (exports.UpdateDataRepositoryAssociationResponse = {}));
|
|
973
1044
|
var UpdateFileSystemLustreConfiguration;
|
|
974
1045
|
(function (UpdateFileSystemLustreConfiguration) {
|
|
975
1046
|
UpdateFileSystemLustreConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -983,6 +1054,12 @@ var UpdateFileSystemOntapConfiguration;
|
|
|
983
1054
|
...(obj.FsxAdminPassword && { FsxAdminPassword: smithy_client_1.SENSITIVE_STRING }),
|
|
984
1055
|
});
|
|
985
1056
|
})(UpdateFileSystemOntapConfiguration = exports.UpdateFileSystemOntapConfiguration || (exports.UpdateFileSystemOntapConfiguration = {}));
|
|
1057
|
+
var UpdateFileSystemOpenZFSConfiguration;
|
|
1058
|
+
(function (UpdateFileSystemOpenZFSConfiguration) {
|
|
1059
|
+
UpdateFileSystemOpenZFSConfiguration.filterSensitiveLog = (obj) => ({
|
|
1060
|
+
...obj,
|
|
1061
|
+
});
|
|
1062
|
+
})(UpdateFileSystemOpenZFSConfiguration = exports.UpdateFileSystemOpenZFSConfiguration || (exports.UpdateFileSystemOpenZFSConfiguration = {}));
|
|
986
1063
|
var SelfManagedActiveDirectoryConfigurationUpdates;
|
|
987
1064
|
(function (SelfManagedActiveDirectoryConfigurationUpdates) {
|
|
988
1065
|
SelfManagedActiveDirectoryConfigurationUpdates.filterSensitiveLog = (obj) => ({
|
|
@@ -1011,6 +1088,12 @@ var UpdateFileSystemRequest;
|
|
|
1011
1088
|
}),
|
|
1012
1089
|
});
|
|
1013
1090
|
})(UpdateFileSystemRequest = exports.UpdateFileSystemRequest || (exports.UpdateFileSystemRequest = {}));
|
|
1091
|
+
var UpdateSnapshotRequest;
|
|
1092
|
+
(function (UpdateSnapshotRequest) {
|
|
1093
|
+
UpdateSnapshotRequest.filterSensitiveLog = (obj) => ({
|
|
1094
|
+
...obj,
|
|
1095
|
+
});
|
|
1096
|
+
})(UpdateSnapshotRequest = exports.UpdateSnapshotRequest || (exports.UpdateSnapshotRequest = {}));
|
|
1014
1097
|
var UpdateSvmActiveDirectoryConfiguration;
|
|
1015
1098
|
(function (UpdateSvmActiveDirectoryConfiguration) {
|
|
1016
1099
|
UpdateSvmActiveDirectoryConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -1042,18 +1125,18 @@ var UpdateOntapVolumeConfiguration;
|
|
|
1042
1125
|
...obj,
|
|
1043
1126
|
});
|
|
1044
1127
|
})(UpdateOntapVolumeConfiguration = exports.UpdateOntapVolumeConfiguration || (exports.UpdateOntapVolumeConfiguration = {}));
|
|
1128
|
+
var UpdateOpenZFSVolumeConfiguration;
|
|
1129
|
+
(function (UpdateOpenZFSVolumeConfiguration) {
|
|
1130
|
+
UpdateOpenZFSVolumeConfiguration.filterSensitiveLog = (obj) => ({
|
|
1131
|
+
...obj,
|
|
1132
|
+
});
|
|
1133
|
+
})(UpdateOpenZFSVolumeConfiguration = exports.UpdateOpenZFSVolumeConfiguration || (exports.UpdateOpenZFSVolumeConfiguration = {}));
|
|
1045
1134
|
var UpdateVolumeRequest;
|
|
1046
1135
|
(function (UpdateVolumeRequest) {
|
|
1047
1136
|
UpdateVolumeRequest.filterSensitiveLog = (obj) => ({
|
|
1048
1137
|
...obj,
|
|
1049
1138
|
});
|
|
1050
1139
|
})(UpdateVolumeRequest = exports.UpdateVolumeRequest || (exports.UpdateVolumeRequest = {}));
|
|
1051
|
-
var UpdateVolumeResponse;
|
|
1052
|
-
(function (UpdateVolumeResponse) {
|
|
1053
|
-
UpdateVolumeResponse.filterSensitiveLog = (obj) => ({
|
|
1054
|
-
...obj,
|
|
1055
|
-
});
|
|
1056
|
-
})(UpdateVolumeResponse = exports.UpdateVolumeResponse || (exports.UpdateVolumeResponse = {}));
|
|
1057
1140
|
var AdministrativeAction;
|
|
1058
1141
|
(function (AdministrativeAction) {
|
|
1059
1142
|
AdministrativeAction.filterSensitiveLog = (obj) => ({
|
|
@@ -1066,12 +1149,18 @@ var FileSystem;
|
|
|
1066
1149
|
...obj,
|
|
1067
1150
|
});
|
|
1068
1151
|
})(FileSystem = exports.FileSystem || (exports.FileSystem = {}));
|
|
1069
|
-
var
|
|
1070
|
-
(function (
|
|
1071
|
-
|
|
1152
|
+
var Snapshot;
|
|
1153
|
+
(function (Snapshot) {
|
|
1154
|
+
Snapshot.filterSensitiveLog = (obj) => ({
|
|
1072
1155
|
...obj,
|
|
1073
1156
|
});
|
|
1074
|
-
})(
|
|
1157
|
+
})(Snapshot = exports.Snapshot || (exports.Snapshot = {}));
|
|
1158
|
+
var Volume;
|
|
1159
|
+
(function (Volume) {
|
|
1160
|
+
Volume.filterSensitiveLog = (obj) => ({
|
|
1161
|
+
...obj,
|
|
1162
|
+
});
|
|
1163
|
+
})(Volume = exports.Volume || (exports.Volume = {}));
|
|
1075
1164
|
var CreateFileSystemFromBackupResponse;
|
|
1076
1165
|
(function (CreateFileSystemFromBackupResponse) {
|
|
1077
1166
|
CreateFileSystemFromBackupResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -1084,12 +1173,72 @@ var CreateFileSystemResponse;
|
|
|
1084
1173
|
...obj,
|
|
1085
1174
|
});
|
|
1086
1175
|
})(CreateFileSystemResponse = exports.CreateFileSystemResponse || (exports.CreateFileSystemResponse = {}));
|
|
1176
|
+
var CreateSnapshotResponse;
|
|
1177
|
+
(function (CreateSnapshotResponse) {
|
|
1178
|
+
CreateSnapshotResponse.filterSensitiveLog = (obj) => ({
|
|
1179
|
+
...obj,
|
|
1180
|
+
});
|
|
1181
|
+
})(CreateSnapshotResponse = exports.CreateSnapshotResponse || (exports.CreateSnapshotResponse = {}));
|
|
1182
|
+
var CreateVolumeFromBackupResponse;
|
|
1183
|
+
(function (CreateVolumeFromBackupResponse) {
|
|
1184
|
+
CreateVolumeFromBackupResponse.filterSensitiveLog = (obj) => ({
|
|
1185
|
+
...obj,
|
|
1186
|
+
});
|
|
1187
|
+
})(CreateVolumeFromBackupResponse = exports.CreateVolumeFromBackupResponse || (exports.CreateVolumeFromBackupResponse = {}));
|
|
1188
|
+
var CreateVolumeResponse;
|
|
1189
|
+
(function (CreateVolumeResponse) {
|
|
1190
|
+
CreateVolumeResponse.filterSensitiveLog = (obj) => ({
|
|
1191
|
+
...obj,
|
|
1192
|
+
});
|
|
1193
|
+
})(CreateVolumeResponse = exports.CreateVolumeResponse || (exports.CreateVolumeResponse = {}));
|
|
1194
|
+
var ReleaseFileSystemNfsV3LocksResponse;
|
|
1195
|
+
(function (ReleaseFileSystemNfsV3LocksResponse) {
|
|
1196
|
+
ReleaseFileSystemNfsV3LocksResponse.filterSensitiveLog = (obj) => ({
|
|
1197
|
+
...obj,
|
|
1198
|
+
});
|
|
1199
|
+
})(ReleaseFileSystemNfsV3LocksResponse = exports.ReleaseFileSystemNfsV3LocksResponse || (exports.ReleaseFileSystemNfsV3LocksResponse = {}));
|
|
1087
1200
|
var UpdateFileSystemResponse;
|
|
1088
1201
|
(function (UpdateFileSystemResponse) {
|
|
1089
1202
|
UpdateFileSystemResponse.filterSensitiveLog = (obj) => ({
|
|
1090
1203
|
...obj,
|
|
1091
1204
|
});
|
|
1092
1205
|
})(UpdateFileSystemResponse = exports.UpdateFileSystemResponse || (exports.UpdateFileSystemResponse = {}));
|
|
1206
|
+
var UpdateSnapshotResponse;
|
|
1207
|
+
(function (UpdateSnapshotResponse) {
|
|
1208
|
+
UpdateSnapshotResponse.filterSensitiveLog = (obj) => ({
|
|
1209
|
+
...obj,
|
|
1210
|
+
});
|
|
1211
|
+
})(UpdateSnapshotResponse = exports.UpdateSnapshotResponse || (exports.UpdateSnapshotResponse = {}));
|
|
1212
|
+
var UpdateVolumeResponse;
|
|
1213
|
+
(function (UpdateVolumeResponse) {
|
|
1214
|
+
UpdateVolumeResponse.filterSensitiveLog = (obj) => ({
|
|
1215
|
+
...obj,
|
|
1216
|
+
});
|
|
1217
|
+
})(UpdateVolumeResponse = exports.UpdateVolumeResponse || (exports.UpdateVolumeResponse = {}));
|
|
1218
|
+
var DescribeFileSystemsResponse;
|
|
1219
|
+
(function (DescribeFileSystemsResponse) {
|
|
1220
|
+
DescribeFileSystemsResponse.filterSensitiveLog = (obj) => ({
|
|
1221
|
+
...obj,
|
|
1222
|
+
});
|
|
1223
|
+
})(DescribeFileSystemsResponse = exports.DescribeFileSystemsResponse || (exports.DescribeFileSystemsResponse = {}));
|
|
1224
|
+
var DescribeSnapshotsResponse;
|
|
1225
|
+
(function (DescribeSnapshotsResponse) {
|
|
1226
|
+
DescribeSnapshotsResponse.filterSensitiveLog = (obj) => ({
|
|
1227
|
+
...obj,
|
|
1228
|
+
});
|
|
1229
|
+
})(DescribeSnapshotsResponse = exports.DescribeSnapshotsResponse || (exports.DescribeSnapshotsResponse = {}));
|
|
1230
|
+
var DescribeVolumesResponse;
|
|
1231
|
+
(function (DescribeVolumesResponse) {
|
|
1232
|
+
DescribeVolumesResponse.filterSensitiveLog = (obj) => ({
|
|
1233
|
+
...obj,
|
|
1234
|
+
});
|
|
1235
|
+
})(DescribeVolumesResponse = exports.DescribeVolumesResponse || (exports.DescribeVolumesResponse = {}));
|
|
1236
|
+
var Backup;
|
|
1237
|
+
(function (Backup) {
|
|
1238
|
+
Backup.filterSensitiveLog = (obj) => ({
|
|
1239
|
+
...obj,
|
|
1240
|
+
});
|
|
1241
|
+
})(Backup = exports.Backup || (exports.Backup = {}));
|
|
1093
1242
|
var CopyBackupResponse;
|
|
1094
1243
|
(function (CopyBackupResponse) {
|
|
1095
1244
|
CopyBackupResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -1102,12 +1251,6 @@ var CreateBackupResponse;
|
|
|
1102
1251
|
...obj,
|
|
1103
1252
|
});
|
|
1104
1253
|
})(CreateBackupResponse = exports.CreateBackupResponse || (exports.CreateBackupResponse = {}));
|
|
1105
|
-
var DescribeFileSystemsResponse;
|
|
1106
|
-
(function (DescribeFileSystemsResponse) {
|
|
1107
|
-
DescribeFileSystemsResponse.filterSensitiveLog = (obj) => ({
|
|
1108
|
-
...obj,
|
|
1109
|
-
});
|
|
1110
|
-
})(DescribeFileSystemsResponse = exports.DescribeFileSystemsResponse || (exports.DescribeFileSystemsResponse = {}));
|
|
1111
1254
|
var DescribeBackupsResponse;
|
|
1112
1255
|
(function (DescribeBackupsResponse) {
|
|
1113
1256
|
DescribeBackupsResponse.filterSensitiveLog = (obj) => ({
|