@aws-sdk/client-efs 3.1068.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +139 -159
- package/dist-cjs/models/EFSServiceException.js +4 -8
- package/dist-cjs/models/errors.js +65 -100
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +267 -181
- package/package.json +9 -9
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ReplicationAlreadyExists = exports.TooManyRequests = exports.InvalidPolicyException = exports.IncorrectMountTargetState = exports.PolicyNotFound = exports.MountTargetNotFound = exports.DependencyTimeout = exports.FileSystemInUse = exports.ValidationException = exports.ReplicationNotFound = exports.SubnetNotFound = exports.SecurityGroupNotFound = exports.SecurityGroupLimitExceeded = exports.NoFreeAddressesInSubnet = exports.NetworkInterfaceLimitExceeded = exports.MountTargetConflict = exports.IpAddressInUse = exports.UnsupportedAvailabilityZone = exports.ThroughputLimitExceeded = exports.InsufficientThroughputCapacity = exports.FileSystemLimitExceeded = exports.FileSystemAlreadyExists = exports.ThrottlingException = exports.InternalServerError = exports.IncorrectFileSystemLifeCycleState = exports.FileSystemNotFound = exports.ConflictException = exports.BadRequest = exports.AvailabilityZonesMismatch = exports.AccessPointNotFound = exports.AccessPointLimitExceeded = exports.AccessPointAlreadyExists = void 0;
|
|
4
|
-
const EFSServiceException_1 = require("./EFSServiceException");
|
|
5
|
-
class AccessPointAlreadyExists extends EFSServiceException_1.EFSServiceException {
|
|
1
|
+
const { EFSServiceException: __BaseException } = require("./EFSServiceException");
|
|
2
|
+
exports.AccessPointAlreadyExists = class AccessPointAlreadyExists extends __BaseException {
|
|
6
3
|
name = "AccessPointAlreadyExists";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
ErrorCode;
|
|
@@ -19,9 +16,8 @@ class AccessPointAlreadyExists extends EFSServiceException_1.EFSServiceException
|
|
|
19
16
|
this.Message = opts.Message;
|
|
20
17
|
this.AccessPointId = opts.AccessPointId;
|
|
21
18
|
}
|
|
22
|
-
}
|
|
23
|
-
exports.
|
|
24
|
-
class AccessPointLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
19
|
+
};
|
|
20
|
+
exports.AccessPointLimitExceeded = class AccessPointLimitExceeded extends __BaseException {
|
|
25
21
|
name = "AccessPointLimitExceeded";
|
|
26
22
|
$fault = "client";
|
|
27
23
|
ErrorCode;
|
|
@@ -36,9 +32,8 @@ class AccessPointLimitExceeded extends EFSServiceException_1.EFSServiceException
|
|
|
36
32
|
this.ErrorCode = opts.ErrorCode;
|
|
37
33
|
this.Message = opts.Message;
|
|
38
34
|
}
|
|
39
|
-
}
|
|
40
|
-
exports.
|
|
41
|
-
class AccessPointNotFound extends EFSServiceException_1.EFSServiceException {
|
|
35
|
+
};
|
|
36
|
+
exports.AccessPointNotFound = class AccessPointNotFound extends __BaseException {
|
|
42
37
|
name = "AccessPointNotFound";
|
|
43
38
|
$fault = "client";
|
|
44
39
|
ErrorCode;
|
|
@@ -53,9 +48,8 @@ class AccessPointNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
53
48
|
this.ErrorCode = opts.ErrorCode;
|
|
54
49
|
this.Message = opts.Message;
|
|
55
50
|
}
|
|
56
|
-
}
|
|
57
|
-
exports.
|
|
58
|
-
class AvailabilityZonesMismatch extends EFSServiceException_1.EFSServiceException {
|
|
51
|
+
};
|
|
52
|
+
exports.AvailabilityZonesMismatch = class AvailabilityZonesMismatch extends __BaseException {
|
|
59
53
|
name = "AvailabilityZonesMismatch";
|
|
60
54
|
$fault = "client";
|
|
61
55
|
ErrorCode;
|
|
@@ -70,9 +64,8 @@ class AvailabilityZonesMismatch extends EFSServiceException_1.EFSServiceExceptio
|
|
|
70
64
|
this.ErrorCode = opts.ErrorCode;
|
|
71
65
|
this.Message = opts.Message;
|
|
72
66
|
}
|
|
73
|
-
}
|
|
74
|
-
exports.
|
|
75
|
-
class BadRequest extends EFSServiceException_1.EFSServiceException {
|
|
67
|
+
};
|
|
68
|
+
exports.BadRequest = class BadRequest extends __BaseException {
|
|
76
69
|
name = "BadRequest";
|
|
77
70
|
$fault = "client";
|
|
78
71
|
ErrorCode;
|
|
@@ -87,9 +80,8 @@ class BadRequest extends EFSServiceException_1.EFSServiceException {
|
|
|
87
80
|
this.ErrorCode = opts.ErrorCode;
|
|
88
81
|
this.Message = opts.Message;
|
|
89
82
|
}
|
|
90
|
-
}
|
|
91
|
-
exports.
|
|
92
|
-
class ConflictException extends EFSServiceException_1.EFSServiceException {
|
|
83
|
+
};
|
|
84
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
93
85
|
name = "ConflictException";
|
|
94
86
|
$fault = "client";
|
|
95
87
|
ErrorCode;
|
|
@@ -104,9 +96,8 @@ class ConflictException extends EFSServiceException_1.EFSServiceException {
|
|
|
104
96
|
this.ErrorCode = opts.ErrorCode;
|
|
105
97
|
this.Message = opts.Message;
|
|
106
98
|
}
|
|
107
|
-
}
|
|
108
|
-
exports.
|
|
109
|
-
class FileSystemNotFound extends EFSServiceException_1.EFSServiceException {
|
|
99
|
+
};
|
|
100
|
+
exports.FileSystemNotFound = class FileSystemNotFound extends __BaseException {
|
|
110
101
|
name = "FileSystemNotFound";
|
|
111
102
|
$fault = "client";
|
|
112
103
|
ErrorCode;
|
|
@@ -121,9 +112,8 @@ class FileSystemNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
121
112
|
this.ErrorCode = opts.ErrorCode;
|
|
122
113
|
this.Message = opts.Message;
|
|
123
114
|
}
|
|
124
|
-
}
|
|
125
|
-
exports.
|
|
126
|
-
class IncorrectFileSystemLifeCycleState extends EFSServiceException_1.EFSServiceException {
|
|
115
|
+
};
|
|
116
|
+
exports.IncorrectFileSystemLifeCycleState = class IncorrectFileSystemLifeCycleState extends __BaseException {
|
|
127
117
|
name = "IncorrectFileSystemLifeCycleState";
|
|
128
118
|
$fault = "client";
|
|
129
119
|
ErrorCode;
|
|
@@ -138,9 +128,8 @@ class IncorrectFileSystemLifeCycleState extends EFSServiceException_1.EFSService
|
|
|
138
128
|
this.ErrorCode = opts.ErrorCode;
|
|
139
129
|
this.Message = opts.Message;
|
|
140
130
|
}
|
|
141
|
-
}
|
|
142
|
-
exports.
|
|
143
|
-
class InternalServerError extends EFSServiceException_1.EFSServiceException {
|
|
131
|
+
};
|
|
132
|
+
exports.InternalServerError = class InternalServerError extends __BaseException {
|
|
144
133
|
name = "InternalServerError";
|
|
145
134
|
$fault = "server";
|
|
146
135
|
ErrorCode;
|
|
@@ -155,9 +144,8 @@ class InternalServerError extends EFSServiceException_1.EFSServiceException {
|
|
|
155
144
|
this.ErrorCode = opts.ErrorCode;
|
|
156
145
|
this.Message = opts.Message;
|
|
157
146
|
}
|
|
158
|
-
}
|
|
159
|
-
exports.
|
|
160
|
-
class ThrottlingException extends EFSServiceException_1.EFSServiceException {
|
|
147
|
+
};
|
|
148
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
161
149
|
name = "ThrottlingException";
|
|
162
150
|
$fault = "client";
|
|
163
151
|
ErrorCode;
|
|
@@ -172,9 +160,8 @@ class ThrottlingException extends EFSServiceException_1.EFSServiceException {
|
|
|
172
160
|
this.ErrorCode = opts.ErrorCode;
|
|
173
161
|
this.Message = opts.Message;
|
|
174
162
|
}
|
|
175
|
-
}
|
|
176
|
-
exports.
|
|
177
|
-
class FileSystemAlreadyExists extends EFSServiceException_1.EFSServiceException {
|
|
163
|
+
};
|
|
164
|
+
exports.FileSystemAlreadyExists = class FileSystemAlreadyExists extends __BaseException {
|
|
178
165
|
name = "FileSystemAlreadyExists";
|
|
179
166
|
$fault = "client";
|
|
180
167
|
ErrorCode;
|
|
@@ -191,9 +178,8 @@ class FileSystemAlreadyExists extends EFSServiceException_1.EFSServiceException
|
|
|
191
178
|
this.Message = opts.Message;
|
|
192
179
|
this.FileSystemId = opts.FileSystemId;
|
|
193
180
|
}
|
|
194
|
-
}
|
|
195
|
-
exports.
|
|
196
|
-
class FileSystemLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
181
|
+
};
|
|
182
|
+
exports.FileSystemLimitExceeded = class FileSystemLimitExceeded extends __BaseException {
|
|
197
183
|
name = "FileSystemLimitExceeded";
|
|
198
184
|
$fault = "client";
|
|
199
185
|
ErrorCode;
|
|
@@ -208,9 +194,8 @@ class FileSystemLimitExceeded extends EFSServiceException_1.EFSServiceException
|
|
|
208
194
|
this.ErrorCode = opts.ErrorCode;
|
|
209
195
|
this.Message = opts.Message;
|
|
210
196
|
}
|
|
211
|
-
}
|
|
212
|
-
exports.
|
|
213
|
-
class InsufficientThroughputCapacity extends EFSServiceException_1.EFSServiceException {
|
|
197
|
+
};
|
|
198
|
+
exports.InsufficientThroughputCapacity = class InsufficientThroughputCapacity extends __BaseException {
|
|
214
199
|
name = "InsufficientThroughputCapacity";
|
|
215
200
|
$fault = "server";
|
|
216
201
|
ErrorCode;
|
|
@@ -225,9 +210,8 @@ class InsufficientThroughputCapacity extends EFSServiceException_1.EFSServiceExc
|
|
|
225
210
|
this.ErrorCode = opts.ErrorCode;
|
|
226
211
|
this.Message = opts.Message;
|
|
227
212
|
}
|
|
228
|
-
}
|
|
229
|
-
exports.
|
|
230
|
-
class ThroughputLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
213
|
+
};
|
|
214
|
+
exports.ThroughputLimitExceeded = class ThroughputLimitExceeded extends __BaseException {
|
|
231
215
|
name = "ThroughputLimitExceeded";
|
|
232
216
|
$fault = "client";
|
|
233
217
|
ErrorCode;
|
|
@@ -242,9 +226,8 @@ class ThroughputLimitExceeded extends EFSServiceException_1.EFSServiceException
|
|
|
242
226
|
this.ErrorCode = opts.ErrorCode;
|
|
243
227
|
this.Message = opts.Message;
|
|
244
228
|
}
|
|
245
|
-
}
|
|
246
|
-
exports.
|
|
247
|
-
class UnsupportedAvailabilityZone extends EFSServiceException_1.EFSServiceException {
|
|
229
|
+
};
|
|
230
|
+
exports.UnsupportedAvailabilityZone = class UnsupportedAvailabilityZone extends __BaseException {
|
|
248
231
|
name = "UnsupportedAvailabilityZone";
|
|
249
232
|
$fault = "client";
|
|
250
233
|
ErrorCode;
|
|
@@ -259,9 +242,8 @@ class UnsupportedAvailabilityZone extends EFSServiceException_1.EFSServiceExcept
|
|
|
259
242
|
this.ErrorCode = opts.ErrorCode;
|
|
260
243
|
this.Message = opts.Message;
|
|
261
244
|
}
|
|
262
|
-
}
|
|
263
|
-
exports.
|
|
264
|
-
class IpAddressInUse extends EFSServiceException_1.EFSServiceException {
|
|
245
|
+
};
|
|
246
|
+
exports.IpAddressInUse = class IpAddressInUse extends __BaseException {
|
|
265
247
|
name = "IpAddressInUse";
|
|
266
248
|
$fault = "client";
|
|
267
249
|
ErrorCode;
|
|
@@ -276,9 +258,8 @@ class IpAddressInUse extends EFSServiceException_1.EFSServiceException {
|
|
|
276
258
|
this.ErrorCode = opts.ErrorCode;
|
|
277
259
|
this.Message = opts.Message;
|
|
278
260
|
}
|
|
279
|
-
}
|
|
280
|
-
exports.
|
|
281
|
-
class MountTargetConflict extends EFSServiceException_1.EFSServiceException {
|
|
261
|
+
};
|
|
262
|
+
exports.MountTargetConflict = class MountTargetConflict extends __BaseException {
|
|
282
263
|
name = "MountTargetConflict";
|
|
283
264
|
$fault = "client";
|
|
284
265
|
ErrorCode;
|
|
@@ -293,9 +274,8 @@ class MountTargetConflict extends EFSServiceException_1.EFSServiceException {
|
|
|
293
274
|
this.ErrorCode = opts.ErrorCode;
|
|
294
275
|
this.Message = opts.Message;
|
|
295
276
|
}
|
|
296
|
-
}
|
|
297
|
-
exports.
|
|
298
|
-
class NetworkInterfaceLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
277
|
+
};
|
|
278
|
+
exports.NetworkInterfaceLimitExceeded = class NetworkInterfaceLimitExceeded extends __BaseException {
|
|
299
279
|
name = "NetworkInterfaceLimitExceeded";
|
|
300
280
|
$fault = "client";
|
|
301
281
|
ErrorCode;
|
|
@@ -310,9 +290,8 @@ class NetworkInterfaceLimitExceeded extends EFSServiceException_1.EFSServiceExce
|
|
|
310
290
|
this.ErrorCode = opts.ErrorCode;
|
|
311
291
|
this.Message = opts.Message;
|
|
312
292
|
}
|
|
313
|
-
}
|
|
314
|
-
exports.
|
|
315
|
-
class NoFreeAddressesInSubnet extends EFSServiceException_1.EFSServiceException {
|
|
293
|
+
};
|
|
294
|
+
exports.NoFreeAddressesInSubnet = class NoFreeAddressesInSubnet extends __BaseException {
|
|
316
295
|
name = "NoFreeAddressesInSubnet";
|
|
317
296
|
$fault = "client";
|
|
318
297
|
ErrorCode;
|
|
@@ -327,9 +306,8 @@ class NoFreeAddressesInSubnet extends EFSServiceException_1.EFSServiceException
|
|
|
327
306
|
this.ErrorCode = opts.ErrorCode;
|
|
328
307
|
this.Message = opts.Message;
|
|
329
308
|
}
|
|
330
|
-
}
|
|
331
|
-
exports.
|
|
332
|
-
class SecurityGroupLimitExceeded extends EFSServiceException_1.EFSServiceException {
|
|
309
|
+
};
|
|
310
|
+
exports.SecurityGroupLimitExceeded = class SecurityGroupLimitExceeded extends __BaseException {
|
|
333
311
|
name = "SecurityGroupLimitExceeded";
|
|
334
312
|
$fault = "client";
|
|
335
313
|
ErrorCode;
|
|
@@ -344,9 +322,8 @@ class SecurityGroupLimitExceeded extends EFSServiceException_1.EFSServiceExcepti
|
|
|
344
322
|
this.ErrorCode = opts.ErrorCode;
|
|
345
323
|
this.Message = opts.Message;
|
|
346
324
|
}
|
|
347
|
-
}
|
|
348
|
-
exports.
|
|
349
|
-
class SecurityGroupNotFound extends EFSServiceException_1.EFSServiceException {
|
|
325
|
+
};
|
|
326
|
+
exports.SecurityGroupNotFound = class SecurityGroupNotFound extends __BaseException {
|
|
350
327
|
name = "SecurityGroupNotFound";
|
|
351
328
|
$fault = "client";
|
|
352
329
|
ErrorCode;
|
|
@@ -361,9 +338,8 @@ class SecurityGroupNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
361
338
|
this.ErrorCode = opts.ErrorCode;
|
|
362
339
|
this.Message = opts.Message;
|
|
363
340
|
}
|
|
364
|
-
}
|
|
365
|
-
exports.
|
|
366
|
-
class SubnetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
341
|
+
};
|
|
342
|
+
exports.SubnetNotFound = class SubnetNotFound extends __BaseException {
|
|
367
343
|
name = "SubnetNotFound";
|
|
368
344
|
$fault = "client";
|
|
369
345
|
ErrorCode;
|
|
@@ -378,9 +354,8 @@ class SubnetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
378
354
|
this.ErrorCode = opts.ErrorCode;
|
|
379
355
|
this.Message = opts.Message;
|
|
380
356
|
}
|
|
381
|
-
}
|
|
382
|
-
exports.
|
|
383
|
-
class ReplicationNotFound extends EFSServiceException_1.EFSServiceException {
|
|
357
|
+
};
|
|
358
|
+
exports.ReplicationNotFound = class ReplicationNotFound extends __BaseException {
|
|
384
359
|
name = "ReplicationNotFound";
|
|
385
360
|
$fault = "client";
|
|
386
361
|
ErrorCode;
|
|
@@ -395,9 +370,8 @@ class ReplicationNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
395
370
|
this.ErrorCode = opts.ErrorCode;
|
|
396
371
|
this.Message = opts.Message;
|
|
397
372
|
}
|
|
398
|
-
}
|
|
399
|
-
exports.
|
|
400
|
-
class ValidationException extends EFSServiceException_1.EFSServiceException {
|
|
373
|
+
};
|
|
374
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
401
375
|
name = "ValidationException";
|
|
402
376
|
$fault = "client";
|
|
403
377
|
ErrorCode;
|
|
@@ -412,9 +386,8 @@ class ValidationException extends EFSServiceException_1.EFSServiceException {
|
|
|
412
386
|
this.ErrorCode = opts.ErrorCode;
|
|
413
387
|
this.Message = opts.Message;
|
|
414
388
|
}
|
|
415
|
-
}
|
|
416
|
-
exports.
|
|
417
|
-
class FileSystemInUse extends EFSServiceException_1.EFSServiceException {
|
|
389
|
+
};
|
|
390
|
+
exports.FileSystemInUse = class FileSystemInUse extends __BaseException {
|
|
418
391
|
name = "FileSystemInUse";
|
|
419
392
|
$fault = "client";
|
|
420
393
|
ErrorCode;
|
|
@@ -429,9 +402,8 @@ class FileSystemInUse extends EFSServiceException_1.EFSServiceException {
|
|
|
429
402
|
this.ErrorCode = opts.ErrorCode;
|
|
430
403
|
this.Message = opts.Message;
|
|
431
404
|
}
|
|
432
|
-
}
|
|
433
|
-
exports.
|
|
434
|
-
class DependencyTimeout extends EFSServiceException_1.EFSServiceException {
|
|
405
|
+
};
|
|
406
|
+
exports.DependencyTimeout = class DependencyTimeout extends __BaseException {
|
|
435
407
|
name = "DependencyTimeout";
|
|
436
408
|
$fault = "server";
|
|
437
409
|
ErrorCode;
|
|
@@ -446,9 +418,8 @@ class DependencyTimeout extends EFSServiceException_1.EFSServiceException {
|
|
|
446
418
|
this.ErrorCode = opts.ErrorCode;
|
|
447
419
|
this.Message = opts.Message;
|
|
448
420
|
}
|
|
449
|
-
}
|
|
450
|
-
exports.
|
|
451
|
-
class MountTargetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
421
|
+
};
|
|
422
|
+
exports.MountTargetNotFound = class MountTargetNotFound extends __BaseException {
|
|
452
423
|
name = "MountTargetNotFound";
|
|
453
424
|
$fault = "client";
|
|
454
425
|
ErrorCode;
|
|
@@ -463,9 +434,8 @@ class MountTargetNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
463
434
|
this.ErrorCode = opts.ErrorCode;
|
|
464
435
|
this.Message = opts.Message;
|
|
465
436
|
}
|
|
466
|
-
}
|
|
467
|
-
exports.
|
|
468
|
-
class PolicyNotFound extends EFSServiceException_1.EFSServiceException {
|
|
437
|
+
};
|
|
438
|
+
exports.PolicyNotFound = class PolicyNotFound extends __BaseException {
|
|
469
439
|
name = "PolicyNotFound";
|
|
470
440
|
$fault = "client";
|
|
471
441
|
ErrorCode;
|
|
@@ -480,9 +450,8 @@ class PolicyNotFound extends EFSServiceException_1.EFSServiceException {
|
|
|
480
450
|
this.ErrorCode = opts.ErrorCode;
|
|
481
451
|
this.Message = opts.Message;
|
|
482
452
|
}
|
|
483
|
-
}
|
|
484
|
-
exports.
|
|
485
|
-
class IncorrectMountTargetState extends EFSServiceException_1.EFSServiceException {
|
|
453
|
+
};
|
|
454
|
+
exports.IncorrectMountTargetState = class IncorrectMountTargetState extends __BaseException {
|
|
486
455
|
name = "IncorrectMountTargetState";
|
|
487
456
|
$fault = "client";
|
|
488
457
|
ErrorCode;
|
|
@@ -497,9 +466,8 @@ class IncorrectMountTargetState extends EFSServiceException_1.EFSServiceExceptio
|
|
|
497
466
|
this.ErrorCode = opts.ErrorCode;
|
|
498
467
|
this.Message = opts.Message;
|
|
499
468
|
}
|
|
500
|
-
}
|
|
501
|
-
exports.
|
|
502
|
-
class InvalidPolicyException extends EFSServiceException_1.EFSServiceException {
|
|
469
|
+
};
|
|
470
|
+
exports.InvalidPolicyException = class InvalidPolicyException extends __BaseException {
|
|
503
471
|
name = "InvalidPolicyException";
|
|
504
472
|
$fault = "client";
|
|
505
473
|
ErrorCode;
|
|
@@ -514,9 +482,8 @@ class InvalidPolicyException extends EFSServiceException_1.EFSServiceException {
|
|
|
514
482
|
this.ErrorCode = opts.ErrorCode;
|
|
515
483
|
this.Message = opts.Message;
|
|
516
484
|
}
|
|
517
|
-
}
|
|
518
|
-
exports.
|
|
519
|
-
class TooManyRequests extends EFSServiceException_1.EFSServiceException {
|
|
485
|
+
};
|
|
486
|
+
exports.TooManyRequests = class TooManyRequests extends __BaseException {
|
|
520
487
|
name = "TooManyRequests";
|
|
521
488
|
$fault = "client";
|
|
522
489
|
ErrorCode;
|
|
@@ -531,9 +498,8 @@ class TooManyRequests extends EFSServiceException_1.EFSServiceException {
|
|
|
531
498
|
this.ErrorCode = opts.ErrorCode;
|
|
532
499
|
this.Message = opts.Message;
|
|
533
500
|
}
|
|
534
|
-
}
|
|
535
|
-
exports.
|
|
536
|
-
class ReplicationAlreadyExists extends EFSServiceException_1.EFSServiceException {
|
|
501
|
+
};
|
|
502
|
+
exports.ReplicationAlreadyExists = class ReplicationAlreadyExists extends __BaseException {
|
|
537
503
|
name = "ReplicationAlreadyExists";
|
|
538
504
|
$fault = "client";
|
|
539
505
|
ErrorCode;
|
|
@@ -548,5 +514,4 @@ class ReplicationAlreadyExists extends EFSServiceException_1.EFSServiceException
|
|
|
548
514
|
this.ErrorCode = opts.ErrorCode;
|
|
549
515
|
this.Message = opts.Message;
|
|
550
516
|
}
|
|
551
|
-
}
|
|
552
|
-
exports.ReplicationAlreadyExists = ReplicationAlreadyExists;
|
|
517
|
+
};
|
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const retry_1 = require("@smithy/core/retry");
|
|
11
|
-
const serde_1 = require("@smithy/core/serde");
|
|
12
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
13
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
14
10
|
const getRuntimeConfig = (config) => {
|
|
15
|
-
const defaultsMode =
|
|
16
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
-
const clientSharedValues = (
|
|
11
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
14
|
return {
|
|
19
15
|
...clientSharedValues,
|
|
20
16
|
...config,
|
|
21
17
|
runtime: "browser",
|
|
22
18
|
defaultsMode,
|
|
23
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
19
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
24
20
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
25
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
26
|
-
maxAttempts: config?.maxAttempts ??
|
|
27
|
-
region: config?.region ??
|
|
28
|
-
requestHandler:
|
|
29
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
30
|
-
sha256: config?.sha256 ??
|
|
31
|
-
streamCollector: config?.streamCollector ??
|
|
32
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
33
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
21
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
+
sha256: config?.sha256 ?? Sha256,
|
|
27
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
34
30
|
};
|
|
35
31
|
};
|
|
36
32
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,23 +23,23 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
region: config?.region ?? (
|
|
36
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
32
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
33
|
retryMode: config?.retryMode ??
|
|
38
|
-
(
|
|
39
|
-
...
|
|
40
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
34
|
+
loadNodeConfig({
|
|
35
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
41
37
|
}, config),
|
|
42
|
-
sha256: config?.sha256 ??
|
|
43
|
-
streamCollector: config?.streamCollector ??
|
|
44
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
45
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
46
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
38
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultEFSHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2015-02-01",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultEFSHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.efs",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2015-02-01",
|
|
34
31
|
serviceTarget: "MagnolioAPIService_v20150201",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "EFS",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|