@aws-sdk/client-efs 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/EFSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +440 -2
- package/dist-cjs/protocols/Aws_restJson1.js +455 -1378
- package/dist-es/index.js +1 -0
- package/dist-es/models/EFSServiceException.js +12 -0
- package/dist-es/models/models_0.js +410 -1
- package/dist-es/protocols/Aws_restJson1.js +777 -1528
- package/dist-types/EFSClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/EFSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +205 -88
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/EFSClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/EFSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -88
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-efs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-efs
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-efs
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EFSServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./EFS"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./EFSClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var EFSServiceException_1 = require("./models/EFSServiceException");
|
|
11
|
+
Object.defineProperty(exports, "EFSServiceException", { enumerable: true, get: function () { return EFSServiceException_1.EFSServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EFSServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class EFSServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, EFSServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.EFSServiceException = EFSServiceException;
|
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateFileSystemRequest = exports.UntagResourceRequest = exports.TagResourceRequest = exports.PutLifecycleConfigurationRequest = exports.PutFileSystemPolicyRequest = exports.PutBackupPolicyRequest = exports.PutAccountPreferencesResponse = exports.PutAccountPreferencesRequest = exports.ModifyMountTargetSecurityGroupsRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.DescribeTagsResponse = exports.DescribeTagsRequest = exports.DescribeReplicationConfigurationsResponse = exports.DescribeReplicationConfigurationsRequest = void 0;
|
|
3
|
+
exports.DeleteMountTargetRequest = exports.DeleteFileSystemPolicyRequest = exports.FileSystemInUse = exports.DeleteFileSystemRequest = exports.DeleteAccessPointRequest = exports.CreateTagsRequest = exports.ValidationException = exports.ReplicationNotFound = exports.ReplicationConfigurationDescription = exports.Destination = exports.ReplicationStatus = exports.CreateReplicationConfigurationRequest = exports.DestinationToCreate = exports.SubnetNotFound = exports.SecurityGroupNotFound = exports.SecurityGroupLimitExceeded = exports.NoFreeAddressesInSubnet = exports.NetworkInterfaceLimitExceeded = exports.MountTargetDescription = exports.MountTargetConflict = exports.IpAddressInUse = exports.CreateMountTargetRequest = exports.UnsupportedAvailabilityZone = exports.ThroughputLimitExceeded = exports.InsufficientThroughputCapacity = exports.FileSystemLimitExceeded = exports.FileSystemDescription = exports.FileSystemSize = exports.FileSystemAlreadyExists = exports.CreateFileSystemRequest = exports.ThroughputMode = exports.PerformanceMode = exports.InternalServerError = exports.IncorrectFileSystemLifeCycleState = exports.FileSystemNotFound = exports.CreateAccessPointRequest = exports.BadRequest = exports.BackupPolicyDescription = exports.BackupPolicy = exports.Status = exports.AvailabilityZonesMismatch = exports.AccessPointNotFound = exports.AccessPointLimitExceeded = exports.AccessPointDescription = exports.Tag = exports.RootDirectory = exports.CreationInfo = exports.PosixUser = exports.LifeCycleState = exports.AccessPointAlreadyExists = void 0;
|
|
4
|
+
exports.UpdateFileSystemRequest = exports.TooManyRequests = exports.UntagResourceRequest = exports.TagResourceRequest = exports.PutLifecycleConfigurationRequest = exports.PutFileSystemPolicyRequest = exports.PutBackupPolicyRequest = exports.PutAccountPreferencesResponse = exports.PutAccountPreferencesRequest = exports.ModifyMountTargetSecurityGroupsRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.InvalidPolicyException = exports.DescribeTagsResponse = exports.DescribeTagsRequest = exports.DescribeReplicationConfigurationsResponse = exports.DescribeReplicationConfigurationsRequest = exports.IncorrectMountTargetState = exports.DescribeMountTargetSecurityGroupsResponse = exports.DescribeMountTargetSecurityGroupsRequest = exports.DescribeMountTargetsResponse = exports.DescribeMountTargetsRequest = exports.LifecycleConfigurationDescription = exports.LifecyclePolicy = exports.TransitionToPrimaryStorageClassRules = exports.TransitionToIARules = exports.DescribeLifecycleConfigurationRequest = exports.DescribeFileSystemsResponse = exports.DescribeFileSystemsRequest = exports.FileSystemPolicyDescription = exports.DescribeFileSystemPolicyRequest = exports.PolicyNotFound = exports.DescribeBackupPolicyRequest = exports.DescribeAccountPreferencesResponse = exports.ResourceIdPreference = exports.Resource = exports.ResourceIdType = exports.DescribeAccountPreferencesRequest = exports.DescribeAccessPointsResponse = exports.DescribeAccessPointsRequest = exports.DeleteTagsRequest = exports.DeleteReplicationConfigurationRequest = exports.MountTargetNotFound = exports.DependencyTimeout = void 0;
|
|
5
|
+
const EFSServiceException_1 = require("./EFSServiceException");
|
|
6
|
+
class AccessPointAlreadyExists extends EFSServiceException_1.EFSServiceException {
|
|
7
|
+
constructor(opts) {
|
|
8
|
+
super({
|
|
9
|
+
name: "AccessPointAlreadyExists",
|
|
10
|
+
$fault: "client",
|
|
11
|
+
...opts,
|
|
12
|
+
});
|
|
13
|
+
this.name = "AccessPointAlreadyExists";
|
|
14
|
+
this.$fault = "client";
|
|
15
|
+
Object.setPrototypeOf(this, AccessPointAlreadyExists.prototype);
|
|
16
|
+
this.ErrorCode = opts.ErrorCode;
|
|
17
|
+
this.Message = opts.Message;
|
|
18
|
+
this.AccessPointId = opts.AccessPointId;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
exports.AccessPointAlreadyExists = AccessPointAlreadyExists;
|
|
5
22
|
var LifeCycleState;
|
|
6
23
|
(function (LifeCycleState) {
|
|
7
24
|
LifeCycleState["AVAILABLE"] = "available";
|
|
@@ -41,6 +58,51 @@ var AccessPointDescription;
|
|
|
41
58
|
...obj,
|
|
42
59
|
});
|
|
43
60
|
})(AccessPointDescription = exports.AccessPointDescription || (exports.AccessPointDescription = {}));
|
|
61
|
+
class AccessPointLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "AccessPointLimitExceeded",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
this.name = "AccessPointLimitExceeded";
|
|
69
|
+
this.$fault = "client";
|
|
70
|
+
Object.setPrototypeOf(this, AccessPointLimitExceeded.prototype);
|
|
71
|
+
this.ErrorCode = opts.ErrorCode;
|
|
72
|
+
this.Message = opts.Message;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.AccessPointLimitExceeded = AccessPointLimitExceeded;
|
|
76
|
+
class AccessPointNotFound extends EFSServiceException_1.EFSServiceException {
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "AccessPointNotFound",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
this.name = "AccessPointNotFound";
|
|
84
|
+
this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(this, AccessPointNotFound.prototype);
|
|
86
|
+
this.ErrorCode = opts.ErrorCode;
|
|
87
|
+
this.Message = opts.Message;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
exports.AccessPointNotFound = AccessPointNotFound;
|
|
91
|
+
class AvailabilityZonesMismatch extends EFSServiceException_1.EFSServiceException {
|
|
92
|
+
constructor(opts) {
|
|
93
|
+
super({
|
|
94
|
+
name: "AvailabilityZonesMismatch",
|
|
95
|
+
$fault: "client",
|
|
96
|
+
...opts,
|
|
97
|
+
});
|
|
98
|
+
this.name = "AvailabilityZonesMismatch";
|
|
99
|
+
this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(this, AvailabilityZonesMismatch.prototype);
|
|
101
|
+
this.ErrorCode = opts.ErrorCode;
|
|
102
|
+
this.Message = opts.Message;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.AvailabilityZonesMismatch = AvailabilityZonesMismatch;
|
|
44
106
|
var Status;
|
|
45
107
|
(function (Status) {
|
|
46
108
|
Status["DISABLED"] = "DISABLED";
|
|
@@ -60,12 +122,72 @@ var BackupPolicyDescription;
|
|
|
60
122
|
...obj,
|
|
61
123
|
});
|
|
62
124
|
})(BackupPolicyDescription = exports.BackupPolicyDescription || (exports.BackupPolicyDescription = {}));
|
|
125
|
+
class BadRequest extends EFSServiceException_1.EFSServiceException {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "BadRequest",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
this.name = "BadRequest";
|
|
133
|
+
this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(this, BadRequest.prototype);
|
|
135
|
+
this.ErrorCode = opts.ErrorCode;
|
|
136
|
+
this.Message = opts.Message;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
exports.BadRequest = BadRequest;
|
|
63
140
|
var CreateAccessPointRequest;
|
|
64
141
|
(function (CreateAccessPointRequest) {
|
|
65
142
|
CreateAccessPointRequest.filterSensitiveLog = (obj) => ({
|
|
66
143
|
...obj,
|
|
67
144
|
});
|
|
68
145
|
})(CreateAccessPointRequest = exports.CreateAccessPointRequest || (exports.CreateAccessPointRequest = {}));
|
|
146
|
+
class FileSystemNotFound extends EFSServiceException_1.EFSServiceException {
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "FileSystemNotFound",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
this.name = "FileSystemNotFound";
|
|
154
|
+
this.$fault = "client";
|
|
155
|
+
Object.setPrototypeOf(this, FileSystemNotFound.prototype);
|
|
156
|
+
this.ErrorCode = opts.ErrorCode;
|
|
157
|
+
this.Message = opts.Message;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
exports.FileSystemNotFound = FileSystemNotFound;
|
|
161
|
+
class IncorrectFileSystemLifeCycleState extends EFSServiceException_1.EFSServiceException {
|
|
162
|
+
constructor(opts) {
|
|
163
|
+
super({
|
|
164
|
+
name: "IncorrectFileSystemLifeCycleState",
|
|
165
|
+
$fault: "client",
|
|
166
|
+
...opts,
|
|
167
|
+
});
|
|
168
|
+
this.name = "IncorrectFileSystemLifeCycleState";
|
|
169
|
+
this.$fault = "client";
|
|
170
|
+
Object.setPrototypeOf(this, IncorrectFileSystemLifeCycleState.prototype);
|
|
171
|
+
this.ErrorCode = opts.ErrorCode;
|
|
172
|
+
this.Message = opts.Message;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
exports.IncorrectFileSystemLifeCycleState = IncorrectFileSystemLifeCycleState;
|
|
176
|
+
class InternalServerError extends EFSServiceException_1.EFSServiceException {
|
|
177
|
+
constructor(opts) {
|
|
178
|
+
super({
|
|
179
|
+
name: "InternalServerError",
|
|
180
|
+
$fault: "server",
|
|
181
|
+
...opts,
|
|
182
|
+
});
|
|
183
|
+
this.name = "InternalServerError";
|
|
184
|
+
this.$fault = "server";
|
|
185
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
186
|
+
this.ErrorCode = opts.ErrorCode;
|
|
187
|
+
this.Message = opts.Message;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
exports.InternalServerError = InternalServerError;
|
|
69
191
|
var PerformanceMode;
|
|
70
192
|
(function (PerformanceMode) {
|
|
71
193
|
PerformanceMode["GENERAL_PURPOSE"] = "generalPurpose";
|
|
@@ -82,6 +204,22 @@ var CreateFileSystemRequest;
|
|
|
82
204
|
...obj,
|
|
83
205
|
});
|
|
84
206
|
})(CreateFileSystemRequest = exports.CreateFileSystemRequest || (exports.CreateFileSystemRequest = {}));
|
|
207
|
+
class FileSystemAlreadyExists extends EFSServiceException_1.EFSServiceException {
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "FileSystemAlreadyExists",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
this.name = "FileSystemAlreadyExists";
|
|
215
|
+
this.$fault = "client";
|
|
216
|
+
Object.setPrototypeOf(this, FileSystemAlreadyExists.prototype);
|
|
217
|
+
this.ErrorCode = opts.ErrorCode;
|
|
218
|
+
this.Message = opts.Message;
|
|
219
|
+
this.FileSystemId = opts.FileSystemId;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
exports.FileSystemAlreadyExists = FileSystemAlreadyExists;
|
|
85
223
|
var FileSystemSize;
|
|
86
224
|
(function (FileSystemSize) {
|
|
87
225
|
FileSystemSize.filterSensitiveLog = (obj) => ({
|
|
@@ -94,18 +232,183 @@ var FileSystemDescription;
|
|
|
94
232
|
...obj,
|
|
95
233
|
});
|
|
96
234
|
})(FileSystemDescription = exports.FileSystemDescription || (exports.FileSystemDescription = {}));
|
|
235
|
+
class FileSystemLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
236
|
+
constructor(opts) {
|
|
237
|
+
super({
|
|
238
|
+
name: "FileSystemLimitExceeded",
|
|
239
|
+
$fault: "client",
|
|
240
|
+
...opts,
|
|
241
|
+
});
|
|
242
|
+
this.name = "FileSystemLimitExceeded";
|
|
243
|
+
this.$fault = "client";
|
|
244
|
+
Object.setPrototypeOf(this, FileSystemLimitExceeded.prototype);
|
|
245
|
+
this.ErrorCode = opts.ErrorCode;
|
|
246
|
+
this.Message = opts.Message;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
exports.FileSystemLimitExceeded = FileSystemLimitExceeded;
|
|
250
|
+
class InsufficientThroughputCapacity extends EFSServiceException_1.EFSServiceException {
|
|
251
|
+
constructor(opts) {
|
|
252
|
+
super({
|
|
253
|
+
name: "InsufficientThroughputCapacity",
|
|
254
|
+
$fault: "server",
|
|
255
|
+
...opts,
|
|
256
|
+
});
|
|
257
|
+
this.name = "InsufficientThroughputCapacity";
|
|
258
|
+
this.$fault = "server";
|
|
259
|
+
Object.setPrototypeOf(this, InsufficientThroughputCapacity.prototype);
|
|
260
|
+
this.ErrorCode = opts.ErrorCode;
|
|
261
|
+
this.Message = opts.Message;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
exports.InsufficientThroughputCapacity = InsufficientThroughputCapacity;
|
|
265
|
+
class ThroughputLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "ThroughputLimitExceeded",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
this.name = "ThroughputLimitExceeded";
|
|
273
|
+
this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(this, ThroughputLimitExceeded.prototype);
|
|
275
|
+
this.ErrorCode = opts.ErrorCode;
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
exports.ThroughputLimitExceeded = ThroughputLimitExceeded;
|
|
280
|
+
class UnsupportedAvailabilityZone extends EFSServiceException_1.EFSServiceException {
|
|
281
|
+
constructor(opts) {
|
|
282
|
+
super({
|
|
283
|
+
name: "UnsupportedAvailabilityZone",
|
|
284
|
+
$fault: "client",
|
|
285
|
+
...opts,
|
|
286
|
+
});
|
|
287
|
+
this.name = "UnsupportedAvailabilityZone";
|
|
288
|
+
this.$fault = "client";
|
|
289
|
+
Object.setPrototypeOf(this, UnsupportedAvailabilityZone.prototype);
|
|
290
|
+
this.ErrorCode = opts.ErrorCode;
|
|
291
|
+
this.Message = opts.Message;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
exports.UnsupportedAvailabilityZone = UnsupportedAvailabilityZone;
|
|
97
295
|
var CreateMountTargetRequest;
|
|
98
296
|
(function (CreateMountTargetRequest) {
|
|
99
297
|
CreateMountTargetRequest.filterSensitiveLog = (obj) => ({
|
|
100
298
|
...obj,
|
|
101
299
|
});
|
|
102
300
|
})(CreateMountTargetRequest = exports.CreateMountTargetRequest || (exports.CreateMountTargetRequest = {}));
|
|
301
|
+
class IpAddressInUse extends EFSServiceException_1.EFSServiceException {
|
|
302
|
+
constructor(opts) {
|
|
303
|
+
super({
|
|
304
|
+
name: "IpAddressInUse",
|
|
305
|
+
$fault: "client",
|
|
306
|
+
...opts,
|
|
307
|
+
});
|
|
308
|
+
this.name = "IpAddressInUse";
|
|
309
|
+
this.$fault = "client";
|
|
310
|
+
Object.setPrototypeOf(this, IpAddressInUse.prototype);
|
|
311
|
+
this.ErrorCode = opts.ErrorCode;
|
|
312
|
+
this.Message = opts.Message;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
exports.IpAddressInUse = IpAddressInUse;
|
|
316
|
+
class MountTargetConflict extends EFSServiceException_1.EFSServiceException {
|
|
317
|
+
constructor(opts) {
|
|
318
|
+
super({
|
|
319
|
+
name: "MountTargetConflict",
|
|
320
|
+
$fault: "client",
|
|
321
|
+
...opts,
|
|
322
|
+
});
|
|
323
|
+
this.name = "MountTargetConflict";
|
|
324
|
+
this.$fault = "client";
|
|
325
|
+
Object.setPrototypeOf(this, MountTargetConflict.prototype);
|
|
326
|
+
this.ErrorCode = opts.ErrorCode;
|
|
327
|
+
this.Message = opts.Message;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
exports.MountTargetConflict = MountTargetConflict;
|
|
103
331
|
var MountTargetDescription;
|
|
104
332
|
(function (MountTargetDescription) {
|
|
105
333
|
MountTargetDescription.filterSensitiveLog = (obj) => ({
|
|
106
334
|
...obj,
|
|
107
335
|
});
|
|
108
336
|
})(MountTargetDescription = exports.MountTargetDescription || (exports.MountTargetDescription = {}));
|
|
337
|
+
class NetworkInterfaceLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
338
|
+
constructor(opts) {
|
|
339
|
+
super({
|
|
340
|
+
name: "NetworkInterfaceLimitExceeded",
|
|
341
|
+
$fault: "client",
|
|
342
|
+
...opts,
|
|
343
|
+
});
|
|
344
|
+
this.name = "NetworkInterfaceLimitExceeded";
|
|
345
|
+
this.$fault = "client";
|
|
346
|
+
Object.setPrototypeOf(this, NetworkInterfaceLimitExceeded.prototype);
|
|
347
|
+
this.ErrorCode = opts.ErrorCode;
|
|
348
|
+
this.Message = opts.Message;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
exports.NetworkInterfaceLimitExceeded = NetworkInterfaceLimitExceeded;
|
|
352
|
+
class NoFreeAddressesInSubnet extends EFSServiceException_1.EFSServiceException {
|
|
353
|
+
constructor(opts) {
|
|
354
|
+
super({
|
|
355
|
+
name: "NoFreeAddressesInSubnet",
|
|
356
|
+
$fault: "client",
|
|
357
|
+
...opts,
|
|
358
|
+
});
|
|
359
|
+
this.name = "NoFreeAddressesInSubnet";
|
|
360
|
+
this.$fault = "client";
|
|
361
|
+
Object.setPrototypeOf(this, NoFreeAddressesInSubnet.prototype);
|
|
362
|
+
this.ErrorCode = opts.ErrorCode;
|
|
363
|
+
this.Message = opts.Message;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
exports.NoFreeAddressesInSubnet = NoFreeAddressesInSubnet;
|
|
367
|
+
class SecurityGroupLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
368
|
+
constructor(opts) {
|
|
369
|
+
super({
|
|
370
|
+
name: "SecurityGroupLimitExceeded",
|
|
371
|
+
$fault: "client",
|
|
372
|
+
...opts,
|
|
373
|
+
});
|
|
374
|
+
this.name = "SecurityGroupLimitExceeded";
|
|
375
|
+
this.$fault = "client";
|
|
376
|
+
Object.setPrototypeOf(this, SecurityGroupLimitExceeded.prototype);
|
|
377
|
+
this.ErrorCode = opts.ErrorCode;
|
|
378
|
+
this.Message = opts.Message;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
exports.SecurityGroupLimitExceeded = SecurityGroupLimitExceeded;
|
|
382
|
+
class SecurityGroupNotFound extends EFSServiceException_1.EFSServiceException {
|
|
383
|
+
constructor(opts) {
|
|
384
|
+
super({
|
|
385
|
+
name: "SecurityGroupNotFound",
|
|
386
|
+
$fault: "client",
|
|
387
|
+
...opts,
|
|
388
|
+
});
|
|
389
|
+
this.name = "SecurityGroupNotFound";
|
|
390
|
+
this.$fault = "client";
|
|
391
|
+
Object.setPrototypeOf(this, SecurityGroupNotFound.prototype);
|
|
392
|
+
this.ErrorCode = opts.ErrorCode;
|
|
393
|
+
this.Message = opts.Message;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
exports.SecurityGroupNotFound = SecurityGroupNotFound;
|
|
397
|
+
class SubnetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
398
|
+
constructor(opts) {
|
|
399
|
+
super({
|
|
400
|
+
name: "SubnetNotFound",
|
|
401
|
+
$fault: "client",
|
|
402
|
+
...opts,
|
|
403
|
+
});
|
|
404
|
+
this.name = "SubnetNotFound";
|
|
405
|
+
this.$fault = "client";
|
|
406
|
+
Object.setPrototypeOf(this, SubnetNotFound.prototype);
|
|
407
|
+
this.ErrorCode = opts.ErrorCode;
|
|
408
|
+
this.Message = opts.Message;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
exports.SubnetNotFound = SubnetNotFound;
|
|
109
412
|
var DestinationToCreate;
|
|
110
413
|
(function (DestinationToCreate) {
|
|
111
414
|
DestinationToCreate.filterSensitiveLog = (obj) => ({
|
|
@@ -137,6 +440,36 @@ var ReplicationConfigurationDescription;
|
|
|
137
440
|
...obj,
|
|
138
441
|
});
|
|
139
442
|
})(ReplicationConfigurationDescription = exports.ReplicationConfigurationDescription || (exports.ReplicationConfigurationDescription = {}));
|
|
443
|
+
class ReplicationNotFound extends EFSServiceException_1.EFSServiceException {
|
|
444
|
+
constructor(opts) {
|
|
445
|
+
super({
|
|
446
|
+
name: "ReplicationNotFound",
|
|
447
|
+
$fault: "client",
|
|
448
|
+
...opts,
|
|
449
|
+
});
|
|
450
|
+
this.name = "ReplicationNotFound";
|
|
451
|
+
this.$fault = "client";
|
|
452
|
+
Object.setPrototypeOf(this, ReplicationNotFound.prototype);
|
|
453
|
+
this.ErrorCode = opts.ErrorCode;
|
|
454
|
+
this.Message = opts.Message;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
exports.ReplicationNotFound = ReplicationNotFound;
|
|
458
|
+
class ValidationException extends EFSServiceException_1.EFSServiceException {
|
|
459
|
+
constructor(opts) {
|
|
460
|
+
super({
|
|
461
|
+
name: "ValidationException",
|
|
462
|
+
$fault: "client",
|
|
463
|
+
...opts,
|
|
464
|
+
});
|
|
465
|
+
this.name = "ValidationException";
|
|
466
|
+
this.$fault = "client";
|
|
467
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
468
|
+
this.ErrorCode = opts.ErrorCode;
|
|
469
|
+
this.Message = opts.Message;
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
exports.ValidationException = ValidationException;
|
|
140
473
|
var CreateTagsRequest;
|
|
141
474
|
(function (CreateTagsRequest) {
|
|
142
475
|
CreateTagsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -155,6 +488,21 @@ var DeleteFileSystemRequest;
|
|
|
155
488
|
...obj,
|
|
156
489
|
});
|
|
157
490
|
})(DeleteFileSystemRequest = exports.DeleteFileSystemRequest || (exports.DeleteFileSystemRequest = {}));
|
|
491
|
+
class FileSystemInUse extends EFSServiceException_1.EFSServiceException {
|
|
492
|
+
constructor(opts) {
|
|
493
|
+
super({
|
|
494
|
+
name: "FileSystemInUse",
|
|
495
|
+
$fault: "client",
|
|
496
|
+
...opts,
|
|
497
|
+
});
|
|
498
|
+
this.name = "FileSystemInUse";
|
|
499
|
+
this.$fault = "client";
|
|
500
|
+
Object.setPrototypeOf(this, FileSystemInUse.prototype);
|
|
501
|
+
this.ErrorCode = opts.ErrorCode;
|
|
502
|
+
this.Message = opts.Message;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
exports.FileSystemInUse = FileSystemInUse;
|
|
158
506
|
var DeleteFileSystemPolicyRequest;
|
|
159
507
|
(function (DeleteFileSystemPolicyRequest) {
|
|
160
508
|
DeleteFileSystemPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -167,6 +515,36 @@ var DeleteMountTargetRequest;
|
|
|
167
515
|
...obj,
|
|
168
516
|
});
|
|
169
517
|
})(DeleteMountTargetRequest = exports.DeleteMountTargetRequest || (exports.DeleteMountTargetRequest = {}));
|
|
518
|
+
class DependencyTimeout extends EFSServiceException_1.EFSServiceException {
|
|
519
|
+
constructor(opts) {
|
|
520
|
+
super({
|
|
521
|
+
name: "DependencyTimeout",
|
|
522
|
+
$fault: "server",
|
|
523
|
+
...opts,
|
|
524
|
+
});
|
|
525
|
+
this.name = "DependencyTimeout";
|
|
526
|
+
this.$fault = "server";
|
|
527
|
+
Object.setPrototypeOf(this, DependencyTimeout.prototype);
|
|
528
|
+
this.ErrorCode = opts.ErrorCode;
|
|
529
|
+
this.Message = opts.Message;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
exports.DependencyTimeout = DependencyTimeout;
|
|
533
|
+
class MountTargetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
534
|
+
constructor(opts) {
|
|
535
|
+
super({
|
|
536
|
+
name: "MountTargetNotFound",
|
|
537
|
+
$fault: "client",
|
|
538
|
+
...opts,
|
|
539
|
+
});
|
|
540
|
+
this.name = "MountTargetNotFound";
|
|
541
|
+
this.$fault = "client";
|
|
542
|
+
Object.setPrototypeOf(this, MountTargetNotFound.prototype);
|
|
543
|
+
this.ErrorCode = opts.ErrorCode;
|
|
544
|
+
this.Message = opts.Message;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
exports.MountTargetNotFound = MountTargetNotFound;
|
|
170
548
|
var DeleteReplicationConfigurationRequest;
|
|
171
549
|
(function (DeleteReplicationConfigurationRequest) {
|
|
172
550
|
DeleteReplicationConfigurationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -225,6 +603,21 @@ var DescribeBackupPolicyRequest;
|
|
|
225
603
|
...obj,
|
|
226
604
|
});
|
|
227
605
|
})(DescribeBackupPolicyRequest = exports.DescribeBackupPolicyRequest || (exports.DescribeBackupPolicyRequest = {}));
|
|
606
|
+
class PolicyNotFound extends EFSServiceException_1.EFSServiceException {
|
|
607
|
+
constructor(opts) {
|
|
608
|
+
super({
|
|
609
|
+
name: "PolicyNotFound",
|
|
610
|
+
$fault: "client",
|
|
611
|
+
...opts,
|
|
612
|
+
});
|
|
613
|
+
this.name = "PolicyNotFound";
|
|
614
|
+
this.$fault = "client";
|
|
615
|
+
Object.setPrototypeOf(this, PolicyNotFound.prototype);
|
|
616
|
+
this.ErrorCode = opts.ErrorCode;
|
|
617
|
+
this.Message = opts.Message;
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
exports.PolicyNotFound = PolicyNotFound;
|
|
228
621
|
var DescribeFileSystemPolicyRequest;
|
|
229
622
|
(function (DescribeFileSystemPolicyRequest) {
|
|
230
623
|
DescribeFileSystemPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -303,6 +696,21 @@ var DescribeMountTargetSecurityGroupsResponse;
|
|
|
303
696
|
...obj,
|
|
304
697
|
});
|
|
305
698
|
})(DescribeMountTargetSecurityGroupsResponse = exports.DescribeMountTargetSecurityGroupsResponse || (exports.DescribeMountTargetSecurityGroupsResponse = {}));
|
|
699
|
+
class IncorrectMountTargetState extends EFSServiceException_1.EFSServiceException {
|
|
700
|
+
constructor(opts) {
|
|
701
|
+
super({
|
|
702
|
+
name: "IncorrectMountTargetState",
|
|
703
|
+
$fault: "client",
|
|
704
|
+
...opts,
|
|
705
|
+
});
|
|
706
|
+
this.name = "IncorrectMountTargetState";
|
|
707
|
+
this.$fault = "client";
|
|
708
|
+
Object.setPrototypeOf(this, IncorrectMountTargetState.prototype);
|
|
709
|
+
this.ErrorCode = opts.ErrorCode;
|
|
710
|
+
this.Message = opts.Message;
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
exports.IncorrectMountTargetState = IncorrectMountTargetState;
|
|
306
714
|
var DescribeReplicationConfigurationsRequest;
|
|
307
715
|
(function (DescribeReplicationConfigurationsRequest) {
|
|
308
716
|
DescribeReplicationConfigurationsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -327,6 +735,21 @@ var DescribeTagsResponse;
|
|
|
327
735
|
...obj,
|
|
328
736
|
});
|
|
329
737
|
})(DescribeTagsResponse = exports.DescribeTagsResponse || (exports.DescribeTagsResponse = {}));
|
|
738
|
+
class InvalidPolicyException extends EFSServiceException_1.EFSServiceException {
|
|
739
|
+
constructor(opts) {
|
|
740
|
+
super({
|
|
741
|
+
name: "InvalidPolicyException",
|
|
742
|
+
$fault: "client",
|
|
743
|
+
...opts,
|
|
744
|
+
});
|
|
745
|
+
this.name = "InvalidPolicyException";
|
|
746
|
+
this.$fault = "client";
|
|
747
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
748
|
+
this.ErrorCode = opts.ErrorCode;
|
|
749
|
+
this.Message = opts.Message;
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
330
753
|
var ListTagsForResourceRequest;
|
|
331
754
|
(function (ListTagsForResourceRequest) {
|
|
332
755
|
ListTagsForResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -387,6 +810,21 @@ var UntagResourceRequest;
|
|
|
387
810
|
...obj,
|
|
388
811
|
});
|
|
389
812
|
})(UntagResourceRequest = exports.UntagResourceRequest || (exports.UntagResourceRequest = {}));
|
|
813
|
+
class TooManyRequests extends EFSServiceException_1.EFSServiceException {
|
|
814
|
+
constructor(opts) {
|
|
815
|
+
super({
|
|
816
|
+
name: "TooManyRequests",
|
|
817
|
+
$fault: "client",
|
|
818
|
+
...opts,
|
|
819
|
+
});
|
|
820
|
+
this.name = "TooManyRequests";
|
|
821
|
+
this.$fault = "client";
|
|
822
|
+
Object.setPrototypeOf(this, TooManyRequests.prototype);
|
|
823
|
+
this.ErrorCode = opts.ErrorCode;
|
|
824
|
+
this.Message = opts.Message;
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
exports.TooManyRequests = TooManyRequests;
|
|
390
828
|
var UpdateFileSystemRequest;
|
|
391
829
|
(function (UpdateFileSystemRequest) {
|
|
392
830
|
UpdateFileSystemRequest.filterSensitiveLog = (obj) => ({
|