@aws-sdk/client-efs 3.934.0 → 3.935.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/index.js +79 -78
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +78 -0
- package/dist-es/models/errors.js +517 -0
- package/dist-es/models/models_0.js +1 -595
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +182 -0
- package/dist-types/models/errors.d.ts +905 -0
- package/dist-types/models/models_0.d.ts +1 -1087
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +100 -0
- package/dist-types/ts3.4/models/errors.d.ts +277 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -377
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,25 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
readonly DELETED: "deleted";
|
|
17
|
-
readonly DELETING: "deleting";
|
|
18
|
-
readonly ERROR: "error";
|
|
19
|
-
readonly UPDATING: "updating";
|
|
20
|
-
};
|
|
21
|
-
export type LifeCycleState =
|
|
22
|
-
(typeof LifeCycleState)[keyof typeof LifeCycleState];
|
|
1
|
+
import {
|
|
2
|
+
DeletionMode,
|
|
3
|
+
IpAddressType,
|
|
4
|
+
LifeCycleState,
|
|
5
|
+
PerformanceMode,
|
|
6
|
+
ReplicationOverwriteProtection,
|
|
7
|
+
ReplicationStatus,
|
|
8
|
+
Resource,
|
|
9
|
+
ResourceIdType,
|
|
10
|
+
Status,
|
|
11
|
+
ThroughputMode,
|
|
12
|
+
TransitionToArchiveRules,
|
|
13
|
+
TransitionToIARules,
|
|
14
|
+
TransitionToPrimaryStorageClassRules,
|
|
15
|
+
} from "./enums";
|
|
23
16
|
export interface PosixUser {
|
|
24
17
|
Uid: number | undefined;
|
|
25
18
|
Gid: number | undefined;
|
|
@@ -50,60 +43,12 @@ export interface AccessPointDescription {
|
|
|
50
43
|
OwnerId?: string | undefined;
|
|
51
44
|
LifeCycleState?: LifeCycleState | undefined;
|
|
52
45
|
}
|
|
53
|
-
export declare class AccessPointLimitExceeded extends __BaseException {
|
|
54
|
-
readonly name: "AccessPointLimitExceeded";
|
|
55
|
-
readonly $fault: "client";
|
|
56
|
-
ErrorCode: string | undefined;
|
|
57
|
-
Message?: string | undefined;
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
|
-
export declare class AccessPointNotFound extends __BaseException {
|
|
63
|
-
readonly name: "AccessPointNotFound";
|
|
64
|
-
readonly $fault: "client";
|
|
65
|
-
ErrorCode: string | undefined;
|
|
66
|
-
Message?: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class AvailabilityZonesMismatch extends __BaseException {
|
|
72
|
-
readonly name: "AvailabilityZonesMismatch";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
ErrorCode?: string | undefined;
|
|
75
|
-
Message?: string | undefined;
|
|
76
|
-
constructor(
|
|
77
|
-
opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>
|
|
78
|
-
);
|
|
79
|
-
}
|
|
80
|
-
export declare const Status: {
|
|
81
|
-
readonly DISABLED: "DISABLED";
|
|
82
|
-
readonly DISABLING: "DISABLING";
|
|
83
|
-
readonly ENABLED: "ENABLED";
|
|
84
|
-
readonly ENABLING: "ENABLING";
|
|
85
|
-
};
|
|
86
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
87
46
|
export interface BackupPolicy {
|
|
88
47
|
Status: Status | undefined;
|
|
89
48
|
}
|
|
90
49
|
export interface BackupPolicyDescription {
|
|
91
50
|
BackupPolicy?: BackupPolicy | undefined;
|
|
92
51
|
}
|
|
93
|
-
export declare class BadRequest extends __BaseException {
|
|
94
|
-
readonly name: "BadRequest";
|
|
95
|
-
readonly $fault: "client";
|
|
96
|
-
ErrorCode: string | undefined;
|
|
97
|
-
Message?: string | undefined;
|
|
98
|
-
constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
|
|
99
|
-
}
|
|
100
|
-
export declare class ConflictException extends __BaseException {
|
|
101
|
-
readonly name: "ConflictException";
|
|
102
|
-
readonly $fault: "client";
|
|
103
|
-
ErrorCode?: string | undefined;
|
|
104
|
-
Message?: string | undefined;
|
|
105
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
106
|
-
}
|
|
107
52
|
export interface CreateAccessPointRequest {
|
|
108
53
|
ClientToken?: string | undefined;
|
|
109
54
|
Tags?: Tag[] | undefined;
|
|
@@ -111,56 +56,6 @@ export interface CreateAccessPointRequest {
|
|
|
111
56
|
PosixUser?: PosixUser | undefined;
|
|
112
57
|
RootDirectory?: RootDirectory | undefined;
|
|
113
58
|
}
|
|
114
|
-
export declare class FileSystemNotFound extends __BaseException {
|
|
115
|
-
readonly name: "FileSystemNotFound";
|
|
116
|
-
readonly $fault: "client";
|
|
117
|
-
ErrorCode: string | undefined;
|
|
118
|
-
Message?: string | undefined;
|
|
119
|
-
constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
|
|
120
|
-
}
|
|
121
|
-
export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
|
|
122
|
-
readonly name: "IncorrectFileSystemLifeCycleState";
|
|
123
|
-
readonly $fault: "client";
|
|
124
|
-
ErrorCode: string | undefined;
|
|
125
|
-
Message?: string | undefined;
|
|
126
|
-
constructor(
|
|
127
|
-
opts: __ExceptionOptionType<
|
|
128
|
-
IncorrectFileSystemLifeCycleState,
|
|
129
|
-
__BaseException
|
|
130
|
-
>
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
|
-
export declare class InternalServerError extends __BaseException {
|
|
134
|
-
readonly name: "InternalServerError";
|
|
135
|
-
readonly $fault: "server";
|
|
136
|
-
ErrorCode: string | undefined;
|
|
137
|
-
Message?: string | undefined;
|
|
138
|
-
constructor(
|
|
139
|
-
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
140
|
-
);
|
|
141
|
-
}
|
|
142
|
-
export declare class ThrottlingException extends __BaseException {
|
|
143
|
-
readonly name: "ThrottlingException";
|
|
144
|
-
readonly $fault: "client";
|
|
145
|
-
ErrorCode?: string | undefined;
|
|
146
|
-
Message?: string | undefined;
|
|
147
|
-
constructor(
|
|
148
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
149
|
-
);
|
|
150
|
-
}
|
|
151
|
-
export declare const PerformanceMode: {
|
|
152
|
-
readonly GENERAL_PURPOSE: "generalPurpose";
|
|
153
|
-
readonly MAX_IO: "maxIO";
|
|
154
|
-
};
|
|
155
|
-
export type PerformanceMode =
|
|
156
|
-
(typeof PerformanceMode)[keyof typeof PerformanceMode];
|
|
157
|
-
export declare const ThroughputMode: {
|
|
158
|
-
readonly BURSTING: "bursting";
|
|
159
|
-
readonly ELASTIC: "elastic";
|
|
160
|
-
readonly PROVISIONED: "provisioned";
|
|
161
|
-
};
|
|
162
|
-
export type ThroughputMode =
|
|
163
|
-
(typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
164
59
|
export interface CreateFileSystemRequest {
|
|
165
60
|
CreationToken?: string | undefined;
|
|
166
61
|
PerformanceMode?: PerformanceMode | undefined;
|
|
@@ -172,23 +67,6 @@ export interface CreateFileSystemRequest {
|
|
|
172
67
|
Backup?: boolean | undefined;
|
|
173
68
|
Tags?: Tag[] | undefined;
|
|
174
69
|
}
|
|
175
|
-
export declare class FileSystemAlreadyExists extends __BaseException {
|
|
176
|
-
readonly name: "FileSystemAlreadyExists";
|
|
177
|
-
readonly $fault: "client";
|
|
178
|
-
ErrorCode: string | undefined;
|
|
179
|
-
Message?: string | undefined;
|
|
180
|
-
FileSystemId: string | undefined;
|
|
181
|
-
constructor(
|
|
182
|
-
opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>
|
|
183
|
-
);
|
|
184
|
-
}
|
|
185
|
-
export declare const ReplicationOverwriteProtection: {
|
|
186
|
-
readonly DISABLED: "DISABLED";
|
|
187
|
-
readonly ENABLED: "ENABLED";
|
|
188
|
-
readonly REPLICATING: "REPLICATING";
|
|
189
|
-
};
|
|
190
|
-
export type ReplicationOverwriteProtection =
|
|
191
|
-
(typeof ReplicationOverwriteProtection)[keyof typeof ReplicationOverwriteProtection];
|
|
192
70
|
export interface FileSystemProtectionDescription {
|
|
193
71
|
ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
|
|
194
72
|
}
|
|
@@ -219,48 +97,6 @@ export interface FileSystemDescription {
|
|
|
219
97
|
Tags: Tag[] | undefined;
|
|
220
98
|
FileSystemProtection?: FileSystemProtectionDescription | undefined;
|
|
221
99
|
}
|
|
222
|
-
export declare class FileSystemLimitExceeded extends __BaseException {
|
|
223
|
-
readonly name: "FileSystemLimitExceeded";
|
|
224
|
-
readonly $fault: "client";
|
|
225
|
-
ErrorCode: string | undefined;
|
|
226
|
-
Message?: string | undefined;
|
|
227
|
-
constructor(
|
|
228
|
-
opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>
|
|
229
|
-
);
|
|
230
|
-
}
|
|
231
|
-
export declare class InsufficientThroughputCapacity extends __BaseException {
|
|
232
|
-
readonly name: "InsufficientThroughputCapacity";
|
|
233
|
-
readonly $fault: "server";
|
|
234
|
-
ErrorCode: string | undefined;
|
|
235
|
-
Message?: string | undefined;
|
|
236
|
-
constructor(
|
|
237
|
-
opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>
|
|
238
|
-
);
|
|
239
|
-
}
|
|
240
|
-
export declare class ThroughputLimitExceeded extends __BaseException {
|
|
241
|
-
readonly name: "ThroughputLimitExceeded";
|
|
242
|
-
readonly $fault: "client";
|
|
243
|
-
ErrorCode: string | undefined;
|
|
244
|
-
Message?: string | undefined;
|
|
245
|
-
constructor(
|
|
246
|
-
opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>
|
|
247
|
-
);
|
|
248
|
-
}
|
|
249
|
-
export declare class UnsupportedAvailabilityZone extends __BaseException {
|
|
250
|
-
readonly name: "UnsupportedAvailabilityZone";
|
|
251
|
-
readonly $fault: "client";
|
|
252
|
-
ErrorCode: string | undefined;
|
|
253
|
-
Message?: string | undefined;
|
|
254
|
-
constructor(
|
|
255
|
-
opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>
|
|
256
|
-
);
|
|
257
|
-
}
|
|
258
|
-
export declare const IpAddressType: {
|
|
259
|
-
readonly DUAL_STACK: "DUAL_STACK";
|
|
260
|
-
readonly IPV4_ONLY: "IPV4_ONLY";
|
|
261
|
-
readonly IPV6_ONLY: "IPV6_ONLY";
|
|
262
|
-
};
|
|
263
|
-
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
264
100
|
export interface CreateMountTargetRequest {
|
|
265
101
|
FileSystemId: string | undefined;
|
|
266
102
|
SubnetId: string | undefined;
|
|
@@ -269,22 +105,6 @@ export interface CreateMountTargetRequest {
|
|
|
269
105
|
IpAddressType?: IpAddressType | undefined;
|
|
270
106
|
SecurityGroups?: string[] | undefined;
|
|
271
107
|
}
|
|
272
|
-
export declare class IpAddressInUse extends __BaseException {
|
|
273
|
-
readonly name: "IpAddressInUse";
|
|
274
|
-
readonly $fault: "client";
|
|
275
|
-
ErrorCode: string | undefined;
|
|
276
|
-
Message?: string | undefined;
|
|
277
|
-
constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
|
|
278
|
-
}
|
|
279
|
-
export declare class MountTargetConflict extends __BaseException {
|
|
280
|
-
readonly name: "MountTargetConflict";
|
|
281
|
-
readonly $fault: "client";
|
|
282
|
-
ErrorCode: string | undefined;
|
|
283
|
-
Message?: string | undefined;
|
|
284
|
-
constructor(
|
|
285
|
-
opts: __ExceptionOptionType<MountTargetConflict, __BaseException>
|
|
286
|
-
);
|
|
287
|
-
}
|
|
288
108
|
export interface MountTargetDescription {
|
|
289
109
|
OwnerId?: string | undefined;
|
|
290
110
|
MountTargetId: string | undefined;
|
|
@@ -298,49 +118,6 @@ export interface MountTargetDescription {
|
|
|
298
118
|
AvailabilityZoneName?: string | undefined;
|
|
299
119
|
VpcId?: string | undefined;
|
|
300
120
|
}
|
|
301
|
-
export declare class NetworkInterfaceLimitExceeded extends __BaseException {
|
|
302
|
-
readonly name: "NetworkInterfaceLimitExceeded";
|
|
303
|
-
readonly $fault: "client";
|
|
304
|
-
ErrorCode: string | undefined;
|
|
305
|
-
Message?: string | undefined;
|
|
306
|
-
constructor(
|
|
307
|
-
opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>
|
|
308
|
-
);
|
|
309
|
-
}
|
|
310
|
-
export declare class NoFreeAddressesInSubnet extends __BaseException {
|
|
311
|
-
readonly name: "NoFreeAddressesInSubnet";
|
|
312
|
-
readonly $fault: "client";
|
|
313
|
-
ErrorCode: string | undefined;
|
|
314
|
-
Message?: string | undefined;
|
|
315
|
-
constructor(
|
|
316
|
-
opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>
|
|
317
|
-
);
|
|
318
|
-
}
|
|
319
|
-
export declare class SecurityGroupLimitExceeded extends __BaseException {
|
|
320
|
-
readonly name: "SecurityGroupLimitExceeded";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
ErrorCode: string | undefined;
|
|
323
|
-
Message?: string | undefined;
|
|
324
|
-
constructor(
|
|
325
|
-
opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>
|
|
326
|
-
);
|
|
327
|
-
}
|
|
328
|
-
export declare class SecurityGroupNotFound extends __BaseException {
|
|
329
|
-
readonly name: "SecurityGroupNotFound";
|
|
330
|
-
readonly $fault: "client";
|
|
331
|
-
ErrorCode: string | undefined;
|
|
332
|
-
Message?: string | undefined;
|
|
333
|
-
constructor(
|
|
334
|
-
opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>
|
|
335
|
-
);
|
|
336
|
-
}
|
|
337
|
-
export declare class SubnetNotFound extends __BaseException {
|
|
338
|
-
readonly name: "SubnetNotFound";
|
|
339
|
-
readonly $fault: "client";
|
|
340
|
-
ErrorCode: string | undefined;
|
|
341
|
-
Message?: string | undefined;
|
|
342
|
-
constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
|
|
343
|
-
}
|
|
344
121
|
export interface DestinationToCreate {
|
|
345
122
|
Region?: string | undefined;
|
|
346
123
|
AvailabilityZoneName?: string | undefined;
|
|
@@ -352,16 +129,6 @@ export interface CreateReplicationConfigurationRequest {
|
|
|
352
129
|
SourceFileSystemId: string | undefined;
|
|
353
130
|
Destinations: DestinationToCreate[] | undefined;
|
|
354
131
|
}
|
|
355
|
-
export declare const ReplicationStatus: {
|
|
356
|
-
readonly DELETING: "DELETING";
|
|
357
|
-
readonly ENABLED: "ENABLED";
|
|
358
|
-
readonly ENABLING: "ENABLING";
|
|
359
|
-
readonly ERROR: "ERROR";
|
|
360
|
-
readonly PAUSED: "PAUSED";
|
|
361
|
-
readonly PAUSING: "PAUSING";
|
|
362
|
-
};
|
|
363
|
-
export type ReplicationStatus =
|
|
364
|
-
(typeof ReplicationStatus)[keyof typeof ReplicationStatus];
|
|
365
132
|
export interface Destination {
|
|
366
133
|
Status: ReplicationStatus | undefined;
|
|
367
134
|
FileSystemId: string | undefined;
|
|
@@ -380,24 +147,6 @@ export interface ReplicationConfigurationDescription {
|
|
|
380
147
|
Destinations: Destination[] | undefined;
|
|
381
148
|
SourceFileSystemOwnerId?: string | undefined;
|
|
382
149
|
}
|
|
383
|
-
export declare class ReplicationNotFound extends __BaseException {
|
|
384
|
-
readonly name: "ReplicationNotFound";
|
|
385
|
-
readonly $fault: "client";
|
|
386
|
-
ErrorCode?: string | undefined;
|
|
387
|
-
Message?: string | undefined;
|
|
388
|
-
constructor(
|
|
389
|
-
opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>
|
|
390
|
-
);
|
|
391
|
-
}
|
|
392
|
-
export declare class ValidationException extends __BaseException {
|
|
393
|
-
readonly name: "ValidationException";
|
|
394
|
-
readonly $fault: "client";
|
|
395
|
-
ErrorCode: string | undefined;
|
|
396
|
-
Message?: string | undefined;
|
|
397
|
-
constructor(
|
|
398
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
399
|
-
);
|
|
400
|
-
}
|
|
401
150
|
export interface CreateTagsRequest {
|
|
402
151
|
FileSystemId: string | undefined;
|
|
403
152
|
Tags: Tag[] | undefined;
|
|
@@ -408,40 +157,12 @@ export interface DeleteAccessPointRequest {
|
|
|
408
157
|
export interface DeleteFileSystemRequest {
|
|
409
158
|
FileSystemId: string | undefined;
|
|
410
159
|
}
|
|
411
|
-
export declare class FileSystemInUse extends __BaseException {
|
|
412
|
-
readonly name: "FileSystemInUse";
|
|
413
|
-
readonly $fault: "client";
|
|
414
|
-
ErrorCode: string | undefined;
|
|
415
|
-
Message?: string | undefined;
|
|
416
|
-
constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
|
|
417
|
-
}
|
|
418
160
|
export interface DeleteFileSystemPolicyRequest {
|
|
419
161
|
FileSystemId: string | undefined;
|
|
420
162
|
}
|
|
421
163
|
export interface DeleteMountTargetRequest {
|
|
422
164
|
MountTargetId: string | undefined;
|
|
423
165
|
}
|
|
424
|
-
export declare class DependencyTimeout extends __BaseException {
|
|
425
|
-
readonly name: "DependencyTimeout";
|
|
426
|
-
readonly $fault: "server";
|
|
427
|
-
ErrorCode: string | undefined;
|
|
428
|
-
Message?: string | undefined;
|
|
429
|
-
constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
|
|
430
|
-
}
|
|
431
|
-
export declare class MountTargetNotFound extends __BaseException {
|
|
432
|
-
readonly name: "MountTargetNotFound";
|
|
433
|
-
readonly $fault: "client";
|
|
434
|
-
ErrorCode: string | undefined;
|
|
435
|
-
Message?: string | undefined;
|
|
436
|
-
constructor(
|
|
437
|
-
opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>
|
|
438
|
-
);
|
|
439
|
-
}
|
|
440
|
-
export declare const DeletionMode: {
|
|
441
|
-
readonly ALL_CONFIGURATIONS: "ALL_CONFIGURATIONS";
|
|
442
|
-
readonly LOCAL_CONFIGURATION_ONLY: "LOCAL_CONFIGURATION_ONLY";
|
|
443
|
-
};
|
|
444
|
-
export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
|
|
445
166
|
export interface DeleteReplicationConfigurationRequest {
|
|
446
167
|
SourceFileSystemId: string | undefined;
|
|
447
168
|
DeletionMode?: DeletionMode | undefined;
|
|
@@ -464,17 +185,6 @@ export interface DescribeAccountPreferencesRequest {
|
|
|
464
185
|
NextToken?: string | undefined;
|
|
465
186
|
MaxResults?: number | undefined;
|
|
466
187
|
}
|
|
467
|
-
export declare const ResourceIdType: {
|
|
468
|
-
readonly LongId: "LONG_ID";
|
|
469
|
-
readonly ShortId: "SHORT_ID";
|
|
470
|
-
};
|
|
471
|
-
export type ResourceIdType =
|
|
472
|
-
(typeof ResourceIdType)[keyof typeof ResourceIdType];
|
|
473
|
-
export declare const Resource: {
|
|
474
|
-
readonly FileSystem: "FILE_SYSTEM";
|
|
475
|
-
readonly MountTarget: "MOUNT_TARGET";
|
|
476
|
-
};
|
|
477
|
-
export type Resource = (typeof Resource)[keyof typeof Resource];
|
|
478
188
|
export interface ResourceIdPreference {
|
|
479
189
|
ResourceIdType?: ResourceIdType | undefined;
|
|
480
190
|
Resources?: Resource[] | undefined;
|
|
@@ -486,13 +196,6 @@ export interface DescribeAccountPreferencesResponse {
|
|
|
486
196
|
export interface DescribeBackupPolicyRequest {
|
|
487
197
|
FileSystemId: string | undefined;
|
|
488
198
|
}
|
|
489
|
-
export declare class PolicyNotFound extends __BaseException {
|
|
490
|
-
readonly name: "PolicyNotFound";
|
|
491
|
-
readonly $fault: "client";
|
|
492
|
-
ErrorCode?: string | undefined;
|
|
493
|
-
Message?: string | undefined;
|
|
494
|
-
constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
|
|
495
|
-
}
|
|
496
199
|
export interface DescribeFileSystemPolicyRequest {
|
|
497
200
|
FileSystemId: string | undefined;
|
|
498
201
|
}
|
|
@@ -514,37 +217,6 @@ export interface DescribeFileSystemsResponse {
|
|
|
514
217
|
export interface DescribeLifecycleConfigurationRequest {
|
|
515
218
|
FileSystemId: string | undefined;
|
|
516
219
|
}
|
|
517
|
-
export declare const TransitionToArchiveRules: {
|
|
518
|
-
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
519
|
-
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
520
|
-
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
521
|
-
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
522
|
-
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
523
|
-
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
524
|
-
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
525
|
-
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
526
|
-
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
527
|
-
};
|
|
528
|
-
export type TransitionToArchiveRules =
|
|
529
|
-
(typeof TransitionToArchiveRules)[keyof typeof TransitionToArchiveRules];
|
|
530
|
-
export declare const TransitionToIARules: {
|
|
531
|
-
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
532
|
-
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
533
|
-
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
534
|
-
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
535
|
-
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
536
|
-
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
537
|
-
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
538
|
-
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
539
|
-
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
540
|
-
};
|
|
541
|
-
export type TransitionToIARules =
|
|
542
|
-
(typeof TransitionToIARules)[keyof typeof TransitionToIARules];
|
|
543
|
-
export declare const TransitionToPrimaryStorageClassRules: {
|
|
544
|
-
readonly AFTER_1_ACCESS: "AFTER_1_ACCESS";
|
|
545
|
-
};
|
|
546
|
-
export type TransitionToPrimaryStorageClassRules =
|
|
547
|
-
(typeof TransitionToPrimaryStorageClassRules)[keyof typeof TransitionToPrimaryStorageClassRules];
|
|
548
220
|
export interface LifecyclePolicy {
|
|
549
221
|
TransitionToIA?: TransitionToIARules | undefined;
|
|
550
222
|
TransitionToPrimaryStorageClass?:
|
|
@@ -573,15 +245,6 @@ export interface DescribeMountTargetSecurityGroupsRequest {
|
|
|
573
245
|
export interface DescribeMountTargetSecurityGroupsResponse {
|
|
574
246
|
SecurityGroups: string[] | undefined;
|
|
575
247
|
}
|
|
576
|
-
export declare class IncorrectMountTargetState extends __BaseException {
|
|
577
|
-
readonly name: "IncorrectMountTargetState";
|
|
578
|
-
readonly $fault: "client";
|
|
579
|
-
ErrorCode: string | undefined;
|
|
580
|
-
Message?: string | undefined;
|
|
581
|
-
constructor(
|
|
582
|
-
opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>
|
|
583
|
-
);
|
|
584
|
-
}
|
|
585
248
|
export interface DescribeReplicationConfigurationsRequest {
|
|
586
249
|
FileSystemId?: string | undefined;
|
|
587
250
|
NextToken?: string | undefined;
|
|
@@ -601,15 +264,6 @@ export interface DescribeTagsResponse {
|
|
|
601
264
|
Tags: Tag[] | undefined;
|
|
602
265
|
NextMarker?: string | undefined;
|
|
603
266
|
}
|
|
604
|
-
export declare class InvalidPolicyException extends __BaseException {
|
|
605
|
-
readonly name: "InvalidPolicyException";
|
|
606
|
-
readonly $fault: "client";
|
|
607
|
-
ErrorCode?: string | undefined;
|
|
608
|
-
Message?: string | undefined;
|
|
609
|
-
constructor(
|
|
610
|
-
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
611
|
-
);
|
|
612
|
-
}
|
|
613
267
|
export interface ListTagsForResourceRequest {
|
|
614
268
|
ResourceId: string | undefined;
|
|
615
269
|
MaxResults?: number | undefined;
|
|
@@ -650,27 +304,11 @@ export interface UntagResourceRequest {
|
|
|
650
304
|
ResourceId: string | undefined;
|
|
651
305
|
TagKeys: string[] | undefined;
|
|
652
306
|
}
|
|
653
|
-
export declare class TooManyRequests extends __BaseException {
|
|
654
|
-
readonly name: "TooManyRequests";
|
|
655
|
-
readonly $fault: "client";
|
|
656
|
-
ErrorCode: string | undefined;
|
|
657
|
-
Message?: string | undefined;
|
|
658
|
-
constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
|
|
659
|
-
}
|
|
660
307
|
export interface UpdateFileSystemRequest {
|
|
661
308
|
FileSystemId: string | undefined;
|
|
662
309
|
ThroughputMode?: ThroughputMode | undefined;
|
|
663
310
|
ProvisionedThroughputInMibps?: number | undefined;
|
|
664
311
|
}
|
|
665
|
-
export declare class ReplicationAlreadyExists extends __BaseException {
|
|
666
|
-
readonly name: "ReplicationAlreadyExists";
|
|
667
|
-
readonly $fault: "client";
|
|
668
|
-
ErrorCode?: string | undefined;
|
|
669
|
-
Message?: string | undefined;
|
|
670
|
-
constructor(
|
|
671
|
-
opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>
|
|
672
|
-
);
|
|
673
|
-
}
|
|
674
312
|
export interface UpdateFileSystemProtectionRequest {
|
|
675
313
|
FileSystemId: string | undefined;
|
|
676
314
|
ReplicationOverwriteProtection?: ReplicationOverwriteProtection | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-efs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-efs",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|