@aws-sdk/client-fsx 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +293 -347
- package/dist-es/models/models_0.js +293 -347
- package/dist-types/models/models_0.d.ts +563 -293
- package/dist-types/ts3.4/models/models_0.d.ts +388 -293
- package/package.json +34 -34
|
@@ -5,12 +5,14 @@ export interface ActiveDirectoryBackupAttributes {
|
|
|
5
5
|
ActiveDirectoryId?: string;
|
|
6
6
|
ResourceARN?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare
|
|
9
|
-
DOMAIN_NOT_FOUND
|
|
10
|
-
INCOMPATIBLE_DOMAIN_MODE
|
|
11
|
-
INVALID_DOMAIN_STAGE
|
|
12
|
-
WRONG_VPC
|
|
13
|
-
}
|
|
8
|
+
export declare const ActiveDirectoryErrorType: {
|
|
9
|
+
readonly DOMAIN_NOT_FOUND: "DOMAIN_NOT_FOUND";
|
|
10
|
+
readonly INCOMPATIBLE_DOMAIN_MODE: "INCOMPATIBLE_DOMAIN_MODE";
|
|
11
|
+
readonly INVALID_DOMAIN_STAGE: "INVALID_DOMAIN_STAGE";
|
|
12
|
+
readonly WRONG_VPC: "WRONG_VPC";
|
|
13
|
+
};
|
|
14
|
+
export type ActiveDirectoryErrorType =
|
|
15
|
+
(typeof ActiveDirectoryErrorType)[keyof typeof ActiveDirectoryErrorType];
|
|
14
16
|
export declare class ActiveDirectoryError extends __BaseException {
|
|
15
17
|
readonly name: "ActiveDirectoryError";
|
|
16
18
|
readonly $fault: "client";
|
|
@@ -21,65 +23,78 @@ export declare class ActiveDirectoryError extends __BaseException {
|
|
|
21
23
|
opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>
|
|
22
24
|
);
|
|
23
25
|
}
|
|
24
|
-
export declare
|
|
25
|
-
FILE_SYSTEM_ALIAS_ASSOCIATION
|
|
26
|
-
FILE_SYSTEM_ALIAS_DISASSOCIATION
|
|
27
|
-
FILE_SYSTEM_UPDATE
|
|
28
|
-
RELEASE_NFS_V3_LOCKS
|
|
29
|
-
SNAPSHOT_UPDATE
|
|
30
|
-
STORAGE_OPTIMIZATION
|
|
31
|
-
VOLUME_RESTORE
|
|
32
|
-
VOLUME_UPDATE
|
|
33
|
-
}
|
|
26
|
+
export declare const AdministrativeActionType: {
|
|
27
|
+
readonly FILE_SYSTEM_ALIAS_ASSOCIATION: "FILE_SYSTEM_ALIAS_ASSOCIATION";
|
|
28
|
+
readonly FILE_SYSTEM_ALIAS_DISASSOCIATION: "FILE_SYSTEM_ALIAS_DISASSOCIATION";
|
|
29
|
+
readonly FILE_SYSTEM_UPDATE: "FILE_SYSTEM_UPDATE";
|
|
30
|
+
readonly RELEASE_NFS_V3_LOCKS: "RELEASE_NFS_V3_LOCKS";
|
|
31
|
+
readonly SNAPSHOT_UPDATE: "SNAPSHOT_UPDATE";
|
|
32
|
+
readonly STORAGE_OPTIMIZATION: "STORAGE_OPTIMIZATION";
|
|
33
|
+
readonly VOLUME_RESTORE: "VOLUME_RESTORE";
|
|
34
|
+
readonly VOLUME_UPDATE: "VOLUME_UPDATE";
|
|
35
|
+
};
|
|
36
|
+
export type AdministrativeActionType =
|
|
37
|
+
(typeof AdministrativeActionType)[keyof typeof AdministrativeActionType];
|
|
34
38
|
export interface AdministrativeActionFailureDetails {
|
|
35
39
|
Message?: string;
|
|
36
40
|
}
|
|
37
|
-
export declare
|
|
38
|
-
COMPLETED
|
|
39
|
-
FAILED
|
|
40
|
-
IN_PROGRESS
|
|
41
|
-
PENDING
|
|
42
|
-
UPDATED_OPTIMIZING
|
|
43
|
-
}
|
|
41
|
+
export declare const Status: {
|
|
42
|
+
readonly COMPLETED: "COMPLETED";
|
|
43
|
+
readonly FAILED: "FAILED";
|
|
44
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
45
|
+
readonly PENDING: "PENDING";
|
|
46
|
+
readonly UPDATED_OPTIMIZING: "UPDATED_OPTIMIZING";
|
|
47
|
+
};
|
|
48
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
44
49
|
export interface FileSystemFailureDetails {
|
|
45
50
|
Message?: string;
|
|
46
51
|
}
|
|
47
|
-
export declare
|
|
48
|
-
LUSTRE
|
|
49
|
-
ONTAP
|
|
50
|
-
OPENZFS
|
|
51
|
-
WINDOWS
|
|
52
|
-
}
|
|
53
|
-
export
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
export declare
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
52
|
+
export declare const FileSystemType: {
|
|
53
|
+
readonly LUSTRE: "LUSTRE";
|
|
54
|
+
readonly ONTAP: "ONTAP";
|
|
55
|
+
readonly OPENZFS: "OPENZFS";
|
|
56
|
+
readonly WINDOWS: "WINDOWS";
|
|
57
|
+
};
|
|
58
|
+
export type FileSystemType =
|
|
59
|
+
(typeof FileSystemType)[keyof typeof FileSystemType];
|
|
60
|
+
export declare const FileSystemLifecycle: {
|
|
61
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
62
|
+
readonly CREATING: "CREATING";
|
|
63
|
+
readonly DELETING: "DELETING";
|
|
64
|
+
readonly FAILED: "FAILED";
|
|
65
|
+
readonly MISCONFIGURED: "MISCONFIGURED";
|
|
66
|
+
readonly MISCONFIGURED_UNAVAILABLE: "MISCONFIGURED_UNAVAILABLE";
|
|
67
|
+
readonly UPDATING: "UPDATING";
|
|
68
|
+
};
|
|
69
|
+
export type FileSystemLifecycle =
|
|
70
|
+
(typeof FileSystemLifecycle)[keyof typeof FileSystemLifecycle];
|
|
71
|
+
export declare const DataCompressionType: {
|
|
72
|
+
readonly LZ4: "LZ4";
|
|
73
|
+
readonly NONE: "NONE";
|
|
74
|
+
};
|
|
75
|
+
export type DataCompressionType =
|
|
76
|
+
(typeof DataCompressionType)[keyof typeof DataCompressionType];
|
|
77
|
+
export declare const AutoImportPolicyType: {
|
|
78
|
+
readonly NEW: "NEW";
|
|
79
|
+
readonly NEW_CHANGED: "NEW_CHANGED";
|
|
80
|
+
readonly NEW_CHANGED_DELETED: "NEW_CHANGED_DELETED";
|
|
81
|
+
readonly NONE: "NONE";
|
|
82
|
+
};
|
|
83
|
+
export type AutoImportPolicyType =
|
|
84
|
+
(typeof AutoImportPolicyType)[keyof typeof AutoImportPolicyType];
|
|
72
85
|
export interface DataRepositoryFailureDetails {
|
|
73
86
|
Message?: string;
|
|
74
87
|
}
|
|
75
|
-
export declare
|
|
76
|
-
AVAILABLE
|
|
77
|
-
CREATING
|
|
78
|
-
DELETING
|
|
79
|
-
FAILED
|
|
80
|
-
MISCONFIGURED
|
|
81
|
-
UPDATING
|
|
82
|
-
}
|
|
88
|
+
export declare const DataRepositoryLifecycle: {
|
|
89
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
90
|
+
readonly CREATING: "CREATING";
|
|
91
|
+
readonly DELETING: "DELETING";
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
readonly MISCONFIGURED: "MISCONFIGURED";
|
|
94
|
+
readonly UPDATING: "UPDATING";
|
|
95
|
+
};
|
|
96
|
+
export type DataRepositoryLifecycle =
|
|
97
|
+
(typeof DataRepositoryLifecycle)[keyof typeof DataRepositoryLifecycle];
|
|
83
98
|
export interface DataRepositoryConfiguration {
|
|
84
99
|
Lifecycle?: DataRepositoryLifecycle | string;
|
|
85
100
|
ImportPath?: string;
|
|
@@ -88,22 +103,28 @@ export interface DataRepositoryConfiguration {
|
|
|
88
103
|
AutoImportPolicy?: AutoImportPolicyType | string;
|
|
89
104
|
FailureDetails?: DataRepositoryFailureDetails;
|
|
90
105
|
}
|
|
91
|
-
export declare
|
|
92
|
-
PERSISTENT_1
|
|
93
|
-
PERSISTENT_2
|
|
94
|
-
SCRATCH_1
|
|
95
|
-
SCRATCH_2
|
|
96
|
-
}
|
|
97
|
-
export
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
106
|
+
export declare const LustreDeploymentType: {
|
|
107
|
+
readonly PERSISTENT_1: "PERSISTENT_1";
|
|
108
|
+
readonly PERSISTENT_2: "PERSISTENT_2";
|
|
109
|
+
readonly SCRATCH_1: "SCRATCH_1";
|
|
110
|
+
readonly SCRATCH_2: "SCRATCH_2";
|
|
111
|
+
};
|
|
112
|
+
export type LustreDeploymentType =
|
|
113
|
+
(typeof LustreDeploymentType)[keyof typeof LustreDeploymentType];
|
|
114
|
+
export declare const DriveCacheType: {
|
|
115
|
+
readonly NONE: "NONE";
|
|
116
|
+
readonly READ: "READ";
|
|
117
|
+
};
|
|
118
|
+
export type DriveCacheType =
|
|
119
|
+
(typeof DriveCacheType)[keyof typeof DriveCacheType];
|
|
120
|
+
export declare const LustreAccessAuditLogLevel: {
|
|
121
|
+
readonly DISABLED: "DISABLED";
|
|
122
|
+
readonly ERROR_ONLY: "ERROR_ONLY";
|
|
123
|
+
readonly WARN_ERROR: "WARN_ERROR";
|
|
124
|
+
readonly WARN_ONLY: "WARN_ONLY";
|
|
125
|
+
};
|
|
126
|
+
export type LustreAccessAuditLogLevel =
|
|
127
|
+
(typeof LustreAccessAuditLogLevel)[keyof typeof LustreAccessAuditLogLevel];
|
|
107
128
|
export interface LustreLogConfiguration {
|
|
108
129
|
Level: LustreAccessAuditLogLevel | string | undefined;
|
|
109
130
|
Destination?: string;
|
|
@@ -126,14 +147,18 @@ export interface LustreFileSystemConfiguration {
|
|
|
126
147
|
LogConfiguration?: LustreLogConfiguration;
|
|
127
148
|
RootSquashConfiguration?: LustreRootSquashConfiguration;
|
|
128
149
|
}
|
|
129
|
-
export declare
|
|
130
|
-
MULTI_AZ_1
|
|
131
|
-
SINGLE_AZ_1
|
|
132
|
-
}
|
|
133
|
-
export
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
150
|
+
export declare const OntapDeploymentType: {
|
|
151
|
+
readonly MULTI_AZ_1: "MULTI_AZ_1";
|
|
152
|
+
readonly SINGLE_AZ_1: "SINGLE_AZ_1";
|
|
153
|
+
};
|
|
154
|
+
export type OntapDeploymentType =
|
|
155
|
+
(typeof OntapDeploymentType)[keyof typeof OntapDeploymentType];
|
|
156
|
+
export declare const DiskIopsConfigurationMode: {
|
|
157
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
158
|
+
readonly USER_PROVISIONED: "USER_PROVISIONED";
|
|
159
|
+
};
|
|
160
|
+
export type DiskIopsConfigurationMode =
|
|
161
|
+
(typeof DiskIopsConfigurationMode)[keyof typeof DiskIopsConfigurationMode];
|
|
137
162
|
export interface DiskIopsConfiguration {
|
|
138
163
|
Mode?: DiskIopsConfigurationMode | string;
|
|
139
164
|
Iops?: number;
|
|
@@ -158,10 +183,12 @@ export interface OntapFileSystemConfiguration {
|
|
|
158
183
|
ThroughputCapacity?: number;
|
|
159
184
|
WeeklyMaintenanceStartTime?: string;
|
|
160
185
|
}
|
|
161
|
-
export declare
|
|
162
|
-
SINGLE_AZ_1
|
|
163
|
-
SINGLE_AZ_2
|
|
164
|
-
}
|
|
186
|
+
export declare const OpenZFSDeploymentType: {
|
|
187
|
+
readonly SINGLE_AZ_1: "SINGLE_AZ_1";
|
|
188
|
+
readonly SINGLE_AZ_2: "SINGLE_AZ_2";
|
|
189
|
+
};
|
|
190
|
+
export type OpenZFSDeploymentType =
|
|
191
|
+
(typeof OpenZFSDeploymentType)[keyof typeof OpenZFSDeploymentType];
|
|
165
192
|
export interface OpenZFSFileSystemConfiguration {
|
|
166
193
|
AutomaticBackupRetentionDays?: number;
|
|
167
194
|
CopyTagsToBackups?: boolean;
|
|
@@ -173,45 +200,54 @@ export interface OpenZFSFileSystemConfiguration {
|
|
|
173
200
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
174
201
|
RootVolumeId?: string;
|
|
175
202
|
}
|
|
176
|
-
export declare
|
|
177
|
-
HDD
|
|
178
|
-
SSD
|
|
179
|
-
}
|
|
203
|
+
export declare const StorageType: {
|
|
204
|
+
readonly HDD: "HDD";
|
|
205
|
+
readonly SSD: "SSD";
|
|
206
|
+
};
|
|
207
|
+
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
180
208
|
export interface Tag {
|
|
181
209
|
Key: string | undefined;
|
|
182
210
|
Value: string | undefined;
|
|
183
211
|
}
|
|
184
|
-
export declare
|
|
185
|
-
AVAILABLE
|
|
186
|
-
CREATE_FAILED
|
|
187
|
-
CREATING
|
|
188
|
-
DELETE_FAILED
|
|
189
|
-
DELETING
|
|
190
|
-
}
|
|
212
|
+
export declare const AliasLifecycle: {
|
|
213
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
214
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
215
|
+
readonly CREATING: "CREATING";
|
|
216
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
217
|
+
readonly DELETING: "DELETING";
|
|
218
|
+
};
|
|
219
|
+
export type AliasLifecycle =
|
|
220
|
+
(typeof AliasLifecycle)[keyof typeof AliasLifecycle];
|
|
191
221
|
export interface Alias {
|
|
192
222
|
Name?: string;
|
|
193
223
|
Lifecycle?: AliasLifecycle | string;
|
|
194
224
|
}
|
|
195
|
-
export declare
|
|
196
|
-
DISABLED
|
|
197
|
-
FAILURE_ONLY
|
|
198
|
-
SUCCESS_AND_FAILURE
|
|
199
|
-
SUCCESS_ONLY
|
|
200
|
-
}
|
|
225
|
+
export declare const WindowsAccessAuditLogLevel: {
|
|
226
|
+
readonly DISABLED: "DISABLED";
|
|
227
|
+
readonly FAILURE_ONLY: "FAILURE_ONLY";
|
|
228
|
+
readonly SUCCESS_AND_FAILURE: "SUCCESS_AND_FAILURE";
|
|
229
|
+
readonly SUCCESS_ONLY: "SUCCESS_ONLY";
|
|
230
|
+
};
|
|
231
|
+
export type WindowsAccessAuditLogLevel =
|
|
232
|
+
(typeof WindowsAccessAuditLogLevel)[keyof typeof WindowsAccessAuditLogLevel];
|
|
201
233
|
export interface WindowsAuditLogConfiguration {
|
|
202
234
|
FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
|
|
203
235
|
FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
|
|
204
236
|
AuditLogDestination?: string;
|
|
205
237
|
}
|
|
206
|
-
export declare
|
|
207
|
-
MULTI_AZ_1
|
|
208
|
-
SINGLE_AZ_1
|
|
209
|
-
SINGLE_AZ_2
|
|
210
|
-
}
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
238
|
+
export declare const WindowsDeploymentType: {
|
|
239
|
+
readonly MULTI_AZ_1: "MULTI_AZ_1";
|
|
240
|
+
readonly SINGLE_AZ_1: "SINGLE_AZ_1";
|
|
241
|
+
readonly SINGLE_AZ_2: "SINGLE_AZ_2";
|
|
242
|
+
};
|
|
243
|
+
export type WindowsDeploymentType =
|
|
244
|
+
(typeof WindowsDeploymentType)[keyof typeof WindowsDeploymentType];
|
|
245
|
+
export declare const FileSystemMaintenanceOperation: {
|
|
246
|
+
readonly BACKING_UP: "BACKING_UP";
|
|
247
|
+
readonly PATCHING: "PATCHING";
|
|
248
|
+
};
|
|
249
|
+
export type FileSystemMaintenanceOperation =
|
|
250
|
+
(typeof FileSystemMaintenanceOperation)[keyof typeof FileSystemMaintenanceOperation];
|
|
215
251
|
export interface SelfManagedActiveDirectoryAttributes {
|
|
216
252
|
DomainName?: string;
|
|
217
253
|
OrganizationalUnitDistinguishedName?: string;
|
|
@@ -235,45 +271,56 @@ export interface WindowsFileSystemConfiguration {
|
|
|
235
271
|
Aliases?: Alias[];
|
|
236
272
|
AuditLogConfiguration?: WindowsAuditLogConfiguration;
|
|
237
273
|
}
|
|
238
|
-
export declare
|
|
239
|
-
AVAILABLE
|
|
240
|
-
CREATING
|
|
241
|
-
DELETING
|
|
242
|
-
PENDING
|
|
243
|
-
}
|
|
274
|
+
export declare const SnapshotLifecycle: {
|
|
275
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
276
|
+
readonly CREATING: "CREATING";
|
|
277
|
+
readonly DELETING: "DELETING";
|
|
278
|
+
readonly PENDING: "PENDING";
|
|
279
|
+
};
|
|
280
|
+
export type SnapshotLifecycle =
|
|
281
|
+
(typeof SnapshotLifecycle)[keyof typeof SnapshotLifecycle];
|
|
244
282
|
export interface LifecycleTransitionReason {
|
|
245
283
|
Message?: string;
|
|
246
284
|
}
|
|
247
|
-
export declare
|
|
248
|
-
AVAILABLE
|
|
249
|
-
CREATED
|
|
250
|
-
CREATING
|
|
251
|
-
DELETING
|
|
252
|
-
FAILED
|
|
253
|
-
MISCONFIGURED
|
|
254
|
-
PENDING
|
|
255
|
-
}
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
}
|
|
285
|
+
export declare const VolumeLifecycle: {
|
|
286
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
287
|
+
readonly CREATED: "CREATED";
|
|
288
|
+
readonly CREATING: "CREATING";
|
|
289
|
+
readonly DELETING: "DELETING";
|
|
290
|
+
readonly FAILED: "FAILED";
|
|
291
|
+
readonly MISCONFIGURED: "MISCONFIGURED";
|
|
292
|
+
readonly PENDING: "PENDING";
|
|
293
|
+
};
|
|
294
|
+
export type VolumeLifecycle =
|
|
295
|
+
(typeof VolumeLifecycle)[keyof typeof VolumeLifecycle];
|
|
296
|
+
export declare const FlexCacheEndpointType: {
|
|
297
|
+
readonly CACHE: "CACHE";
|
|
298
|
+
readonly NONE: "NONE";
|
|
299
|
+
readonly ORIGIN: "ORIGIN";
|
|
300
|
+
};
|
|
301
|
+
export type FlexCacheEndpointType =
|
|
302
|
+
(typeof FlexCacheEndpointType)[keyof typeof FlexCacheEndpointType];
|
|
303
|
+
export declare const OntapVolumeType: {
|
|
304
|
+
readonly DP: "DP";
|
|
305
|
+
readonly LS: "LS";
|
|
306
|
+
readonly RW: "RW";
|
|
307
|
+
};
|
|
308
|
+
export type OntapVolumeType =
|
|
309
|
+
(typeof OntapVolumeType)[keyof typeof OntapVolumeType];
|
|
310
|
+
export declare const SecurityStyle: {
|
|
311
|
+
readonly MIXED: "MIXED";
|
|
312
|
+
readonly NTFS: "NTFS";
|
|
313
|
+
readonly UNIX: "UNIX";
|
|
314
|
+
};
|
|
315
|
+
export type SecurityStyle = (typeof SecurityStyle)[keyof typeof SecurityStyle];
|
|
316
|
+
export declare const TieringPolicyName: {
|
|
317
|
+
readonly ALL: "ALL";
|
|
318
|
+
readonly AUTO: "AUTO";
|
|
319
|
+
readonly NONE: "NONE";
|
|
320
|
+
readonly SNAPSHOT_ONLY: "SNAPSHOT_ONLY";
|
|
321
|
+
};
|
|
322
|
+
export type TieringPolicyName =
|
|
323
|
+
(typeof TieringPolicyName)[keyof typeof TieringPolicyName];
|
|
277
324
|
export interface TieringPolicy {
|
|
278
325
|
CoolingPeriod?: number;
|
|
279
326
|
Name?: TieringPolicyName | string;
|
|
@@ -292,11 +339,13 @@ export interface OntapVolumeConfiguration {
|
|
|
292
339
|
SnapshotPolicy?: string;
|
|
293
340
|
CopyTagsToBackups?: boolean;
|
|
294
341
|
}
|
|
295
|
-
export declare
|
|
296
|
-
LZ4
|
|
297
|
-
NONE
|
|
298
|
-
ZSTD
|
|
299
|
-
}
|
|
342
|
+
export declare const OpenZFSDataCompressionType: {
|
|
343
|
+
readonly LZ4: "LZ4";
|
|
344
|
+
readonly NONE: "NONE";
|
|
345
|
+
readonly ZSTD: "ZSTD";
|
|
346
|
+
};
|
|
347
|
+
export type OpenZFSDataCompressionType =
|
|
348
|
+
(typeof OpenZFSDataCompressionType)[keyof typeof OpenZFSDataCompressionType];
|
|
300
349
|
export interface OpenZFSClientConfiguration {
|
|
301
350
|
Clients: string | undefined;
|
|
302
351
|
Options: string[] | undefined;
|
|
@@ -304,18 +353,22 @@ export interface OpenZFSClientConfiguration {
|
|
|
304
353
|
export interface OpenZFSNfsExport {
|
|
305
354
|
ClientConfigurations: OpenZFSClientConfiguration[] | undefined;
|
|
306
355
|
}
|
|
307
|
-
export declare
|
|
308
|
-
CLONE
|
|
309
|
-
FULL_COPY
|
|
310
|
-
}
|
|
356
|
+
export declare const OpenZFSCopyStrategy: {
|
|
357
|
+
readonly CLONE: "CLONE";
|
|
358
|
+
readonly FULL_COPY: "FULL_COPY";
|
|
359
|
+
};
|
|
360
|
+
export type OpenZFSCopyStrategy =
|
|
361
|
+
(typeof OpenZFSCopyStrategy)[keyof typeof OpenZFSCopyStrategy];
|
|
311
362
|
export interface OpenZFSOriginSnapshotConfiguration {
|
|
312
363
|
SnapshotARN?: string;
|
|
313
364
|
CopyStrategy?: OpenZFSCopyStrategy | string;
|
|
314
365
|
}
|
|
315
|
-
export declare
|
|
316
|
-
GROUP
|
|
317
|
-
USER
|
|
318
|
-
}
|
|
366
|
+
export declare const OpenZFSQuotaType: {
|
|
367
|
+
readonly GROUP: "GROUP";
|
|
368
|
+
readonly USER: "USER";
|
|
369
|
+
};
|
|
370
|
+
export type OpenZFSQuotaType =
|
|
371
|
+
(typeof OpenZFSQuotaType)[keyof typeof OpenZFSQuotaType];
|
|
319
372
|
export interface OpenZFSUserOrGroupQuota {
|
|
320
373
|
Type: OpenZFSQuotaType | string | undefined;
|
|
321
374
|
Id: number | undefined;
|
|
@@ -337,10 +390,11 @@ export interface OpenZFSVolumeConfiguration {
|
|
|
337
390
|
DeleteIntermediateSnaphots?: boolean;
|
|
338
391
|
DeleteClonedVolumes?: boolean;
|
|
339
392
|
}
|
|
340
|
-
export declare
|
|
341
|
-
ONTAP
|
|
342
|
-
OPENZFS
|
|
343
|
-
}
|
|
393
|
+
export declare const VolumeType: {
|
|
394
|
+
readonly ONTAP: "ONTAP";
|
|
395
|
+
readonly OPENZFS: "OPENZFS";
|
|
396
|
+
};
|
|
397
|
+
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
344
398
|
export interface AssociateFileSystemAliasesRequest {
|
|
345
399
|
ClientRequestToken?: string;
|
|
346
400
|
FileSystemId: string | undefined;
|
|
@@ -369,11 +423,12 @@ export declare class InternalServerError extends __BaseException {
|
|
|
369
423
|
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
370
424
|
);
|
|
371
425
|
}
|
|
372
|
-
export declare
|
|
373
|
-
CHANGED
|
|
374
|
-
DELETED
|
|
375
|
-
NEW
|
|
376
|
-
}
|
|
426
|
+
export declare const EventType: {
|
|
427
|
+
readonly CHANGED: "CHANGED";
|
|
428
|
+
readonly DELETED: "DELETED";
|
|
429
|
+
readonly NEW: "NEW";
|
|
430
|
+
};
|
|
431
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
377
432
|
export interface AutoExportPolicy {
|
|
378
433
|
Events?: (EventType | string)[];
|
|
379
434
|
}
|
|
@@ -383,14 +438,16 @@ export interface AutoImportPolicy {
|
|
|
383
438
|
export interface CancelDataRepositoryTaskRequest {
|
|
384
439
|
TaskId: string | undefined;
|
|
385
440
|
}
|
|
386
|
-
export declare
|
|
387
|
-
CANCELED
|
|
388
|
-
CANCELING
|
|
389
|
-
EXECUTING
|
|
390
|
-
FAILED
|
|
391
|
-
PENDING
|
|
392
|
-
SUCCEEDED
|
|
393
|
-
}
|
|
441
|
+
export declare const DataRepositoryTaskLifecycle: {
|
|
442
|
+
readonly CANCELED: "CANCELED";
|
|
443
|
+
readonly CANCELING: "CANCELING";
|
|
444
|
+
readonly EXECUTING: "EXECUTING";
|
|
445
|
+
readonly FAILED: "FAILED";
|
|
446
|
+
readonly PENDING: "PENDING";
|
|
447
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
448
|
+
};
|
|
449
|
+
export type DataRepositoryTaskLifecycle =
|
|
450
|
+
(typeof DataRepositoryTaskLifecycle)[keyof typeof DataRepositoryTaskLifecycle];
|
|
394
451
|
export interface CancelDataRepositoryTaskResponse {
|
|
395
452
|
Lifecycle?: DataRepositoryTaskLifecycle | string;
|
|
396
453
|
TaskId?: string;
|
|
@@ -436,24 +493,28 @@ export interface CopyBackupRequest {
|
|
|
436
493
|
export interface BackupFailureDetails {
|
|
437
494
|
Message?: string;
|
|
438
495
|
}
|
|
439
|
-
export declare
|
|
440
|
-
AVAILABLE
|
|
441
|
-
COPYING
|
|
442
|
-
CREATING
|
|
443
|
-
DELETED
|
|
444
|
-
FAILED
|
|
445
|
-
PENDING
|
|
446
|
-
TRANSFERRING
|
|
447
|
-
}
|
|
448
|
-
export
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
496
|
+
export declare const BackupLifecycle: {
|
|
497
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
498
|
+
readonly COPYING: "COPYING";
|
|
499
|
+
readonly CREATING: "CREATING";
|
|
500
|
+
readonly DELETED: "DELETED";
|
|
501
|
+
readonly FAILED: "FAILED";
|
|
502
|
+
readonly PENDING: "PENDING";
|
|
503
|
+
readonly TRANSFERRING: "TRANSFERRING";
|
|
504
|
+
};
|
|
505
|
+
export type BackupLifecycle =
|
|
506
|
+
(typeof BackupLifecycle)[keyof typeof BackupLifecycle];
|
|
507
|
+
export declare const ResourceType: {
|
|
508
|
+
readonly FILE_SYSTEM: "FILE_SYSTEM";
|
|
509
|
+
readonly VOLUME: "VOLUME";
|
|
510
|
+
};
|
|
511
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
512
|
+
export declare const BackupType: {
|
|
513
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
514
|
+
readonly AWS_BACKUP: "AWS_BACKUP";
|
|
515
|
+
readonly USER_INITIATED: "USER_INITIATED";
|
|
516
|
+
};
|
|
517
|
+
export type BackupType = (typeof BackupType)[keyof typeof BackupType];
|
|
457
518
|
export declare class IncompatibleParameterError extends __BaseException {
|
|
458
519
|
readonly name: "IncompatibleParameterError";
|
|
459
520
|
readonly $fault: "client";
|
|
@@ -493,18 +554,19 @@ export declare class InvalidSourceKmsKey extends __BaseException {
|
|
|
493
554
|
opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>
|
|
494
555
|
);
|
|
495
556
|
}
|
|
496
|
-
export declare
|
|
497
|
-
FILE_CACHE_COUNT
|
|
498
|
-
FILE_SYSTEM_COUNT
|
|
499
|
-
STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM
|
|
500
|
-
TOTAL_IN_PROGRESS_COPY_BACKUPS
|
|
501
|
-
TOTAL_SSD_IOPS
|
|
502
|
-
TOTAL_STORAGE
|
|
503
|
-
TOTAL_THROUGHPUT_CAPACITY
|
|
504
|
-
TOTAL_USER_INITIATED_BACKUPS
|
|
505
|
-
TOTAL_USER_TAGS
|
|
506
|
-
VOLUMES_PER_FILE_SYSTEM
|
|
507
|
-
}
|
|
557
|
+
export declare const ServiceLimit: {
|
|
558
|
+
readonly FILE_CACHE_COUNT: "FILE_CACHE_COUNT";
|
|
559
|
+
readonly FILE_SYSTEM_COUNT: "FILE_SYSTEM_COUNT";
|
|
560
|
+
readonly STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM: "STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM";
|
|
561
|
+
readonly TOTAL_IN_PROGRESS_COPY_BACKUPS: "TOTAL_IN_PROGRESS_COPY_BACKUPS";
|
|
562
|
+
readonly TOTAL_SSD_IOPS: "TOTAL_SSD_IOPS";
|
|
563
|
+
readonly TOTAL_STORAGE: "TOTAL_STORAGE";
|
|
564
|
+
readonly TOTAL_THROUGHPUT_CAPACITY: "TOTAL_THROUGHPUT_CAPACITY";
|
|
565
|
+
readonly TOTAL_USER_INITIATED_BACKUPS: "TOTAL_USER_INITIATED_BACKUPS";
|
|
566
|
+
readonly TOTAL_USER_TAGS: "TOTAL_USER_TAGS";
|
|
567
|
+
readonly VOLUMES_PER_FILE_SYSTEM: "VOLUMES_PER_FILE_SYSTEM";
|
|
568
|
+
};
|
|
569
|
+
export type ServiceLimit = (typeof ServiceLimit)[keyof typeof ServiceLimit];
|
|
508
570
|
export declare class ServiceLimitExceeded extends __BaseException {
|
|
509
571
|
readonly name: "ServiceLimitExceeded";
|
|
510
572
|
readonly $fault: "client";
|
|
@@ -555,9 +617,10 @@ export interface CreateDataRepositoryAssociationRequest {
|
|
|
555
617
|
ClientRequestToken?: string;
|
|
556
618
|
Tags?: Tag[];
|
|
557
619
|
}
|
|
558
|
-
export declare
|
|
559
|
-
NFS3
|
|
560
|
-
}
|
|
620
|
+
export declare const NfsVersion: {
|
|
621
|
+
readonly NFS3: "NFS3";
|
|
622
|
+
};
|
|
623
|
+
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
561
624
|
export interface NFSDataRepositoryConfiguration {
|
|
562
625
|
Version: NfsVersion | string | undefined;
|
|
563
626
|
DnsIps?: string[];
|
|
@@ -584,24 +647,28 @@ export interface DataRepositoryAssociation {
|
|
|
584
647
|
export interface CreateDataRepositoryAssociationResponse {
|
|
585
648
|
Association?: DataRepositoryAssociation;
|
|
586
649
|
}
|
|
587
|
-
export declare
|
|
588
|
-
REPORT_CSV_20191124
|
|
589
|
-
}
|
|
590
|
-
export
|
|
591
|
-
|
|
592
|
-
|
|
650
|
+
export declare const ReportFormat: {
|
|
651
|
+
readonly REPORT_CSV_20191124: "REPORT_CSV_20191124";
|
|
652
|
+
};
|
|
653
|
+
export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
|
|
654
|
+
export declare const ReportScope: {
|
|
655
|
+
readonly FAILED_FILES_ONLY: "FAILED_FILES_ONLY";
|
|
656
|
+
};
|
|
657
|
+
export type ReportScope = (typeof ReportScope)[keyof typeof ReportScope];
|
|
593
658
|
export interface CompletionReport {
|
|
594
659
|
Enabled: boolean | undefined;
|
|
595
660
|
Path?: string;
|
|
596
661
|
Format?: ReportFormat | string;
|
|
597
662
|
Scope?: ReportScope | string;
|
|
598
663
|
}
|
|
599
|
-
export declare
|
|
600
|
-
AUTO_TRIGGERED_EVICTION
|
|
601
|
-
EVICTION
|
|
602
|
-
EXPORT
|
|
603
|
-
IMPORT
|
|
604
|
-
}
|
|
664
|
+
export declare const DataRepositoryTaskType: {
|
|
665
|
+
readonly AUTO_TRIGGERED_EVICTION: "AUTO_RELEASE_DATA";
|
|
666
|
+
readonly EVICTION: "RELEASE_DATA_FROM_FILESYSTEM";
|
|
667
|
+
readonly EXPORT: "EXPORT_TO_REPOSITORY";
|
|
668
|
+
readonly IMPORT: "IMPORT_METADATA_FROM_REPOSITORY";
|
|
669
|
+
};
|
|
670
|
+
export type DataRepositoryTaskType =
|
|
671
|
+
(typeof DataRepositoryTaskType)[keyof typeof DataRepositoryTaskType];
|
|
605
672
|
export interface CreateDataRepositoryTaskRequest {
|
|
606
673
|
Type: DataRepositoryTaskType | string | undefined;
|
|
607
674
|
Paths?: string[];
|
|
@@ -659,12 +726,15 @@ export interface FileCacheDataRepositoryAssociation {
|
|
|
659
726
|
DataRepositorySubdirectories?: string[];
|
|
660
727
|
NFS?: FileCacheNFSConfiguration;
|
|
661
728
|
}
|
|
662
|
-
export declare
|
|
663
|
-
LUSTRE
|
|
664
|
-
}
|
|
665
|
-
export
|
|
666
|
-
|
|
667
|
-
|
|
729
|
+
export declare const FileCacheType: {
|
|
730
|
+
readonly LUSTRE: "LUSTRE";
|
|
731
|
+
};
|
|
732
|
+
export type FileCacheType = (typeof FileCacheType)[keyof typeof FileCacheType];
|
|
733
|
+
export declare const FileCacheLustreDeploymentType: {
|
|
734
|
+
readonly CACHE_1: "CACHE_1";
|
|
735
|
+
};
|
|
736
|
+
export type FileCacheLustreDeploymentType =
|
|
737
|
+
(typeof FileCacheLustreDeploymentType)[keyof typeof FileCacheLustreDeploymentType];
|
|
668
738
|
export interface FileCacheLustreMetadataConfiguration {
|
|
669
739
|
StorageCapacity: number | undefined;
|
|
670
740
|
}
|
|
@@ -690,13 +760,15 @@ export interface CreateFileCacheRequest {
|
|
|
690
760
|
export interface FileCacheFailureDetails {
|
|
691
761
|
Message?: string;
|
|
692
762
|
}
|
|
693
|
-
export declare
|
|
694
|
-
AVAILABLE
|
|
695
|
-
CREATING
|
|
696
|
-
DELETING
|
|
697
|
-
FAILED
|
|
698
|
-
UPDATING
|
|
699
|
-
}
|
|
763
|
+
export declare const FileCacheLifecycle: {
|
|
764
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
765
|
+
readonly CREATING: "CREATING";
|
|
766
|
+
readonly DELETING: "DELETING";
|
|
767
|
+
readonly FAILED: "FAILED";
|
|
768
|
+
readonly UPDATING: "UPDATING";
|
|
769
|
+
};
|
|
770
|
+
export type FileCacheLifecycle =
|
|
771
|
+
(typeof FileCacheLifecycle)[keyof typeof FileCacheLifecycle];
|
|
700
772
|
export interface FileCacheLustreConfiguration {
|
|
701
773
|
PerUnitStorageThroughput?: number;
|
|
702
774
|
DeploymentType?: FileCacheLustreDeploymentType | string;
|
|
@@ -894,11 +966,13 @@ export interface CreateSvmActiveDirectoryConfiguration {
|
|
|
894
966
|
NetBiosName: string | undefined;
|
|
895
967
|
SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryConfiguration;
|
|
896
968
|
}
|
|
897
|
-
export declare
|
|
898
|
-
MIXED
|
|
899
|
-
NTFS
|
|
900
|
-
UNIX
|
|
901
|
-
}
|
|
969
|
+
export declare const StorageVirtualMachineRootVolumeSecurityStyle: {
|
|
970
|
+
readonly MIXED: "MIXED";
|
|
971
|
+
readonly NTFS: "NTFS";
|
|
972
|
+
readonly UNIX: "UNIX";
|
|
973
|
+
};
|
|
974
|
+
export type StorageVirtualMachineRootVolumeSecurityStyle =
|
|
975
|
+
(typeof StorageVirtualMachineRootVolumeSecurityStyle)[keyof typeof StorageVirtualMachineRootVolumeSecurityStyle];
|
|
902
976
|
export interface CreateStorageVirtualMachineRequest {
|
|
903
977
|
ActiveDirectoryConfiguration?: CreateSvmActiveDirectoryConfiguration;
|
|
904
978
|
ClientRequestToken?: string;
|
|
@@ -924,20 +998,24 @@ export interface SvmEndpoints {
|
|
|
924
998
|
Nfs?: SvmEndpoint;
|
|
925
999
|
Smb?: SvmEndpoint;
|
|
926
1000
|
}
|
|
927
|
-
export declare
|
|
928
|
-
CREATED
|
|
929
|
-
CREATING
|
|
930
|
-
DELETING
|
|
931
|
-
FAILED
|
|
932
|
-
MISCONFIGURED
|
|
933
|
-
PENDING
|
|
934
|
-
}
|
|
935
|
-
export
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
1001
|
+
export declare const StorageVirtualMachineLifecycle: {
|
|
1002
|
+
readonly CREATED: "CREATED";
|
|
1003
|
+
readonly CREATING: "CREATING";
|
|
1004
|
+
readonly DELETING: "DELETING";
|
|
1005
|
+
readonly FAILED: "FAILED";
|
|
1006
|
+
readonly MISCONFIGURED: "MISCONFIGURED";
|
|
1007
|
+
readonly PENDING: "PENDING";
|
|
1008
|
+
};
|
|
1009
|
+
export type StorageVirtualMachineLifecycle =
|
|
1010
|
+
(typeof StorageVirtualMachineLifecycle)[keyof typeof StorageVirtualMachineLifecycle];
|
|
1011
|
+
export declare const StorageVirtualMachineSubtype: {
|
|
1012
|
+
readonly DEFAULT: "DEFAULT";
|
|
1013
|
+
readonly DP_DESTINATION: "DP_DESTINATION";
|
|
1014
|
+
readonly SYNC_DESTINATION: "SYNC_DESTINATION";
|
|
1015
|
+
readonly SYNC_SOURCE: "SYNC_SOURCE";
|
|
1016
|
+
};
|
|
1017
|
+
export type StorageVirtualMachineSubtype =
|
|
1018
|
+
(typeof StorageVirtualMachineSubtype)[keyof typeof StorageVirtualMachineSubtype];
|
|
941
1019
|
export interface StorageVirtualMachine {
|
|
942
1020
|
ActiveDirectoryConfiguration?: SvmActiveDirectoryConfiguration;
|
|
943
1021
|
CreationTime?: Date;
|
|
@@ -958,10 +1036,12 @@ export interface StorageVirtualMachine {
|
|
|
958
1036
|
export interface CreateStorageVirtualMachineResponse {
|
|
959
1037
|
StorageVirtualMachine?: StorageVirtualMachine;
|
|
960
1038
|
}
|
|
961
|
-
export declare
|
|
962
|
-
DP
|
|
963
|
-
RW
|
|
964
|
-
}
|
|
1039
|
+
export declare const InputOntapVolumeType: {
|
|
1040
|
+
readonly DP: "DP";
|
|
1041
|
+
readonly RW: "RW";
|
|
1042
|
+
};
|
|
1043
|
+
export type InputOntapVolumeType =
|
|
1044
|
+
(typeof InputOntapVolumeType)[keyof typeof InputOntapVolumeType];
|
|
965
1045
|
export interface CreateOntapVolumeConfiguration {
|
|
966
1046
|
JunctionPath?: string;
|
|
967
1047
|
SecurityStyle?: SecurityStyle | string;
|
|
@@ -1081,9 +1161,11 @@ export interface DeleteFileSystemLustreConfiguration {
|
|
|
1081
1161
|
SkipFinalBackup?: boolean;
|
|
1082
1162
|
FinalBackupTags?: Tag[];
|
|
1083
1163
|
}
|
|
1084
|
-
export declare
|
|
1085
|
-
DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
|
1086
|
-
}
|
|
1164
|
+
export declare const DeleteFileSystemOpenZFSOption: {
|
|
1165
|
+
readonly DELETE_CHILD_VOLUMES_AND_SNAPSHOTS: "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
|
|
1166
|
+
};
|
|
1167
|
+
export type DeleteFileSystemOpenZFSOption =
|
|
1168
|
+
(typeof DeleteFileSystemOpenZFSOption)[keyof typeof DeleteFileSystemOpenZFSOption];
|
|
1087
1169
|
export interface DeleteFileSystemOpenZFSConfiguration {
|
|
1088
1170
|
SkipFinalBackup?: boolean;
|
|
1089
1171
|
FinalBackupTags?: Tag[];
|
|
@@ -1145,9 +1227,11 @@ export interface DeleteVolumeOntapConfiguration {
|
|
|
1145
1227
|
SkipFinalBackup?: boolean;
|
|
1146
1228
|
FinalBackupTags?: Tag[];
|
|
1147
1229
|
}
|
|
1148
|
-
export declare
|
|
1149
|
-
DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
|
1150
|
-
}
|
|
1230
|
+
export declare const DeleteOpenZFSVolumeOption: {
|
|
1231
|
+
readonly DELETE_CHILD_VOLUMES_AND_SNAPSHOTS: "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
|
|
1232
|
+
};
|
|
1233
|
+
export type DeleteOpenZFSVolumeOption =
|
|
1234
|
+
(typeof DeleteOpenZFSVolumeOption)[keyof typeof DeleteOpenZFSVolumeOption];
|
|
1151
1235
|
export interface DeleteVolumeOpenZFSConfiguration {
|
|
1152
1236
|
Options?: (DeleteOpenZFSVolumeOption | string)[];
|
|
1153
1237
|
}
|
|
@@ -1166,15 +1250,16 @@ export interface DeleteVolumeResponse {
|
|
|
1166
1250
|
Lifecycle?: VolumeLifecycle | string;
|
|
1167
1251
|
OntapResponse?: DeleteVolumeOntapResponse;
|
|
1168
1252
|
}
|
|
1169
|
-
export declare
|
|
1170
|
-
BACKUP_TYPE
|
|
1171
|
-
DATA_REPOSITORY_TYPE
|
|
1172
|
-
FILE_CACHE_ID
|
|
1173
|
-
FILE_CACHE_TYPE
|
|
1174
|
-
FILE_SYSTEM_ID
|
|
1175
|
-
FILE_SYSTEM_TYPE
|
|
1176
|
-
VOLUME_ID
|
|
1177
|
-
}
|
|
1253
|
+
export declare const FilterName: {
|
|
1254
|
+
readonly BACKUP_TYPE: "backup-type";
|
|
1255
|
+
readonly DATA_REPOSITORY_TYPE: "data-repository-type";
|
|
1256
|
+
readonly FILE_CACHE_ID: "file-cache-id";
|
|
1257
|
+
readonly FILE_CACHE_TYPE: "file-cache-type";
|
|
1258
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1259
|
+
readonly FILE_SYSTEM_TYPE: "file-system-type";
|
|
1260
|
+
readonly VOLUME_ID: "volume-id";
|
|
1261
|
+
};
|
|
1262
|
+
export type FilterName = (typeof FilterName)[keyof typeof FilterName];
|
|
1178
1263
|
export interface Filter {
|
|
1179
1264
|
Name?: FilterName | string;
|
|
1180
1265
|
Values?: string[];
|
|
@@ -1203,12 +1288,14 @@ export declare class InvalidDataRepositoryType extends __BaseException {
|
|
|
1203
1288
|
opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>
|
|
1204
1289
|
);
|
|
1205
1290
|
}
|
|
1206
|
-
export declare
|
|
1207
|
-
DATA_REPO_ASSOCIATION_ID
|
|
1208
|
-
FILE_CACHE_ID
|
|
1209
|
-
FILE_SYSTEM_ID
|
|
1210
|
-
TASK_LIFECYCLE
|
|
1211
|
-
}
|
|
1291
|
+
export declare const DataRepositoryTaskFilterName: {
|
|
1292
|
+
readonly DATA_REPO_ASSOCIATION_ID: "data-repository-association-id";
|
|
1293
|
+
readonly FILE_CACHE_ID: "file-cache-id";
|
|
1294
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1295
|
+
readonly TASK_LIFECYCLE: "task-lifecycle";
|
|
1296
|
+
};
|
|
1297
|
+
export type DataRepositoryTaskFilterName =
|
|
1298
|
+
(typeof DataRepositoryTaskFilterName)[keyof typeof DataRepositoryTaskFilterName];
|
|
1212
1299
|
export interface DataRepositoryTaskFilter {
|
|
1213
1300
|
Name?: DataRepositoryTaskFilterName | string;
|
|
1214
1301
|
Values?: string[];
|
|
@@ -1265,10 +1352,12 @@ export interface DescribeFileSystemsRequest {
|
|
|
1265
1352
|
MaxResults?: number;
|
|
1266
1353
|
NextToken?: string;
|
|
1267
1354
|
}
|
|
1268
|
-
export declare
|
|
1269
|
-
FILE_SYSTEM_ID
|
|
1270
|
-
VOLUME_ID
|
|
1271
|
-
}
|
|
1355
|
+
export declare const SnapshotFilterName: {
|
|
1356
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1357
|
+
readonly VOLUME_ID: "volume-id";
|
|
1358
|
+
};
|
|
1359
|
+
export type SnapshotFilterName =
|
|
1360
|
+
(typeof SnapshotFilterName)[keyof typeof SnapshotFilterName];
|
|
1272
1361
|
export interface SnapshotFilter {
|
|
1273
1362
|
Name?: SnapshotFilterName | string;
|
|
1274
1363
|
Values?: string[];
|
|
@@ -1279,9 +1368,11 @@ export interface DescribeSnapshotsRequest {
|
|
|
1279
1368
|
MaxResults?: number;
|
|
1280
1369
|
NextToken?: string;
|
|
1281
1370
|
}
|
|
1282
|
-
export declare
|
|
1283
|
-
FILE_SYSTEM_ID
|
|
1284
|
-
}
|
|
1371
|
+
export declare const StorageVirtualMachineFilterName: {
|
|
1372
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1373
|
+
};
|
|
1374
|
+
export type StorageVirtualMachineFilterName =
|
|
1375
|
+
(typeof StorageVirtualMachineFilterName)[keyof typeof StorageVirtualMachineFilterName];
|
|
1285
1376
|
export interface StorageVirtualMachineFilter {
|
|
1286
1377
|
Name?: StorageVirtualMachineFilterName | string;
|
|
1287
1378
|
Values?: string[];
|
|
@@ -1296,10 +1387,12 @@ export interface DescribeStorageVirtualMachinesResponse {
|
|
|
1296
1387
|
StorageVirtualMachines?: StorageVirtualMachine[];
|
|
1297
1388
|
NextToken?: string;
|
|
1298
1389
|
}
|
|
1299
|
-
export declare
|
|
1300
|
-
FILE_SYSTEM_ID
|
|
1301
|
-
STORAGE_VIRTUAL_MACHINE_ID
|
|
1302
|
-
}
|
|
1390
|
+
export declare const VolumeFilterName: {
|
|
1391
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1392
|
+
readonly STORAGE_VIRTUAL_MACHINE_ID: "storage-virtual-machine-id";
|
|
1393
|
+
};
|
|
1394
|
+
export type VolumeFilterName =
|
|
1395
|
+
(typeof VolumeFilterName)[keyof typeof VolumeFilterName];
|
|
1303
1396
|
export interface VolumeFilter {
|
|
1304
1397
|
Name?: VolumeFilterName | string;
|
|
1305
1398
|
Values?: string[];
|
|
@@ -1356,10 +1449,12 @@ export interface ReleaseFileSystemNfsV3LocksRequest {
|
|
|
1356
1449
|
FileSystemId: string | undefined;
|
|
1357
1450
|
ClientRequestToken?: string;
|
|
1358
1451
|
}
|
|
1359
|
-
export declare
|
|
1360
|
-
DELETE_CLONED_VOLUMES
|
|
1361
|
-
DELETE_INTERMEDIATE_SNAPSHOTS
|
|
1362
|
-
}
|
|
1452
|
+
export declare const RestoreOpenZFSVolumeOption: {
|
|
1453
|
+
readonly DELETE_CLONED_VOLUMES: "DELETE_CLONED_VOLUMES";
|
|
1454
|
+
readonly DELETE_INTERMEDIATE_SNAPSHOTS: "DELETE_INTERMEDIATE_SNAPSHOTS";
|
|
1455
|
+
};
|
|
1456
|
+
export type RestoreOpenZFSVolumeOption =
|
|
1457
|
+
(typeof RestoreOpenZFSVolumeOption)[keyof typeof RestoreOpenZFSVolumeOption];
|
|
1363
1458
|
export interface RestoreVolumeFromSnapshotRequest {
|
|
1364
1459
|
ClientRequestToken?: string;
|
|
1365
1460
|
VolumeId: string | undefined;
|