@aws-sdk/client-efs 3.185.0 → 3.188.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 +16 -0
- package/dist-es/EFS.js +122 -129
- package/dist-es/EFSClient.js +22 -28
- package/dist-es/commands/CreateAccessPointCommand.js +21 -28
- package/dist-es/commands/CreateFileSystemCommand.js +21 -28
- package/dist-es/commands/CreateMountTargetCommand.js +21 -28
- package/dist-es/commands/CreateReplicationConfigurationCommand.js +21 -28
- package/dist-es/commands/CreateTagsCommand.js +22 -29
- package/dist-es/commands/DeleteAccessPointCommand.js +22 -29
- package/dist-es/commands/DeleteFileSystemCommand.js +22 -29
- package/dist-es/commands/DeleteFileSystemPolicyCommand.js +22 -29
- package/dist-es/commands/DeleteMountTargetCommand.js +22 -29
- package/dist-es/commands/DeleteReplicationConfigurationCommand.js +22 -29
- package/dist-es/commands/DeleteTagsCommand.js +22 -29
- package/dist-es/commands/DescribeAccessPointsCommand.js +21 -28
- package/dist-es/commands/DescribeAccountPreferencesCommand.js +21 -28
- package/dist-es/commands/DescribeBackupPolicyCommand.js +21 -28
- package/dist-es/commands/DescribeFileSystemPolicyCommand.js +21 -28
- package/dist-es/commands/DescribeFileSystemsCommand.js +21 -28
- package/dist-es/commands/DescribeLifecycleConfigurationCommand.js +21 -28
- package/dist-es/commands/DescribeMountTargetSecurityGroupsCommand.js +21 -28
- package/dist-es/commands/DescribeMountTargetsCommand.js +21 -28
- package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +21 -28
- package/dist-es/commands/DescribeTagsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +22 -29
- package/dist-es/commands/PutAccountPreferencesCommand.js +21 -28
- package/dist-es/commands/PutBackupPolicyCommand.js +21 -28
- package/dist-es/commands/PutFileSystemPolicyCommand.js +21 -28
- package/dist-es/commands/PutLifecycleConfigurationCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +22 -29
- package/dist-es/commands/UntagResourceCommand.js +22 -29
- package/dist-es/commands/UpdateFileSystemCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/EFSServiceException.js +5 -10
- package/dist-es/models/models_0.js +560 -449
- package/dist-es/pagination/DescribeAccessPointsPaginator.js +25 -68
- package/dist-es/pagination/DescribeFileSystemsPaginator.js +25 -68
- package/dist-es/pagination/DescribeTagsPaginator.js +25 -68
- package/dist-es/pagination/ListTagsForResourcePaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2631 -3543
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { EFSServiceException as __BaseException } from "./EFSServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
export class AccessPointAlreadyExists extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessPointAlreadyExists",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessPointAlreadyExists";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessPointAlreadyExists.prototype);
|
|
12
|
+
this.ErrorCode = opts.ErrorCode;
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
this.AccessPointId = opts.AccessPointId;
|
|
14
15
|
}
|
|
15
|
-
|
|
16
|
-
}(__BaseException));
|
|
17
|
-
export { AccessPointAlreadyExists };
|
|
16
|
+
}
|
|
18
17
|
export var LifeCycleState;
|
|
19
18
|
(function (LifeCycleState) {
|
|
20
19
|
LifeCycleState["AVAILABLE"] = "available";
|
|
@@ -24,48 +23,48 @@ export var LifeCycleState;
|
|
|
24
23
|
LifeCycleState["ERROR"] = "error";
|
|
25
24
|
LifeCycleState["UPDATING"] = "updating";
|
|
26
25
|
})(LifeCycleState || (LifeCycleState = {}));
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
export class AccessPointLimitExceeded extends __BaseException {
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "AccessPointLimitExceeded",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
this.name = "AccessPointLimitExceeded";
|
|
34
|
+
this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(this, AccessPointLimitExceeded.prototype);
|
|
36
|
+
this.ErrorCode = opts.ErrorCode;
|
|
37
|
+
this.Message = opts.Message;
|
|
37
38
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
39
|
+
}
|
|
40
|
+
export class AccessPointNotFound extends __BaseException {
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "AccessPointNotFound",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
this.name = "AccessPointNotFound";
|
|
48
|
+
this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(this, AccessPointNotFound.prototype);
|
|
50
|
+
this.ErrorCode = opts.ErrorCode;
|
|
51
|
+
this.Message = opts.Message;
|
|
51
52
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
53
|
+
}
|
|
54
|
+
export class AvailabilityZonesMismatch extends __BaseException {
|
|
55
|
+
constructor(opts) {
|
|
56
|
+
super({
|
|
57
|
+
name: "AvailabilityZonesMismatch",
|
|
58
|
+
$fault: "client",
|
|
59
|
+
...opts,
|
|
60
|
+
});
|
|
61
|
+
this.name = "AvailabilityZonesMismatch";
|
|
62
|
+
this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(this, AvailabilityZonesMismatch.prototype);
|
|
64
|
+
this.ErrorCode = opts.ErrorCode;
|
|
65
|
+
this.Message = opts.Message;
|
|
65
66
|
}
|
|
66
|
-
|
|
67
|
-
}(__BaseException));
|
|
68
|
-
export { AvailabilityZonesMismatch };
|
|
67
|
+
}
|
|
69
68
|
export var Status;
|
|
70
69
|
(function (Status) {
|
|
71
70
|
Status["DISABLED"] = "DISABLED";
|
|
@@ -73,76 +72,76 @@ export var Status;
|
|
|
73
72
|
Status["ENABLED"] = "ENABLED";
|
|
74
73
|
Status["ENABLING"] = "ENABLING";
|
|
75
74
|
})(Status || (Status = {}));
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
75
|
+
export class BadRequest extends __BaseException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "BadRequest",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "BadRequest";
|
|
83
|
+
this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(this, BadRequest.prototype);
|
|
85
|
+
this.ErrorCode = opts.ErrorCode;
|
|
86
|
+
this.Message = opts.Message;
|
|
86
87
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
88
|
+
}
|
|
89
|
+
export class FileSystemNotFound extends __BaseException {
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "FileSystemNotFound",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
this.name = "FileSystemNotFound";
|
|
97
|
+
this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(this, FileSystemNotFound.prototype);
|
|
99
|
+
this.ErrorCode = opts.ErrorCode;
|
|
100
|
+
this.Message = opts.Message;
|
|
100
101
|
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
102
|
+
}
|
|
103
|
+
export class IncorrectFileSystemLifeCycleState extends __BaseException {
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "IncorrectFileSystemLifeCycleState",
|
|
107
|
+
$fault: "client",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
this.name = "IncorrectFileSystemLifeCycleState";
|
|
111
|
+
this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(this, IncorrectFileSystemLifeCycleState.prototype);
|
|
113
|
+
this.ErrorCode = opts.ErrorCode;
|
|
114
|
+
this.Message = opts.Message;
|
|
114
115
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
}
|
|
117
|
+
export class InternalServerError extends __BaseException {
|
|
118
|
+
constructor(opts) {
|
|
119
|
+
super({
|
|
120
|
+
name: "InternalServerError",
|
|
121
|
+
$fault: "server",
|
|
122
|
+
...opts,
|
|
123
|
+
});
|
|
124
|
+
this.name = "InternalServerError";
|
|
125
|
+
this.$fault = "server";
|
|
126
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
127
|
+
this.ErrorCode = opts.ErrorCode;
|
|
128
|
+
this.Message = opts.Message;
|
|
128
129
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
130
|
+
}
|
|
131
|
+
export class ThrottlingException extends __BaseException {
|
|
132
|
+
constructor(opts) {
|
|
133
|
+
super({
|
|
134
|
+
name: "ThrottlingException",
|
|
135
|
+
$fault: "client",
|
|
136
|
+
...opts,
|
|
137
|
+
});
|
|
138
|
+
this.name = "ThrottlingException";
|
|
139
|
+
this.$fault = "client";
|
|
140
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
141
|
+
this.ErrorCode = opts.ErrorCode;
|
|
142
|
+
this.Message = opts.Message;
|
|
142
143
|
}
|
|
143
|
-
|
|
144
|
-
}(__BaseException));
|
|
145
|
-
export { ThrottlingException };
|
|
144
|
+
}
|
|
146
145
|
export var PerformanceMode;
|
|
147
146
|
(function (PerformanceMode) {
|
|
148
147
|
PerformanceMode["GENERAL_PURPOSE"] = "generalPurpose";
|
|
@@ -153,175 +152,175 @@ export var ThroughputMode;
|
|
|
153
152
|
ThroughputMode["BURSTING"] = "bursting";
|
|
154
153
|
ThroughputMode["PROVISIONED"] = "provisioned";
|
|
155
154
|
})(ThroughputMode || (ThroughputMode = {}));
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
155
|
+
export class FileSystemAlreadyExists extends __BaseException {
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "FileSystemAlreadyExists",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
this.name = "FileSystemAlreadyExists";
|
|
163
|
+
this.$fault = "client";
|
|
164
|
+
Object.setPrototypeOf(this, FileSystemAlreadyExists.prototype);
|
|
165
|
+
this.ErrorCode = opts.ErrorCode;
|
|
166
|
+
this.Message = opts.Message;
|
|
167
|
+
this.FileSystemId = opts.FileSystemId;
|
|
167
168
|
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
169
|
+
}
|
|
170
|
+
export class FileSystemLimitExceeded extends __BaseException {
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "FileSystemLimitExceeded",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
this.name = "FileSystemLimitExceeded";
|
|
178
|
+
this.$fault = "client";
|
|
179
|
+
Object.setPrototypeOf(this, FileSystemLimitExceeded.prototype);
|
|
180
|
+
this.ErrorCode = opts.ErrorCode;
|
|
181
|
+
this.Message = opts.Message;
|
|
181
182
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
183
|
+
}
|
|
184
|
+
export class InsufficientThroughputCapacity extends __BaseException {
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InsufficientThroughputCapacity",
|
|
188
|
+
$fault: "server",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
this.name = "InsufficientThroughputCapacity";
|
|
192
|
+
this.$fault = "server";
|
|
193
|
+
Object.setPrototypeOf(this, InsufficientThroughputCapacity.prototype);
|
|
194
|
+
this.ErrorCode = opts.ErrorCode;
|
|
195
|
+
this.Message = opts.Message;
|
|
195
196
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
197
|
+
}
|
|
198
|
+
export class ThroughputLimitExceeded extends __BaseException {
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ThroughputLimitExceeded",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
this.name = "ThroughputLimitExceeded";
|
|
206
|
+
this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(this, ThroughputLimitExceeded.prototype);
|
|
208
|
+
this.ErrorCode = opts.ErrorCode;
|
|
209
|
+
this.Message = opts.Message;
|
|
209
210
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
211
|
+
}
|
|
212
|
+
export class UnsupportedAvailabilityZone extends __BaseException {
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "UnsupportedAvailabilityZone",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
this.name = "UnsupportedAvailabilityZone";
|
|
220
|
+
this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(this, UnsupportedAvailabilityZone.prototype);
|
|
222
|
+
this.ErrorCode = opts.ErrorCode;
|
|
223
|
+
this.Message = opts.Message;
|
|
223
224
|
}
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
225
|
+
}
|
|
226
|
+
export class IpAddressInUse extends __BaseException {
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "IpAddressInUse",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
this.name = "IpAddressInUse";
|
|
234
|
+
this.$fault = "client";
|
|
235
|
+
Object.setPrototypeOf(this, IpAddressInUse.prototype);
|
|
236
|
+
this.ErrorCode = opts.ErrorCode;
|
|
237
|
+
this.Message = opts.Message;
|
|
237
238
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
239
|
+
}
|
|
240
|
+
export class MountTargetConflict extends __BaseException {
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "MountTargetConflict",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
this.name = "MountTargetConflict";
|
|
248
|
+
this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(this, MountTargetConflict.prototype);
|
|
250
|
+
this.ErrorCode = opts.ErrorCode;
|
|
251
|
+
this.Message = opts.Message;
|
|
251
252
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
253
|
+
}
|
|
254
|
+
export class NetworkInterfaceLimitExceeded extends __BaseException {
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "NetworkInterfaceLimitExceeded",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
this.name = "NetworkInterfaceLimitExceeded";
|
|
262
|
+
this.$fault = "client";
|
|
263
|
+
Object.setPrototypeOf(this, NetworkInterfaceLimitExceeded.prototype);
|
|
264
|
+
this.ErrorCode = opts.ErrorCode;
|
|
265
|
+
this.Message = opts.Message;
|
|
265
266
|
}
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
267
|
+
}
|
|
268
|
+
export class NoFreeAddressesInSubnet extends __BaseException {
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "NoFreeAddressesInSubnet",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
this.name = "NoFreeAddressesInSubnet";
|
|
276
|
+
this.$fault = "client";
|
|
277
|
+
Object.setPrototypeOf(this, NoFreeAddressesInSubnet.prototype);
|
|
278
|
+
this.ErrorCode = opts.ErrorCode;
|
|
279
|
+
this.Message = opts.Message;
|
|
279
280
|
}
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
281
|
+
}
|
|
282
|
+
export class SecurityGroupLimitExceeded extends __BaseException {
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "SecurityGroupLimitExceeded",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
this.name = "SecurityGroupLimitExceeded";
|
|
290
|
+
this.$fault = "client";
|
|
291
|
+
Object.setPrototypeOf(this, SecurityGroupLimitExceeded.prototype);
|
|
292
|
+
this.ErrorCode = opts.ErrorCode;
|
|
293
|
+
this.Message = opts.Message;
|
|
293
294
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
295
|
+
}
|
|
296
|
+
export class SecurityGroupNotFound extends __BaseException {
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "SecurityGroupNotFound",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
this.name = "SecurityGroupNotFound";
|
|
304
|
+
this.$fault = "client";
|
|
305
|
+
Object.setPrototypeOf(this, SecurityGroupNotFound.prototype);
|
|
306
|
+
this.ErrorCode = opts.ErrorCode;
|
|
307
|
+
this.Message = opts.Message;
|
|
307
308
|
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
309
|
+
}
|
|
310
|
+
export class SubnetNotFound extends __BaseException {
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "SubnetNotFound",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
this.name = "SubnetNotFound";
|
|
318
|
+
this.$fault = "client";
|
|
319
|
+
Object.setPrototypeOf(this, SubnetNotFound.prototype);
|
|
320
|
+
this.ErrorCode = opts.ErrorCode;
|
|
321
|
+
this.Message = opts.Message;
|
|
321
322
|
}
|
|
322
|
-
|
|
323
|
-
}(__BaseException));
|
|
324
|
-
export { SubnetNotFound };
|
|
323
|
+
}
|
|
325
324
|
export var ReplicationStatus;
|
|
326
325
|
(function (ReplicationStatus) {
|
|
327
326
|
ReplicationStatus["DELETING"] = "DELETING";
|
|
@@ -329,76 +328,76 @@ export var ReplicationStatus;
|
|
|
329
328
|
ReplicationStatus["ENABLING"] = "ENABLING";
|
|
330
329
|
ReplicationStatus["ERROR"] = "ERROR";
|
|
331
330
|
})(ReplicationStatus || (ReplicationStatus = {}));
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
331
|
+
export class ReplicationNotFound extends __BaseException {
|
|
332
|
+
constructor(opts) {
|
|
333
|
+
super({
|
|
334
|
+
name: "ReplicationNotFound",
|
|
335
|
+
$fault: "client",
|
|
336
|
+
...opts,
|
|
337
|
+
});
|
|
338
|
+
this.name = "ReplicationNotFound";
|
|
339
|
+
this.$fault = "client";
|
|
340
|
+
Object.setPrototypeOf(this, ReplicationNotFound.prototype);
|
|
341
|
+
this.ErrorCode = opts.ErrorCode;
|
|
342
|
+
this.Message = opts.Message;
|
|
342
343
|
}
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
344
|
+
}
|
|
345
|
+
export class ValidationException extends __BaseException {
|
|
346
|
+
constructor(opts) {
|
|
347
|
+
super({
|
|
348
|
+
name: "ValidationException",
|
|
349
|
+
$fault: "client",
|
|
350
|
+
...opts,
|
|
351
|
+
});
|
|
352
|
+
this.name = "ValidationException";
|
|
353
|
+
this.$fault = "client";
|
|
354
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
355
|
+
this.ErrorCode = opts.ErrorCode;
|
|
356
|
+
this.Message = opts.Message;
|
|
356
357
|
}
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
358
|
+
}
|
|
359
|
+
export class FileSystemInUse extends __BaseException {
|
|
360
|
+
constructor(opts) {
|
|
361
|
+
super({
|
|
362
|
+
name: "FileSystemInUse",
|
|
363
|
+
$fault: "client",
|
|
364
|
+
...opts,
|
|
365
|
+
});
|
|
366
|
+
this.name = "FileSystemInUse";
|
|
367
|
+
this.$fault = "client";
|
|
368
|
+
Object.setPrototypeOf(this, FileSystemInUse.prototype);
|
|
369
|
+
this.ErrorCode = opts.ErrorCode;
|
|
370
|
+
this.Message = opts.Message;
|
|
370
371
|
}
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
372
|
+
}
|
|
373
|
+
export class DependencyTimeout extends __BaseException {
|
|
374
|
+
constructor(opts) {
|
|
375
|
+
super({
|
|
376
|
+
name: "DependencyTimeout",
|
|
377
|
+
$fault: "server",
|
|
378
|
+
...opts,
|
|
379
|
+
});
|
|
380
|
+
this.name = "DependencyTimeout";
|
|
381
|
+
this.$fault = "server";
|
|
382
|
+
Object.setPrototypeOf(this, DependencyTimeout.prototype);
|
|
383
|
+
this.ErrorCode = opts.ErrorCode;
|
|
384
|
+
this.Message = opts.Message;
|
|
384
385
|
}
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
386
|
+
}
|
|
387
|
+
export class MountTargetNotFound extends __BaseException {
|
|
388
|
+
constructor(opts) {
|
|
389
|
+
super({
|
|
390
|
+
name: "MountTargetNotFound",
|
|
391
|
+
$fault: "client",
|
|
392
|
+
...opts,
|
|
393
|
+
});
|
|
394
|
+
this.name = "MountTargetNotFound";
|
|
395
|
+
this.$fault = "client";
|
|
396
|
+
Object.setPrototypeOf(this, MountTargetNotFound.prototype);
|
|
397
|
+
this.ErrorCode = opts.ErrorCode;
|
|
398
|
+
this.Message = opts.Message;
|
|
398
399
|
}
|
|
399
|
-
|
|
400
|
-
}(__BaseException));
|
|
401
|
-
export { MountTargetNotFound };
|
|
400
|
+
}
|
|
402
401
|
export var ResourceIdType;
|
|
403
402
|
(function (ResourceIdType) {
|
|
404
403
|
ResourceIdType["LongId"] = "LONG_ID";
|
|
@@ -409,20 +408,20 @@ export var Resource;
|
|
|
409
408
|
Resource["FileSystem"] = "FILE_SYSTEM";
|
|
410
409
|
Resource["MountTarget"] = "MOUNT_TARGET";
|
|
411
410
|
})(Resource || (Resource = {}));
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
411
|
+
export class PolicyNotFound extends __BaseException {
|
|
412
|
+
constructor(opts) {
|
|
413
|
+
super({
|
|
414
|
+
name: "PolicyNotFound",
|
|
415
|
+
$fault: "client",
|
|
416
|
+
...opts,
|
|
417
|
+
});
|
|
418
|
+
this.name = "PolicyNotFound";
|
|
419
|
+
this.$fault = "client";
|
|
420
|
+
Object.setPrototypeOf(this, PolicyNotFound.prototype);
|
|
421
|
+
this.ErrorCode = opts.ErrorCode;
|
|
422
|
+
this.Message = opts.Message;
|
|
422
423
|
}
|
|
423
|
-
|
|
424
|
-
}(__BaseException));
|
|
425
|
-
export { PolicyNotFound };
|
|
424
|
+
}
|
|
426
425
|
export var TransitionToIARules;
|
|
427
426
|
(function (TransitionToIARules) {
|
|
428
427
|
TransitionToIARules["AFTER_14_DAYS"] = "AFTER_14_DAYS";
|
|
@@ -435,101 +434,213 @@ export var TransitionToPrimaryStorageClassRules;
|
|
|
435
434
|
(function (TransitionToPrimaryStorageClassRules) {
|
|
436
435
|
TransitionToPrimaryStorageClassRules["AFTER_1_ACCESS"] = "AFTER_1_ACCESS";
|
|
437
436
|
})(TransitionToPrimaryStorageClassRules || (TransitionToPrimaryStorageClassRules = {}));
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
437
|
+
export class IncorrectMountTargetState extends __BaseException {
|
|
438
|
+
constructor(opts) {
|
|
439
|
+
super({
|
|
440
|
+
name: "IncorrectMountTargetState",
|
|
441
|
+
$fault: "client",
|
|
442
|
+
...opts,
|
|
443
|
+
});
|
|
444
|
+
this.name = "IncorrectMountTargetState";
|
|
445
|
+
this.$fault = "client";
|
|
446
|
+
Object.setPrototypeOf(this, IncorrectMountTargetState.prototype);
|
|
447
|
+
this.ErrorCode = opts.ErrorCode;
|
|
448
|
+
this.Message = opts.Message;
|
|
448
449
|
}
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
450
|
+
}
|
|
451
|
+
export class InvalidPolicyException extends __BaseException {
|
|
452
|
+
constructor(opts) {
|
|
453
|
+
super({
|
|
454
|
+
name: "InvalidPolicyException",
|
|
455
|
+
$fault: "client",
|
|
456
|
+
...opts,
|
|
457
|
+
});
|
|
458
|
+
this.name = "InvalidPolicyException";
|
|
459
|
+
this.$fault = "client";
|
|
460
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
461
|
+
this.ErrorCode = opts.ErrorCode;
|
|
462
|
+
this.Message = opts.Message;
|
|
462
463
|
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
464
|
+
}
|
|
465
|
+
export class TooManyRequests extends __BaseException {
|
|
466
|
+
constructor(opts) {
|
|
467
|
+
super({
|
|
468
|
+
name: "TooManyRequests",
|
|
469
|
+
$fault: "client",
|
|
470
|
+
...opts,
|
|
471
|
+
});
|
|
472
|
+
this.name = "TooManyRequests";
|
|
473
|
+
this.$fault = "client";
|
|
474
|
+
Object.setPrototypeOf(this, TooManyRequests.prototype);
|
|
475
|
+
this.ErrorCode = opts.ErrorCode;
|
|
476
|
+
this.Message = opts.Message;
|
|
476
477
|
}
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
export
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
export
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
export
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
export
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
export
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
export
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
export
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
export
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
export
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
export
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
export
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
export
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
export
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
export
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
export
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
export
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
export
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
export
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
export
|
|
478
|
+
}
|
|
479
|
+
export const PosixUserFilterSensitiveLog = (obj) => ({
|
|
480
|
+
...obj,
|
|
481
|
+
});
|
|
482
|
+
export const CreationInfoFilterSensitiveLog = (obj) => ({
|
|
483
|
+
...obj,
|
|
484
|
+
});
|
|
485
|
+
export const RootDirectoryFilterSensitiveLog = (obj) => ({
|
|
486
|
+
...obj,
|
|
487
|
+
});
|
|
488
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
});
|
|
491
|
+
export const AccessPointDescriptionFilterSensitiveLog = (obj) => ({
|
|
492
|
+
...obj,
|
|
493
|
+
});
|
|
494
|
+
export const BackupPolicyFilterSensitiveLog = (obj) => ({
|
|
495
|
+
...obj,
|
|
496
|
+
});
|
|
497
|
+
export const BackupPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
498
|
+
...obj,
|
|
499
|
+
});
|
|
500
|
+
export const CreateAccessPointRequestFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
});
|
|
503
|
+
export const CreateFileSystemRequestFilterSensitiveLog = (obj) => ({
|
|
504
|
+
...obj,
|
|
505
|
+
});
|
|
506
|
+
export const FileSystemSizeFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
});
|
|
509
|
+
export const FileSystemDescriptionFilterSensitiveLog = (obj) => ({
|
|
510
|
+
...obj,
|
|
511
|
+
});
|
|
512
|
+
export const CreateMountTargetRequestFilterSensitiveLog = (obj) => ({
|
|
513
|
+
...obj,
|
|
514
|
+
});
|
|
515
|
+
export const MountTargetDescriptionFilterSensitiveLog = (obj) => ({
|
|
516
|
+
...obj,
|
|
517
|
+
});
|
|
518
|
+
export const DestinationToCreateFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
});
|
|
521
|
+
export const CreateReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
522
|
+
...obj,
|
|
523
|
+
});
|
|
524
|
+
export const DestinationFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
});
|
|
527
|
+
export const ReplicationConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
528
|
+
...obj,
|
|
529
|
+
});
|
|
530
|
+
export const CreateTagsRequestFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
});
|
|
533
|
+
export const DeleteAccessPointRequestFilterSensitiveLog = (obj) => ({
|
|
534
|
+
...obj,
|
|
535
|
+
});
|
|
536
|
+
export const DeleteFileSystemRequestFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
});
|
|
539
|
+
export const DeleteFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
540
|
+
...obj,
|
|
541
|
+
});
|
|
542
|
+
export const DeleteMountTargetRequestFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
});
|
|
545
|
+
export const DeleteReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
});
|
|
548
|
+
export const DeleteTagsRequestFilterSensitiveLog = (obj) => ({
|
|
549
|
+
...obj,
|
|
550
|
+
});
|
|
551
|
+
export const DescribeAccessPointsRequestFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
});
|
|
554
|
+
export const DescribeAccessPointsResponseFilterSensitiveLog = (obj) => ({
|
|
555
|
+
...obj,
|
|
556
|
+
});
|
|
557
|
+
export const DescribeAccountPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
});
|
|
560
|
+
export const ResourceIdPreferenceFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const DescribeAccountPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
});
|
|
566
|
+
export const DescribeBackupPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
export const DescribeFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
570
|
+
...obj,
|
|
571
|
+
});
|
|
572
|
+
export const FileSystemPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
573
|
+
...obj,
|
|
574
|
+
});
|
|
575
|
+
export const DescribeFileSystemsRequestFilterSensitiveLog = (obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
});
|
|
578
|
+
export const DescribeFileSystemsResponseFilterSensitiveLog = (obj) => ({
|
|
579
|
+
...obj,
|
|
580
|
+
});
|
|
581
|
+
export const DescribeLifecycleConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
+
...obj,
|
|
583
|
+
});
|
|
584
|
+
export const LifecyclePolicyFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
});
|
|
587
|
+
export const LifecycleConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
588
|
+
...obj,
|
|
589
|
+
});
|
|
590
|
+
export const DescribeMountTargetsRequestFilterSensitiveLog = (obj) => ({
|
|
591
|
+
...obj,
|
|
592
|
+
});
|
|
593
|
+
export const DescribeMountTargetsResponseFilterSensitiveLog = (obj) => ({
|
|
594
|
+
...obj,
|
|
595
|
+
});
|
|
596
|
+
export const DescribeMountTargetSecurityGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
597
|
+
...obj,
|
|
598
|
+
});
|
|
599
|
+
export const DescribeMountTargetSecurityGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
600
|
+
...obj,
|
|
601
|
+
});
|
|
602
|
+
export const DescribeReplicationConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
603
|
+
...obj,
|
|
604
|
+
});
|
|
605
|
+
export const DescribeReplicationConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
606
|
+
...obj,
|
|
607
|
+
});
|
|
608
|
+
export const DescribeTagsRequestFilterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
export const DescribeTagsResponseFilterSensitiveLog = (obj) => ({
|
|
612
|
+
...obj,
|
|
613
|
+
});
|
|
614
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
615
|
+
...obj,
|
|
616
|
+
});
|
|
617
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
618
|
+
...obj,
|
|
619
|
+
});
|
|
620
|
+
export const ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
});
|
|
623
|
+
export const PutAccountPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
624
|
+
...obj,
|
|
625
|
+
});
|
|
626
|
+
export const PutAccountPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
export const PutBackupPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
});
|
|
632
|
+
export const PutFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
633
|
+
...obj,
|
|
634
|
+
});
|
|
635
|
+
export const PutLifecycleConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
636
|
+
...obj,
|
|
637
|
+
});
|
|
638
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
639
|
+
...obj,
|
|
640
|
+
});
|
|
641
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
export const UpdateFileSystemRequestFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|