@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
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const LifeCycleState: {
|
|
6
|
+
readonly AVAILABLE: "available";
|
|
7
|
+
readonly CREATING: "creating";
|
|
8
|
+
readonly DELETED: "deleted";
|
|
9
|
+
readonly DELETING: "deleting";
|
|
10
|
+
readonly ERROR: "error";
|
|
11
|
+
readonly UPDATING: "updating";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type LifeCycleState = (typeof LifeCycleState)[keyof typeof LifeCycleState];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const Status: {
|
|
22
|
+
readonly DISABLED: "DISABLED";
|
|
23
|
+
readonly DISABLING: "DISABLING";
|
|
24
|
+
readonly ENABLED: "ENABLED";
|
|
25
|
+
readonly ENABLING: "ENABLING";
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* @enum
|
|
34
|
+
*/
|
|
35
|
+
export declare const PerformanceMode: {
|
|
36
|
+
readonly GENERAL_PURPOSE: "generalPurpose";
|
|
37
|
+
readonly MAX_IO: "maxIO";
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export type PerformanceMode = (typeof PerformanceMode)[keyof typeof PerformanceMode];
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
* @enum
|
|
46
|
+
*/
|
|
47
|
+
export declare const ThroughputMode: {
|
|
48
|
+
readonly BURSTING: "bursting";
|
|
49
|
+
readonly ELASTIC: "elastic";
|
|
50
|
+
readonly PROVISIONED: "provisioned";
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export type ThroughputMode = (typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* @enum
|
|
59
|
+
*/
|
|
60
|
+
export declare const ReplicationOverwriteProtection: {
|
|
61
|
+
readonly DISABLED: "DISABLED";
|
|
62
|
+
readonly ENABLED: "ENABLED";
|
|
63
|
+
readonly REPLICATING: "REPLICATING";
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export type ReplicationOverwriteProtection = (typeof ReplicationOverwriteProtection)[keyof typeof ReplicationOverwriteProtection];
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
* @enum
|
|
72
|
+
*/
|
|
73
|
+
export declare const IpAddressType: {
|
|
74
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
75
|
+
readonly IPV4_ONLY: "IPV4_ONLY";
|
|
76
|
+
readonly IPV6_ONLY: "IPV6_ONLY";
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* @enum
|
|
85
|
+
*/
|
|
86
|
+
export declare const ReplicationStatus: {
|
|
87
|
+
readonly DELETING: "DELETING";
|
|
88
|
+
readonly ENABLED: "ENABLED";
|
|
89
|
+
readonly ENABLING: "ENABLING";
|
|
90
|
+
readonly ERROR: "ERROR";
|
|
91
|
+
readonly PAUSED: "PAUSED";
|
|
92
|
+
readonly PAUSING: "PAUSING";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type ReplicationStatus = (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const DeletionMode: {
|
|
103
|
+
readonly ALL_CONFIGURATIONS: "ALL_CONFIGURATIONS";
|
|
104
|
+
readonly LOCAL_CONFIGURATION_ONLY: "LOCAL_CONFIGURATION_ONLY";
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* @enum
|
|
113
|
+
*/
|
|
114
|
+
export declare const ResourceIdType: {
|
|
115
|
+
readonly LongId: "LONG_ID";
|
|
116
|
+
readonly ShortId: "SHORT_ID";
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export type ResourceIdType = (typeof ResourceIdType)[keyof typeof ResourceIdType];
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* @enum
|
|
125
|
+
*/
|
|
126
|
+
export declare const Resource: {
|
|
127
|
+
readonly FileSystem: "FILE_SYSTEM";
|
|
128
|
+
readonly MountTarget: "MOUNT_TARGET";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type Resource = (typeof Resource)[keyof typeof Resource];
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
* @enum
|
|
137
|
+
*/
|
|
138
|
+
export declare const TransitionToArchiveRules: {
|
|
139
|
+
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
140
|
+
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
141
|
+
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
142
|
+
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
143
|
+
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
144
|
+
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
145
|
+
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
146
|
+
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
147
|
+
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
export type TransitionToArchiveRules = (typeof TransitionToArchiveRules)[keyof typeof TransitionToArchiveRules];
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
* @enum
|
|
156
|
+
*/
|
|
157
|
+
export declare const TransitionToIARules: {
|
|
158
|
+
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
159
|
+
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
160
|
+
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
161
|
+
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
162
|
+
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
163
|
+
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
164
|
+
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
165
|
+
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
166
|
+
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type TransitionToIARules = (typeof TransitionToIARules)[keyof typeof TransitionToIARules];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const TransitionToPrimaryStorageClassRules: {
|
|
177
|
+
readonly AFTER_1_ACCESS: "AFTER_1_ACCESS";
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export type TransitionToPrimaryStorageClassRules = (typeof TransitionToPrimaryStorageClassRules)[keyof typeof TransitionToPrimaryStorageClassRules];
|