@aws-sdk/client-efs 3.987.0 → 3.988.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var EFSServiceException = require('./models/EFSServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,1346 +113,6 @@ class EFSClient extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class EFSServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, EFSServiceException.prototype);
117
- }
118
- }
119
-
120
- class AccessPointAlreadyExists extends EFSServiceException {
121
- name = "AccessPointAlreadyExists";
122
- $fault = "client";
123
- ErrorCode;
124
- Message;
125
- AccessPointId;
126
- constructor(opts) {
127
- super({
128
- name: "AccessPointAlreadyExists",
129
- $fault: "client",
130
- ...opts,
131
- });
132
- Object.setPrototypeOf(this, AccessPointAlreadyExists.prototype);
133
- this.ErrorCode = opts.ErrorCode;
134
- this.Message = opts.Message;
135
- this.AccessPointId = opts.AccessPointId;
136
- }
137
- }
138
- class AccessPointLimitExceeded extends EFSServiceException {
139
- name = "AccessPointLimitExceeded";
140
- $fault = "client";
141
- ErrorCode;
142
- Message;
143
- constructor(opts) {
144
- super({
145
- name: "AccessPointLimitExceeded",
146
- $fault: "client",
147
- ...opts,
148
- });
149
- Object.setPrototypeOf(this, AccessPointLimitExceeded.prototype);
150
- this.ErrorCode = opts.ErrorCode;
151
- this.Message = opts.Message;
152
- }
153
- }
154
- class AccessPointNotFound extends EFSServiceException {
155
- name = "AccessPointNotFound";
156
- $fault = "client";
157
- ErrorCode;
158
- Message;
159
- constructor(opts) {
160
- super({
161
- name: "AccessPointNotFound",
162
- $fault: "client",
163
- ...opts,
164
- });
165
- Object.setPrototypeOf(this, AccessPointNotFound.prototype);
166
- this.ErrorCode = opts.ErrorCode;
167
- this.Message = opts.Message;
168
- }
169
- }
170
- class AvailabilityZonesMismatch extends EFSServiceException {
171
- name = "AvailabilityZonesMismatch";
172
- $fault = "client";
173
- ErrorCode;
174
- Message;
175
- constructor(opts) {
176
- super({
177
- name: "AvailabilityZonesMismatch",
178
- $fault: "client",
179
- ...opts,
180
- });
181
- Object.setPrototypeOf(this, AvailabilityZonesMismatch.prototype);
182
- this.ErrorCode = opts.ErrorCode;
183
- this.Message = opts.Message;
184
- }
185
- }
186
- class BadRequest extends EFSServiceException {
187
- name = "BadRequest";
188
- $fault = "client";
189
- ErrorCode;
190
- Message;
191
- constructor(opts) {
192
- super({
193
- name: "BadRequest",
194
- $fault: "client",
195
- ...opts,
196
- });
197
- Object.setPrototypeOf(this, BadRequest.prototype);
198
- this.ErrorCode = opts.ErrorCode;
199
- this.Message = opts.Message;
200
- }
201
- }
202
- class ConflictException extends EFSServiceException {
203
- name = "ConflictException";
204
- $fault = "client";
205
- ErrorCode;
206
- Message;
207
- constructor(opts) {
208
- super({
209
- name: "ConflictException",
210
- $fault: "client",
211
- ...opts,
212
- });
213
- Object.setPrototypeOf(this, ConflictException.prototype);
214
- this.ErrorCode = opts.ErrorCode;
215
- this.Message = opts.Message;
216
- }
217
- }
218
- class FileSystemNotFound extends EFSServiceException {
219
- name = "FileSystemNotFound";
220
- $fault = "client";
221
- ErrorCode;
222
- Message;
223
- constructor(opts) {
224
- super({
225
- name: "FileSystemNotFound",
226
- $fault: "client",
227
- ...opts,
228
- });
229
- Object.setPrototypeOf(this, FileSystemNotFound.prototype);
230
- this.ErrorCode = opts.ErrorCode;
231
- this.Message = opts.Message;
232
- }
233
- }
234
- class IncorrectFileSystemLifeCycleState extends EFSServiceException {
235
- name = "IncorrectFileSystemLifeCycleState";
236
- $fault = "client";
237
- ErrorCode;
238
- Message;
239
- constructor(opts) {
240
- super({
241
- name: "IncorrectFileSystemLifeCycleState",
242
- $fault: "client",
243
- ...opts,
244
- });
245
- Object.setPrototypeOf(this, IncorrectFileSystemLifeCycleState.prototype);
246
- this.ErrorCode = opts.ErrorCode;
247
- this.Message = opts.Message;
248
- }
249
- }
250
- class InternalServerError extends EFSServiceException {
251
- name = "InternalServerError";
252
- $fault = "server";
253
- ErrorCode;
254
- Message;
255
- constructor(opts) {
256
- super({
257
- name: "InternalServerError",
258
- $fault: "server",
259
- ...opts,
260
- });
261
- Object.setPrototypeOf(this, InternalServerError.prototype);
262
- this.ErrorCode = opts.ErrorCode;
263
- this.Message = opts.Message;
264
- }
265
- }
266
- class ThrottlingException extends EFSServiceException {
267
- name = "ThrottlingException";
268
- $fault = "client";
269
- ErrorCode;
270
- Message;
271
- constructor(opts) {
272
- super({
273
- name: "ThrottlingException",
274
- $fault: "client",
275
- ...opts,
276
- });
277
- Object.setPrototypeOf(this, ThrottlingException.prototype);
278
- this.ErrorCode = opts.ErrorCode;
279
- this.Message = opts.Message;
280
- }
281
- }
282
- class FileSystemAlreadyExists extends EFSServiceException {
283
- name = "FileSystemAlreadyExists";
284
- $fault = "client";
285
- ErrorCode;
286
- Message;
287
- FileSystemId;
288
- constructor(opts) {
289
- super({
290
- name: "FileSystemAlreadyExists",
291
- $fault: "client",
292
- ...opts,
293
- });
294
- Object.setPrototypeOf(this, FileSystemAlreadyExists.prototype);
295
- this.ErrorCode = opts.ErrorCode;
296
- this.Message = opts.Message;
297
- this.FileSystemId = opts.FileSystemId;
298
- }
299
- }
300
- class FileSystemLimitExceeded extends EFSServiceException {
301
- name = "FileSystemLimitExceeded";
302
- $fault = "client";
303
- ErrorCode;
304
- Message;
305
- constructor(opts) {
306
- super({
307
- name: "FileSystemLimitExceeded",
308
- $fault: "client",
309
- ...opts,
310
- });
311
- Object.setPrototypeOf(this, FileSystemLimitExceeded.prototype);
312
- this.ErrorCode = opts.ErrorCode;
313
- this.Message = opts.Message;
314
- }
315
- }
316
- class InsufficientThroughputCapacity extends EFSServiceException {
317
- name = "InsufficientThroughputCapacity";
318
- $fault = "server";
319
- ErrorCode;
320
- Message;
321
- constructor(opts) {
322
- super({
323
- name: "InsufficientThroughputCapacity",
324
- $fault: "server",
325
- ...opts,
326
- });
327
- Object.setPrototypeOf(this, InsufficientThroughputCapacity.prototype);
328
- this.ErrorCode = opts.ErrorCode;
329
- this.Message = opts.Message;
330
- }
331
- }
332
- class ThroughputLimitExceeded extends EFSServiceException {
333
- name = "ThroughputLimitExceeded";
334
- $fault = "client";
335
- ErrorCode;
336
- Message;
337
- constructor(opts) {
338
- super({
339
- name: "ThroughputLimitExceeded",
340
- $fault: "client",
341
- ...opts,
342
- });
343
- Object.setPrototypeOf(this, ThroughputLimitExceeded.prototype);
344
- this.ErrorCode = opts.ErrorCode;
345
- this.Message = opts.Message;
346
- }
347
- }
348
- class UnsupportedAvailabilityZone extends EFSServiceException {
349
- name = "UnsupportedAvailabilityZone";
350
- $fault = "client";
351
- ErrorCode;
352
- Message;
353
- constructor(opts) {
354
- super({
355
- name: "UnsupportedAvailabilityZone",
356
- $fault: "client",
357
- ...opts,
358
- });
359
- Object.setPrototypeOf(this, UnsupportedAvailabilityZone.prototype);
360
- this.ErrorCode = opts.ErrorCode;
361
- this.Message = opts.Message;
362
- }
363
- }
364
- class IpAddressInUse extends EFSServiceException {
365
- name = "IpAddressInUse";
366
- $fault = "client";
367
- ErrorCode;
368
- Message;
369
- constructor(opts) {
370
- super({
371
- name: "IpAddressInUse",
372
- $fault: "client",
373
- ...opts,
374
- });
375
- Object.setPrototypeOf(this, IpAddressInUse.prototype);
376
- this.ErrorCode = opts.ErrorCode;
377
- this.Message = opts.Message;
378
- }
379
- }
380
- class MountTargetConflict extends EFSServiceException {
381
- name = "MountTargetConflict";
382
- $fault = "client";
383
- ErrorCode;
384
- Message;
385
- constructor(opts) {
386
- super({
387
- name: "MountTargetConflict",
388
- $fault: "client",
389
- ...opts,
390
- });
391
- Object.setPrototypeOf(this, MountTargetConflict.prototype);
392
- this.ErrorCode = opts.ErrorCode;
393
- this.Message = opts.Message;
394
- }
395
- }
396
- class NetworkInterfaceLimitExceeded extends EFSServiceException {
397
- name = "NetworkInterfaceLimitExceeded";
398
- $fault = "client";
399
- ErrorCode;
400
- Message;
401
- constructor(opts) {
402
- super({
403
- name: "NetworkInterfaceLimitExceeded",
404
- $fault: "client",
405
- ...opts,
406
- });
407
- Object.setPrototypeOf(this, NetworkInterfaceLimitExceeded.prototype);
408
- this.ErrorCode = opts.ErrorCode;
409
- this.Message = opts.Message;
410
- }
411
- }
412
- class NoFreeAddressesInSubnet extends EFSServiceException {
413
- name = "NoFreeAddressesInSubnet";
414
- $fault = "client";
415
- ErrorCode;
416
- Message;
417
- constructor(opts) {
418
- super({
419
- name: "NoFreeAddressesInSubnet",
420
- $fault: "client",
421
- ...opts,
422
- });
423
- Object.setPrototypeOf(this, NoFreeAddressesInSubnet.prototype);
424
- this.ErrorCode = opts.ErrorCode;
425
- this.Message = opts.Message;
426
- }
427
- }
428
- class SecurityGroupLimitExceeded extends EFSServiceException {
429
- name = "SecurityGroupLimitExceeded";
430
- $fault = "client";
431
- ErrorCode;
432
- Message;
433
- constructor(opts) {
434
- super({
435
- name: "SecurityGroupLimitExceeded",
436
- $fault: "client",
437
- ...opts,
438
- });
439
- Object.setPrototypeOf(this, SecurityGroupLimitExceeded.prototype);
440
- this.ErrorCode = opts.ErrorCode;
441
- this.Message = opts.Message;
442
- }
443
- }
444
- class SecurityGroupNotFound extends EFSServiceException {
445
- name = "SecurityGroupNotFound";
446
- $fault = "client";
447
- ErrorCode;
448
- Message;
449
- constructor(opts) {
450
- super({
451
- name: "SecurityGroupNotFound",
452
- $fault: "client",
453
- ...opts,
454
- });
455
- Object.setPrototypeOf(this, SecurityGroupNotFound.prototype);
456
- this.ErrorCode = opts.ErrorCode;
457
- this.Message = opts.Message;
458
- }
459
- }
460
- class SubnetNotFound extends EFSServiceException {
461
- name = "SubnetNotFound";
462
- $fault = "client";
463
- ErrorCode;
464
- Message;
465
- constructor(opts) {
466
- super({
467
- name: "SubnetNotFound",
468
- $fault: "client",
469
- ...opts,
470
- });
471
- Object.setPrototypeOf(this, SubnetNotFound.prototype);
472
- this.ErrorCode = opts.ErrorCode;
473
- this.Message = opts.Message;
474
- }
475
- }
476
- class ReplicationNotFound extends EFSServiceException {
477
- name = "ReplicationNotFound";
478
- $fault = "client";
479
- ErrorCode;
480
- Message;
481
- constructor(opts) {
482
- super({
483
- name: "ReplicationNotFound",
484
- $fault: "client",
485
- ...opts,
486
- });
487
- Object.setPrototypeOf(this, ReplicationNotFound.prototype);
488
- this.ErrorCode = opts.ErrorCode;
489
- this.Message = opts.Message;
490
- }
491
- }
492
- class ValidationException extends EFSServiceException {
493
- name = "ValidationException";
494
- $fault = "client";
495
- ErrorCode;
496
- Message;
497
- constructor(opts) {
498
- super({
499
- name: "ValidationException",
500
- $fault: "client",
501
- ...opts,
502
- });
503
- Object.setPrototypeOf(this, ValidationException.prototype);
504
- this.ErrorCode = opts.ErrorCode;
505
- this.Message = opts.Message;
506
- }
507
- }
508
- class FileSystemInUse extends EFSServiceException {
509
- name = "FileSystemInUse";
510
- $fault = "client";
511
- ErrorCode;
512
- Message;
513
- constructor(opts) {
514
- super({
515
- name: "FileSystemInUse",
516
- $fault: "client",
517
- ...opts,
518
- });
519
- Object.setPrototypeOf(this, FileSystemInUse.prototype);
520
- this.ErrorCode = opts.ErrorCode;
521
- this.Message = opts.Message;
522
- }
523
- }
524
- class DependencyTimeout extends EFSServiceException {
525
- name = "DependencyTimeout";
526
- $fault = "server";
527
- ErrorCode;
528
- Message;
529
- constructor(opts) {
530
- super({
531
- name: "DependencyTimeout",
532
- $fault: "server",
533
- ...opts,
534
- });
535
- Object.setPrototypeOf(this, DependencyTimeout.prototype);
536
- this.ErrorCode = opts.ErrorCode;
537
- this.Message = opts.Message;
538
- }
539
- }
540
- class MountTargetNotFound extends EFSServiceException {
541
- name = "MountTargetNotFound";
542
- $fault = "client";
543
- ErrorCode;
544
- Message;
545
- constructor(opts) {
546
- super({
547
- name: "MountTargetNotFound",
548
- $fault: "client",
549
- ...opts,
550
- });
551
- Object.setPrototypeOf(this, MountTargetNotFound.prototype);
552
- this.ErrorCode = opts.ErrorCode;
553
- this.Message = opts.Message;
554
- }
555
- }
556
- class PolicyNotFound extends EFSServiceException {
557
- name = "PolicyNotFound";
558
- $fault = "client";
559
- ErrorCode;
560
- Message;
561
- constructor(opts) {
562
- super({
563
- name: "PolicyNotFound",
564
- $fault: "client",
565
- ...opts,
566
- });
567
- Object.setPrototypeOf(this, PolicyNotFound.prototype);
568
- this.ErrorCode = opts.ErrorCode;
569
- this.Message = opts.Message;
570
- }
571
- }
572
- class IncorrectMountTargetState extends EFSServiceException {
573
- name = "IncorrectMountTargetState";
574
- $fault = "client";
575
- ErrorCode;
576
- Message;
577
- constructor(opts) {
578
- super({
579
- name: "IncorrectMountTargetState",
580
- $fault: "client",
581
- ...opts,
582
- });
583
- Object.setPrototypeOf(this, IncorrectMountTargetState.prototype);
584
- this.ErrorCode = opts.ErrorCode;
585
- this.Message = opts.Message;
586
- }
587
- }
588
- class InvalidPolicyException extends EFSServiceException {
589
- name = "InvalidPolicyException";
590
- $fault = "client";
591
- ErrorCode;
592
- Message;
593
- constructor(opts) {
594
- super({
595
- name: "InvalidPolicyException",
596
- $fault: "client",
597
- ...opts,
598
- });
599
- Object.setPrototypeOf(this, InvalidPolicyException.prototype);
600
- this.ErrorCode = opts.ErrorCode;
601
- this.Message = opts.Message;
602
- }
603
- }
604
- class TooManyRequests extends EFSServiceException {
605
- name = "TooManyRequests";
606
- $fault = "client";
607
- ErrorCode;
608
- Message;
609
- constructor(opts) {
610
- super({
611
- name: "TooManyRequests",
612
- $fault: "client",
613
- ...opts,
614
- });
615
- Object.setPrototypeOf(this, TooManyRequests.prototype);
616
- this.ErrorCode = opts.ErrorCode;
617
- this.Message = opts.Message;
618
- }
619
- }
620
- class ReplicationAlreadyExists extends EFSServiceException {
621
- name = "ReplicationAlreadyExists";
622
- $fault = "client";
623
- ErrorCode;
624
- Message;
625
- constructor(opts) {
626
- super({
627
- name: "ReplicationAlreadyExists",
628
- $fault: "client",
629
- ...opts,
630
- });
631
- Object.setPrototypeOf(this, ReplicationAlreadyExists.prototype);
632
- this.ErrorCode = opts.ErrorCode;
633
- this.Message = opts.Message;
634
- }
635
- }
636
-
637
- const _AP = "AccessPoints";
638
- const _APA = "AccessPointArn";
639
- const _APAE = "AccessPointAlreadyExists";
640
- const _APD = "AccessPointDescription";
641
- const _APDc = "AccessPointDescriptions";
642
- const _API = "AccessPointId";
643
- const _APLE = "AccessPointLimitExceeded";
644
- const _APNF = "AccessPointNotFound";
645
- const _AZI = "AvailabilityZoneId";
646
- const _AZM = "AvailabilityZonesMismatch";
647
- const _AZN = "AvailabilityZoneName";
648
- const _B = "Backup";
649
- const _BP = "BackupPolicy";
650
- const _BPD = "BackupPolicyDescription";
651
- const _BPLSC = "BypassPolicyLockoutSafetyCheck";
652
- const _BR = "BadRequest";
653
- const _CAP = "CreateAccessPoint";
654
- const _CAPR = "CreateAccessPointRequest";
655
- const _CE = "ConflictException";
656
- const _CFS = "CreateFileSystem";
657
- const _CFSR = "CreateFileSystemRequest";
658
- const _CI = "CreationInfo";
659
- const _CMT = "CreateMountTarget";
660
- const _CMTR = "CreateMountTargetRequest";
661
- const _CRC = "CreateReplicationConfiguration";
662
- const _CRCR = "CreateReplicationConfigurationRequest";
663
- const _CT = "ClientToken";
664
- const _CTR = "CreateTagsRequest";
665
- const _CTr = "CreationToken";
666
- const _CTre = "CreationTime";
667
- const _CTrea = "CreateTags";
668
- const _D = "Destinations";
669
- const _DAP = "DeleteAccessPoint";
670
- const _DAPR = "DeleteAccessPointRequest";
671
- const _DAPRe = "DescribeAccessPointsRequest";
672
- const _DAPRes = "DescribeAccessPointsResponse";
673
- const _DAPResc = "DescribeAccountPreferencesRequest";
674
- const _DAPRescr = "DescribeAccountPreferencesResponse";
675
- const _DAPe = "DescribeAccessPoints";
676
- const _DAPes = "DescribeAccountPreferences";
677
- const _DBP = "DescribeBackupPolicy";
678
- const _DBPR = "DescribeBackupPolicyRequest";
679
- const _DFS = "DeleteFileSystem";
680
- const _DFSP = "DeleteFileSystemPolicy";
681
- const _DFSPR = "DeleteFileSystemPolicyRequest";
682
- const _DFSPRe = "DescribeFileSystemPolicyRequest";
683
- const _DFSPe = "DescribeFileSystemPolicy";
684
- const _DFSR = "DeleteFileSystemRequest";
685
- const _DFSRe = "DescribeFileSystemsRequest";
686
- const _DFSRes = "DescribeFileSystemsResponse";
687
- const _DFSe = "DescribeFileSystems";
688
- const _DLC = "DescribeLifecycleConfiguration";
689
- const _DLCR = "DescribeLifecycleConfigurationRequest";
690
- const _DM = "DeletionMode";
691
- const _DMT = "DeleteMountTarget";
692
- const _DMTR = "DeleteMountTargetRequest";
693
- const _DMTRe = "DescribeMountTargetsRequest";
694
- const _DMTRes = "DescribeMountTargetsResponse";
695
- const _DMTSG = "DescribeMountTargetSecurityGroups";
696
- const _DMTSGR = "DescribeMountTargetSecurityGroupsRequest";
697
- const _DMTSGRe = "DescribeMountTargetSecurityGroupsResponse";
698
- const _DMTe = "DescribeMountTargets";
699
- const _DRC = "DeleteReplicationConfiguration";
700
- const _DRCR = "DeleteReplicationConfigurationRequest";
701
- const _DRCRe = "DescribeReplicationConfigurationsRequest";
702
- const _DRCRes = "DescribeReplicationConfigurationsResponse";
703
- const _DRCe = "DescribeReplicationConfigurations";
704
- const _DT = "DependencyTimeout";
705
- const _DTC = "DestinationToCreate";
706
- const _DTCe = "DestinationsToCreate";
707
- const _DTR = "DeleteTagsRequest";
708
- const _DTRe = "DescribeTagsRequest";
709
- const _DTRes = "DescribeTagsResponse";
710
- const _DTe = "DeleteTags";
711
- const _DTes = "DescribeTags";
712
- const _De = "Destination";
713
- const _E = "Encrypted";
714
- const _EC = "ErrorCode";
715
- const _FS = "FileSystems";
716
- const _FSA = "FileSystemArn";
717
- const _FSAE = "FileSystemAlreadyExists";
718
- const _FSD = "FileSystemDescription";
719
- const _FSDi = "FileSystemDescriptions";
720
- const _FSI = "FileSystemId";
721
- const _FSIU = "FileSystemInUse";
722
- const _FSLE = "FileSystemLimitExceeded";
723
- const _FSNF = "FileSystemNotFound";
724
- const _FSP = "FileSystemProtection";
725
- const _FSPD = "FileSystemPolicyDescription";
726
- const _FSPDi = "FileSystemProtectionDescription";
727
- const _FSS = "FileSystemSize";
728
- const _G = "Gid";
729
- const _IA = "IpAddress";
730
- const _IAIU = "IpAddressInUse";
731
- const _IAT = "IpAddressType";
732
- const _IAp = "Ipv6Address";
733
- const _IFSLCS = "IncorrectFileSystemLifeCycleState";
734
- const _IMTS = "IncorrectMountTargetState";
735
- const _IPE = "InvalidPolicyException";
736
- const _ISE = "InternalServerError";
737
- const _ITC = "InsufficientThroughputCapacity";
738
- const _K = "Key";
739
- const _KKI = "KmsKeyId";
740
- const _LCD = "LifecycleConfigurationDescription";
741
- const _LCS = "LifeCycleState";
742
- const _LP = "LifecyclePolicies";
743
- const _LPi = "LifecyclePolicy";
744
- const _LRT = "LastReplicatedTimestamp";
745
- const _LTFR = "ListTagsForResource";
746
- const _LTFRR = "ListTagsForResourceRequest";
747
- const _LTFRRi = "ListTagsForResourceResponse";
748
- const _M = "Message";
749
- const _MI = "MaxItems";
750
- const _MMTSG = "ModifyMountTargetSecurityGroups";
751
- const _MMTSGR = "ModifyMountTargetSecurityGroupsRequest";
752
- const _MR = "MaxResults";
753
- const _MT = "MountTargets";
754
- const _MTC = "MountTargetConflict";
755
- const _MTD = "MountTargetDescription";
756
- const _MTDo = "MountTargetDescriptions";
757
- const _MTI = "MountTargetId";
758
- const _MTNF = "MountTargetNotFound";
759
- const _Ma = "Marker";
760
- const _N = "Name";
761
- const _NFAIS = "NoFreeAddressesInSubnet";
762
- const _NII = "NetworkInterfaceId";
763
- const _NILE = "NetworkInterfaceLimitExceeded";
764
- const _NM = "NextMarker";
765
- const _NOMT = "NumberOfMountTargets";
766
- const _NT = "NextToken";
767
- const _OG = "OwnerGid";
768
- const _OI = "OwnerId";
769
- const _OSFSA = "OriginalSourceFileSystemArn";
770
- const _OU = "OwnerUid";
771
- const _P = "Permissions";
772
- const _PAP = "PutAccountPreferences";
773
- const _PAPR = "PutAccountPreferencesRequest";
774
- const _PAPRu = "PutAccountPreferencesResponse";
775
- const _PBP = "PutBackupPolicy";
776
- const _PBPR = "PutBackupPolicyRequest";
777
- const _PFSP = "PutFileSystemPolicy";
778
- const _PFSPR = "PutFileSystemPolicyRequest";
779
- const _PLC = "PutLifecycleConfiguration";
780
- const _PLCR = "PutLifecycleConfigurationRequest";
781
- const _PM = "PerformanceMode";
782
- const _PNF = "PolicyNotFound";
783
- const _PTIM = "ProvisionedThroughputInMibps";
784
- const _PU = "PosixUser";
785
- const _Pa = "Path";
786
- const _Po = "Policy";
787
- const _R = "Replications";
788
- const _RA = "RoleArn";
789
- const _RAE = "ReplicationAlreadyExists";
790
- const _RCD = "ReplicationConfigurationDescription";
791
- const _RCDe = "ReplicationConfigurationDescriptions";
792
- const _RD = "RootDirectory";
793
- const _RI = "ResourceId";
794
- const _RIP = "ResourceIdPreference";
795
- const _RIT = "ResourceIdType";
796
- const _RNF = "ReplicationNotFound";
797
- const _ROP = "ReplicationOverwriteProtection";
798
- const _Re = "Region";
799
- const _Res = "Resources";
800
- const _S = "Status";
801
- const _SFSA = "SourceFileSystemArn";
802
- const _SFSI = "SourceFileSystemId";
803
- const _SFSOI = "SourceFileSystemOwnerId";
804
- const _SFSR = "SourceFileSystemRegion";
805
- const _SG = "SecurityGroups";
806
- const _SGLE = "SecurityGroupLimitExceeded";
807
- const _SGNF = "SecurityGroupNotFound";
808
- const _SGe = "SecondaryGids";
809
- const _SI = "SubnetId";
810
- const _SIB = "SizeInBytes";
811
- const _SM = "StatusMessage";
812
- const _SNF = "SubnetNotFound";
813
- const _T = "Tags";
814
- const _TE = "ThrottlingException";
815
- const _TK = "TagKeys";
816
- const _TLE = "ThroughputLimitExceeded";
817
- const _TM = "ThroughputMode";
818
- const _TMR = "TooManyRequests";
819
- const _TR = "TagResource";
820
- const _TRR = "TagResourceRequest";
821
- const _TTA = "TransitionToArchive";
822
- const _TTIA = "TransitionToIA";
823
- const _TTPSC = "TransitionToPrimaryStorageClass";
824
- const _Ta = "Tag";
825
- const _Ti = "Timestamp";
826
- const _U = "Uid";
827
- const _UAZ = "UnsupportedAvailabilityZone";
828
- const _UFS = "UpdateFileSystem";
829
- const _UFSP = "UpdateFileSystemProtection";
830
- const _UFSPR = "UpdateFileSystemProtectionRequest";
831
- const _UFSR = "UpdateFileSystemRequest";
832
- const _UR = "UntagResource";
833
- const _URR = "UntagResourceRequest";
834
- const _V = "Value";
835
- const _VE = "ValidationException";
836
- const _VI = "VpcId";
837
- const _VIA = "ValueInArchive";
838
- const _VIIA = "ValueInIA";
839
- const _VIS = "ValueInStandard";
840
- const _c = "client";
841
- const _dM = "deletionMode";
842
- const _e = "error";
843
- const _h = "http";
844
- const _hE = "httpError";
845
- const _hQ = "httpQuery";
846
- const _s = "server";
847
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.efs";
848
- const _tK = "tagKeys";
849
- const n0 = "com.amazonaws.efs";
850
- var AccessPointAlreadyExists$ = [-3, n0, _APAE,
851
- { [_e]: _c, [_hE]: 409 },
852
- [_EC, _API, _M],
853
- [0, 0, 0], 2
854
- ];
855
- schema.TypeRegistry.for(n0).registerError(AccessPointAlreadyExists$, AccessPointAlreadyExists);
856
- var AccessPointDescription$ = [3, n0, _APD,
857
- 0,
858
- [_CT, _N, _T, _API, _APA, _FSI, _PU, _RD, _OI, _LCS],
859
- [0, 0, () => Tags, 0, 0, 0, () => PosixUser$, () => RootDirectory$, 0, 0]
860
- ];
861
- var AccessPointLimitExceeded$ = [-3, n0, _APLE,
862
- { [_e]: _c, [_hE]: 403 },
863
- [_EC, _M],
864
- [0, 0], 1
865
- ];
866
- schema.TypeRegistry.for(n0).registerError(AccessPointLimitExceeded$, AccessPointLimitExceeded);
867
- var AccessPointNotFound$ = [-3, n0, _APNF,
868
- { [_e]: _c, [_hE]: 404 },
869
- [_EC, _M],
870
- [0, 0], 1
871
- ];
872
- schema.TypeRegistry.for(n0).registerError(AccessPointNotFound$, AccessPointNotFound);
873
- var AvailabilityZonesMismatch$ = [-3, n0, _AZM,
874
- { [_e]: _c, [_hE]: 400 },
875
- [_EC, _M],
876
- [0, 0]
877
- ];
878
- schema.TypeRegistry.for(n0).registerError(AvailabilityZonesMismatch$, AvailabilityZonesMismatch);
879
- var BackupPolicy$ = [3, n0, _BP,
880
- 0,
881
- [_S],
882
- [0], 1
883
- ];
884
- var BackupPolicyDescription$ = [3, n0, _BPD,
885
- 0,
886
- [_BP],
887
- [() => BackupPolicy$]
888
- ];
889
- var BadRequest$ = [-3, n0, _BR,
890
- { [_e]: _c, [_hE]: 400 },
891
- [_EC, _M],
892
- [0, 0], 1
893
- ];
894
- schema.TypeRegistry.for(n0).registerError(BadRequest$, BadRequest);
895
- var ConflictException$ = [-3, n0, _CE,
896
- { [_e]: _c, [_hE]: 409 },
897
- [_EC, _M],
898
- [0, 0]
899
- ];
900
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
901
- var CreateAccessPointRequest$ = [3, n0, _CAPR,
902
- 0,
903
- [_FSI, _CT, _T, _PU, _RD],
904
- [0, [0, 4], () => Tags, () => PosixUser$, () => RootDirectory$], 1
905
- ];
906
- var CreateFileSystemRequest$ = [3, n0, _CFSR,
907
- 0,
908
- [_CTr, _PM, _E, _KKI, _TM, _PTIM, _AZN, _B, _T],
909
- [[0, 4], 0, 2, 0, 0, 1, 0, 2, () => Tags]
910
- ];
911
- var CreateMountTargetRequest$ = [3, n0, _CMTR,
912
- 0,
913
- [_FSI, _SI, _IA, _IAp, _IAT, _SG],
914
- [0, 0, 0, 0, 0, 64 | 0], 2
915
- ];
916
- var CreateReplicationConfigurationRequest$ = [3, n0, _CRCR,
917
- 0,
918
- [_SFSI, _D],
919
- [[0, 1], () => DestinationsToCreate], 2
920
- ];
921
- var CreateTagsRequest$ = [3, n0, _CTR,
922
- 0,
923
- [_FSI, _T],
924
- [[0, 1], () => Tags], 2
925
- ];
926
- var CreationInfo$ = [3, n0, _CI,
927
- 0,
928
- [_OU, _OG, _P],
929
- [1, 1, 0], 3
930
- ];
931
- var DeleteAccessPointRequest$ = [3, n0, _DAPR,
932
- 0,
933
- [_API],
934
- [[0, 1]], 1
935
- ];
936
- var DeleteFileSystemPolicyRequest$ = [3, n0, _DFSPR,
937
- 0,
938
- [_FSI],
939
- [[0, 1]], 1
940
- ];
941
- var DeleteFileSystemRequest$ = [3, n0, _DFSR,
942
- 0,
943
- [_FSI],
944
- [[0, 1]], 1
945
- ];
946
- var DeleteMountTargetRequest$ = [3, n0, _DMTR,
947
- 0,
948
- [_MTI],
949
- [[0, 1]], 1
950
- ];
951
- var DeleteReplicationConfigurationRequest$ = [3, n0, _DRCR,
952
- 0,
953
- [_SFSI, _DM],
954
- [[0, 1], [0, { [_hQ]: _dM }]], 1
955
- ];
956
- var DeleteTagsRequest$ = [3, n0, _DTR,
957
- 0,
958
- [_FSI, _TK],
959
- [[0, 1], 64 | 0], 2
960
- ];
961
- var DependencyTimeout$ = [-3, n0, _DT,
962
- { [_e]: _s, [_hE]: 504 },
963
- [_EC, _M],
964
- [0, 0], 1
965
- ];
966
- schema.TypeRegistry.for(n0).registerError(DependencyTimeout$, DependencyTimeout);
967
- var DescribeAccessPointsRequest$ = [3, n0, _DAPRe,
968
- 0,
969
- [_MR, _NT, _API, _FSI],
970
- [[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [0, { [_hQ]: _API }], [0, { [_hQ]: _FSI }]]
971
- ];
972
- var DescribeAccessPointsResponse$ = [3, n0, _DAPRes,
973
- 0,
974
- [_AP, _NT],
975
- [() => AccessPointDescriptions, 0]
976
- ];
977
- var DescribeAccountPreferencesRequest$ = [3, n0, _DAPResc,
978
- 0,
979
- [_NT, _MR],
980
- [0, 1]
981
- ];
982
- var DescribeAccountPreferencesResponse$ = [3, n0, _DAPRescr,
983
- 0,
984
- [_RIP, _NT],
985
- [() => ResourceIdPreference$, 0]
986
- ];
987
- var DescribeBackupPolicyRequest$ = [3, n0, _DBPR,
988
- 0,
989
- [_FSI],
990
- [[0, 1]], 1
991
- ];
992
- var DescribeFileSystemPolicyRequest$ = [3, n0, _DFSPRe,
993
- 0,
994
- [_FSI],
995
- [[0, 1]], 1
996
- ];
997
- var DescribeFileSystemsRequest$ = [3, n0, _DFSRe,
998
- 0,
999
- [_MI, _Ma, _CTr, _FSI],
1000
- [[1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }], [0, { [_hQ]: _CTr }], [0, { [_hQ]: _FSI }]]
1001
- ];
1002
- var DescribeFileSystemsResponse$ = [3, n0, _DFSRes,
1003
- 0,
1004
- [_Ma, _FS, _NM],
1005
- [0, () => FileSystemDescriptions, 0]
1006
- ];
1007
- var DescribeLifecycleConfigurationRequest$ = [3, n0, _DLCR,
1008
- 0,
1009
- [_FSI],
1010
- [[0, 1]], 1
1011
- ];
1012
- var DescribeMountTargetSecurityGroupsRequest$ = [3, n0, _DMTSGR,
1013
- 0,
1014
- [_MTI],
1015
- [[0, 1]], 1
1016
- ];
1017
- var DescribeMountTargetSecurityGroupsResponse$ = [3, n0, _DMTSGRe,
1018
- 0,
1019
- [_SG],
1020
- [64 | 0], 1
1021
- ];
1022
- var DescribeMountTargetsRequest$ = [3, n0, _DMTRe,
1023
- 0,
1024
- [_MI, _Ma, _FSI, _MTI, _API],
1025
- [[1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }], [0, { [_hQ]: _FSI }], [0, { [_hQ]: _MTI }], [0, { [_hQ]: _API }]]
1026
- ];
1027
- var DescribeMountTargetsResponse$ = [3, n0, _DMTRes,
1028
- 0,
1029
- [_Ma, _MT, _NM],
1030
- [0, () => MountTargetDescriptions, 0]
1031
- ];
1032
- var DescribeReplicationConfigurationsRequest$ = [3, n0, _DRCRe,
1033
- 0,
1034
- [_FSI, _NT, _MR],
1035
- [[0, { [_hQ]: _FSI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1036
- ];
1037
- var DescribeReplicationConfigurationsResponse$ = [3, n0, _DRCRes,
1038
- 0,
1039
- [_R, _NT],
1040
- [() => ReplicationConfigurationDescriptions, 0]
1041
- ];
1042
- var DescribeTagsRequest$ = [3, n0, _DTRe,
1043
- 0,
1044
- [_FSI, _MI, _Ma],
1045
- [[0, 1], [1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }]], 1
1046
- ];
1047
- var DescribeTagsResponse$ = [3, n0, _DTRes,
1048
- 0,
1049
- [_T, _Ma, _NM],
1050
- [() => Tags, 0, 0], 1
1051
- ];
1052
- var Destination$ = [3, n0, _De,
1053
- 0,
1054
- [_S, _FSI, _Re, _LRT, _OI, _SM, _RA],
1055
- [0, 0, 0, 4, 0, 0, 0], 3
1056
- ];
1057
- var DestinationToCreate$ = [3, n0, _DTC,
1058
- 0,
1059
- [_Re, _AZN, _KKI, _FSI, _RA],
1060
- [0, 0, 0, 0, 0]
1061
- ];
1062
- var FileSystemAlreadyExists$ = [-3, n0, _FSAE,
1063
- { [_e]: _c, [_hE]: 409 },
1064
- [_EC, _FSI, _M],
1065
- [0, 0, 0], 2
1066
- ];
1067
- schema.TypeRegistry.for(n0).registerError(FileSystemAlreadyExists$, FileSystemAlreadyExists);
1068
- var FileSystemDescription$ = [3, n0, _FSD,
1069
- 0,
1070
- [_OI, _CTr, _FSI, _CTre, _LCS, _NOMT, _SIB, _PM, _T, _FSA, _N, _E, _KKI, _TM, _PTIM, _AZN, _AZI, _FSP],
1071
- [0, 0, 0, 4, 0, 1, () => FileSystemSize$, 0, () => Tags, 0, 0, 2, 0, 0, 1, 0, 0, () => FileSystemProtectionDescription$], 9
1072
- ];
1073
- var FileSystemInUse$ = [-3, n0, _FSIU,
1074
- { [_e]: _c, [_hE]: 409 },
1075
- [_EC, _M],
1076
- [0, 0], 1
1077
- ];
1078
- schema.TypeRegistry.for(n0).registerError(FileSystemInUse$, FileSystemInUse);
1079
- var FileSystemLimitExceeded$ = [-3, n0, _FSLE,
1080
- { [_e]: _c, [_hE]: 403 },
1081
- [_EC, _M],
1082
- [0, 0], 1
1083
- ];
1084
- schema.TypeRegistry.for(n0).registerError(FileSystemLimitExceeded$, FileSystemLimitExceeded);
1085
- var FileSystemNotFound$ = [-3, n0, _FSNF,
1086
- { [_e]: _c, [_hE]: 404 },
1087
- [_EC, _M],
1088
- [0, 0], 1
1089
- ];
1090
- schema.TypeRegistry.for(n0).registerError(FileSystemNotFound$, FileSystemNotFound);
1091
- var FileSystemPolicyDescription$ = [3, n0, _FSPD,
1092
- 0,
1093
- [_FSI, _Po],
1094
- [0, 0]
1095
- ];
1096
- var FileSystemProtectionDescription$ = [3, n0, _FSPDi,
1097
- 0,
1098
- [_ROP],
1099
- [0]
1100
- ];
1101
- var FileSystemSize$ = [3, n0, _FSS,
1102
- 0,
1103
- [_V, _Ti, _VIIA, _VIS, _VIA],
1104
- [1, 4, 1, 1, 1], 1
1105
- ];
1106
- var IncorrectFileSystemLifeCycleState$ = [-3, n0, _IFSLCS,
1107
- { [_e]: _c, [_hE]: 409 },
1108
- [_EC, _M],
1109
- [0, 0], 1
1110
- ];
1111
- schema.TypeRegistry.for(n0).registerError(IncorrectFileSystemLifeCycleState$, IncorrectFileSystemLifeCycleState);
1112
- var IncorrectMountTargetState$ = [-3, n0, _IMTS,
1113
- { [_e]: _c, [_hE]: 409 },
1114
- [_EC, _M],
1115
- [0, 0], 1
1116
- ];
1117
- schema.TypeRegistry.for(n0).registerError(IncorrectMountTargetState$, IncorrectMountTargetState);
1118
- var InsufficientThroughputCapacity$ = [-3, n0, _ITC,
1119
- { [_e]: _s, [_hE]: 503 },
1120
- [_EC, _M],
1121
- [0, 0], 1
1122
- ];
1123
- schema.TypeRegistry.for(n0).registerError(InsufficientThroughputCapacity$, InsufficientThroughputCapacity);
1124
- var InternalServerError$ = [-3, n0, _ISE,
1125
- { [_e]: _s, [_hE]: 500 },
1126
- [_EC, _M],
1127
- [0, 0], 1
1128
- ];
1129
- schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
1130
- var InvalidPolicyException$ = [-3, n0, _IPE,
1131
- { [_e]: _c, [_hE]: 400 },
1132
- [_EC, _M],
1133
- [0, 0]
1134
- ];
1135
- schema.TypeRegistry.for(n0).registerError(InvalidPolicyException$, InvalidPolicyException);
1136
- var IpAddressInUse$ = [-3, n0, _IAIU,
1137
- { [_e]: _c, [_hE]: 409 },
1138
- [_EC, _M],
1139
- [0, 0], 1
1140
- ];
1141
- schema.TypeRegistry.for(n0).registerError(IpAddressInUse$, IpAddressInUse);
1142
- var LifecycleConfigurationDescription$ = [3, n0, _LCD,
1143
- 0,
1144
- [_LP],
1145
- [() => LifecyclePolicies]
1146
- ];
1147
- var LifecyclePolicy$ = [3, n0, _LPi,
1148
- 0,
1149
- [_TTIA, _TTPSC, _TTA],
1150
- [0, 0, 0]
1151
- ];
1152
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1153
- 0,
1154
- [_RI, _MR, _NT],
1155
- [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
1156
- ];
1157
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1158
- 0,
1159
- [_T, _NT],
1160
- [() => Tags, 0]
1161
- ];
1162
- var ModifyMountTargetSecurityGroupsRequest$ = [3, n0, _MMTSGR,
1163
- 0,
1164
- [_MTI, _SG],
1165
- [[0, 1], 64 | 0], 1
1166
- ];
1167
- var MountTargetConflict$ = [-3, n0, _MTC,
1168
- { [_e]: _c, [_hE]: 409 },
1169
- [_EC, _M],
1170
- [0, 0], 1
1171
- ];
1172
- schema.TypeRegistry.for(n0).registerError(MountTargetConflict$, MountTargetConflict);
1173
- var MountTargetDescription$ = [3, n0, _MTD,
1174
- 0,
1175
- [_MTI, _FSI, _SI, _LCS, _OI, _IA, _IAp, _NII, _AZI, _AZN, _VI],
1176
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 4
1177
- ];
1178
- var MountTargetNotFound$ = [-3, n0, _MTNF,
1179
- { [_e]: _c, [_hE]: 404 },
1180
- [_EC, _M],
1181
- [0, 0], 1
1182
- ];
1183
- schema.TypeRegistry.for(n0).registerError(MountTargetNotFound$, MountTargetNotFound);
1184
- var NetworkInterfaceLimitExceeded$ = [-3, n0, _NILE,
1185
- { [_e]: _c, [_hE]: 409 },
1186
- [_EC, _M],
1187
- [0, 0], 1
1188
- ];
1189
- schema.TypeRegistry.for(n0).registerError(NetworkInterfaceLimitExceeded$, NetworkInterfaceLimitExceeded);
1190
- var NoFreeAddressesInSubnet$ = [-3, n0, _NFAIS,
1191
- { [_e]: _c, [_hE]: 409 },
1192
- [_EC, _M],
1193
- [0, 0], 1
1194
- ];
1195
- schema.TypeRegistry.for(n0).registerError(NoFreeAddressesInSubnet$, NoFreeAddressesInSubnet);
1196
- var PolicyNotFound$ = [-3, n0, _PNF,
1197
- { [_e]: _c, [_hE]: 404 },
1198
- [_EC, _M],
1199
- [0, 0]
1200
- ];
1201
- schema.TypeRegistry.for(n0).registerError(PolicyNotFound$, PolicyNotFound);
1202
- var PosixUser$ = [3, n0, _PU,
1203
- 0,
1204
- [_U, _G, _SGe],
1205
- [1, 1, 64 | 1], 2
1206
- ];
1207
- var PutAccountPreferencesRequest$ = [3, n0, _PAPR,
1208
- 0,
1209
- [_RIT],
1210
- [0], 1
1211
- ];
1212
- var PutAccountPreferencesResponse$ = [3, n0, _PAPRu,
1213
- 0,
1214
- [_RIP],
1215
- [() => ResourceIdPreference$]
1216
- ];
1217
- var PutBackupPolicyRequest$ = [3, n0, _PBPR,
1218
- 0,
1219
- [_FSI, _BP],
1220
- [[0, 1], () => BackupPolicy$], 2
1221
- ];
1222
- var PutFileSystemPolicyRequest$ = [3, n0, _PFSPR,
1223
- 0,
1224
- [_FSI, _Po, _BPLSC],
1225
- [[0, 1], 0, 2], 2
1226
- ];
1227
- var PutLifecycleConfigurationRequest$ = [3, n0, _PLCR,
1228
- 0,
1229
- [_FSI, _LP],
1230
- [[0, 1], () => LifecyclePolicies], 2
1231
- ];
1232
- var ReplicationAlreadyExists$ = [-3, n0, _RAE,
1233
- { [_e]: _c, [_hE]: 409 },
1234
- [_EC, _M],
1235
- [0, 0]
1236
- ];
1237
- schema.TypeRegistry.for(n0).registerError(ReplicationAlreadyExists$, ReplicationAlreadyExists);
1238
- var ReplicationConfigurationDescription$ = [3, n0, _RCD,
1239
- 0,
1240
- [_SFSI, _SFSR, _SFSA, _OSFSA, _CTre, _D, _SFSOI],
1241
- [0, 0, 0, 0, 4, () => Destinations, 0], 6
1242
- ];
1243
- var ReplicationNotFound$ = [-3, n0, _RNF,
1244
- { [_e]: _c, [_hE]: 404 },
1245
- [_EC, _M],
1246
- [0, 0]
1247
- ];
1248
- schema.TypeRegistry.for(n0).registerError(ReplicationNotFound$, ReplicationNotFound);
1249
- var ResourceIdPreference$ = [3, n0, _RIP,
1250
- 0,
1251
- [_RIT, _Res],
1252
- [0, 64 | 0]
1253
- ];
1254
- var RootDirectory$ = [3, n0, _RD,
1255
- 0,
1256
- [_Pa, _CI],
1257
- [0, () => CreationInfo$]
1258
- ];
1259
- var SecurityGroupLimitExceeded$ = [-3, n0, _SGLE,
1260
- { [_e]: _c, [_hE]: 400 },
1261
- [_EC, _M],
1262
- [0, 0], 1
1263
- ];
1264
- schema.TypeRegistry.for(n0).registerError(SecurityGroupLimitExceeded$, SecurityGroupLimitExceeded);
1265
- var SecurityGroupNotFound$ = [-3, n0, _SGNF,
1266
- { [_e]: _c, [_hE]: 400 },
1267
- [_EC, _M],
1268
- [0, 0], 1
1269
- ];
1270
- schema.TypeRegistry.for(n0).registerError(SecurityGroupNotFound$, SecurityGroupNotFound);
1271
- var SubnetNotFound$ = [-3, n0, _SNF,
1272
- { [_e]: _c, [_hE]: 400 },
1273
- [_EC, _M],
1274
- [0, 0], 1
1275
- ];
1276
- schema.TypeRegistry.for(n0).registerError(SubnetNotFound$, SubnetNotFound);
1277
- var Tag$ = [3, n0, _Ta,
1278
- 0,
1279
- [_K, _V],
1280
- [0, 0], 2
1281
- ];
1282
- var TagResourceRequest$ = [3, n0, _TRR,
1283
- 0,
1284
- [_RI, _T],
1285
- [[0, 1], () => Tags], 2
1286
- ];
1287
- var ThrottlingException$ = [-3, n0, _TE,
1288
- { [_e]: _c, [_hE]: 429 },
1289
- [_EC, _M],
1290
- [0, 0]
1291
- ];
1292
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1293
- var ThroughputLimitExceeded$ = [-3, n0, _TLE,
1294
- { [_e]: _c, [_hE]: 400 },
1295
- [_EC, _M],
1296
- [0, 0], 1
1297
- ];
1298
- schema.TypeRegistry.for(n0).registerError(ThroughputLimitExceeded$, ThroughputLimitExceeded);
1299
- var TooManyRequests$ = [-3, n0, _TMR,
1300
- { [_e]: _c, [_hE]: 429 },
1301
- [_EC, _M],
1302
- [0, 0], 1
1303
- ];
1304
- schema.TypeRegistry.for(n0).registerError(TooManyRequests$, TooManyRequests);
1305
- var UnsupportedAvailabilityZone$ = [-3, n0, _UAZ,
1306
- { [_e]: _c, [_hE]: 400 },
1307
- [_EC, _M],
1308
- [0, 0], 1
1309
- ];
1310
- schema.TypeRegistry.for(n0).registerError(UnsupportedAvailabilityZone$, UnsupportedAvailabilityZone);
1311
- var UntagResourceRequest$ = [3, n0, _URR,
1312
- 0,
1313
- [_RI, _TK],
1314
- [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1315
- ];
1316
- var UpdateFileSystemProtectionRequest$ = [3, n0, _UFSPR,
1317
- 0,
1318
- [_FSI, _ROP],
1319
- [[0, 1], 0], 1
1320
- ];
1321
- var UpdateFileSystemRequest$ = [3, n0, _UFSR,
1322
- 0,
1323
- [_FSI, _TM, _PTIM],
1324
- [[0, 1], 0, 1], 1
1325
- ];
1326
- var ValidationException$ = [-3, n0, _VE,
1327
- { [_e]: _c, [_hE]: 400 },
1328
- [_EC, _M],
1329
- [0, 0], 1
1330
- ];
1331
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1332
- var __Unit = "unit";
1333
- var EFSServiceException$ = [-3, _sm, "EFSServiceException", 0, [], []];
1334
- schema.TypeRegistry.for(_sm).registerError(EFSServiceException$, EFSServiceException);
1335
- var AccessPointDescriptions = [1, n0, _APDc,
1336
- 0, () => AccessPointDescription$
1337
- ];
1338
- var Destinations = [1, n0, _D,
1339
- 0, () => Destination$
1340
- ];
1341
- var DestinationsToCreate = [1, n0, _DTCe,
1342
- 0, () => DestinationToCreate$
1343
- ];
1344
- var FileSystemDescriptions = [1, n0, _FSDi,
1345
- 0, () => FileSystemDescription$
1346
- ];
1347
- var LifecyclePolicies = [1, n0, _LP,
1348
- 0, () => LifecyclePolicy$
1349
- ];
1350
- var MountTargetDescriptions = [1, n0, _MTDo,
1351
- 0, () => MountTargetDescription$
1352
- ];
1353
- var ReplicationConfigurationDescriptions = [1, n0, _RCDe,
1354
- 0, () => ReplicationConfigurationDescription$
1355
- ];
1356
- var Tags = [1, n0, _T,
1357
- 0, () => Tag$
1358
- ];
1359
- var CreateAccessPoint$ = [9, n0, _CAP,
1360
- { [_h]: ["POST", "/2015-02-01/access-points", 200] }, () => CreateAccessPointRequest$, () => AccessPointDescription$
1361
- ];
1362
- var CreateFileSystem$ = [9, n0, _CFS,
1363
- { [_h]: ["POST", "/2015-02-01/file-systems", 201] }, () => CreateFileSystemRequest$, () => FileSystemDescription$
1364
- ];
1365
- var CreateMountTarget$ = [9, n0, _CMT,
1366
- { [_h]: ["POST", "/2015-02-01/mount-targets", 200] }, () => CreateMountTargetRequest$, () => MountTargetDescription$
1367
- ];
1368
- var CreateReplicationConfiguration$ = [9, n0, _CRC,
1369
- { [_h]: ["POST", "/2015-02-01/file-systems/{SourceFileSystemId}/replication-configuration", 200] }, () => CreateReplicationConfigurationRequest$, () => ReplicationConfigurationDescription$
1370
- ];
1371
- var CreateTags$ = [9, n0, _CTrea,
1372
- { [_h]: ["POST", "/2015-02-01/create-tags/{FileSystemId}", 204] }, () => CreateTagsRequest$, () => __Unit
1373
- ];
1374
- var DeleteAccessPoint$ = [9, n0, _DAP,
1375
- { [_h]: ["DELETE", "/2015-02-01/access-points/{AccessPointId}", 204] }, () => DeleteAccessPointRequest$, () => __Unit
1376
- ];
1377
- var DeleteFileSystem$ = [9, n0, _DFS,
1378
- { [_h]: ["DELETE", "/2015-02-01/file-systems/{FileSystemId}", 204] }, () => DeleteFileSystemRequest$, () => __Unit
1379
- ];
1380
- var DeleteFileSystemPolicy$ = [9, n0, _DFSP,
1381
- { [_h]: ["DELETE", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] }, () => DeleteFileSystemPolicyRequest$, () => __Unit
1382
- ];
1383
- var DeleteMountTarget$ = [9, n0, _DMT,
1384
- { [_h]: ["DELETE", "/2015-02-01/mount-targets/{MountTargetId}", 204] }, () => DeleteMountTargetRequest$, () => __Unit
1385
- ];
1386
- var DeleteReplicationConfiguration$ = [9, n0, _DRC,
1387
- { [_h]: ["DELETE", "/2015-02-01/file-systems/{SourceFileSystemId}/replication-configuration", 204] }, () => DeleteReplicationConfigurationRequest$, () => __Unit
1388
- ];
1389
- var DeleteTags$ = [9, n0, _DTe,
1390
- { [_h]: ["POST", "/2015-02-01/delete-tags/{FileSystemId}", 204] }, () => DeleteTagsRequest$, () => __Unit
1391
- ];
1392
- var DescribeAccessPoints$ = [9, n0, _DAPe,
1393
- { [_h]: ["GET", "/2015-02-01/access-points", 200] }, () => DescribeAccessPointsRequest$, () => DescribeAccessPointsResponse$
1394
- ];
1395
- var DescribeAccountPreferences$ = [9, n0, _DAPes,
1396
- { [_h]: ["GET", "/2015-02-01/account-preferences", 200] }, () => DescribeAccountPreferencesRequest$, () => DescribeAccountPreferencesResponse$
1397
- ];
1398
- var DescribeBackupPolicy$ = [9, n0, _DBP,
1399
- { [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/backup-policy", 200] }, () => DescribeBackupPolicyRequest$, () => BackupPolicyDescription$
1400
- ];
1401
- var DescribeFileSystemPolicy$ = [9, n0, _DFSPe,
1402
- { [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] }, () => DescribeFileSystemPolicyRequest$, () => FileSystemPolicyDescription$
1403
- ];
1404
- var DescribeFileSystems$ = [9, n0, _DFSe,
1405
- { [_h]: ["GET", "/2015-02-01/file-systems", 200] }, () => DescribeFileSystemsRequest$, () => DescribeFileSystemsResponse$
1406
- ];
1407
- var DescribeLifecycleConfiguration$ = [9, n0, _DLC,
1408
- { [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/lifecycle-configuration", 200] }, () => DescribeLifecycleConfigurationRequest$, () => LifecycleConfigurationDescription$
1409
- ];
1410
- var DescribeMountTargets$ = [9, n0, _DMTe,
1411
- { [_h]: ["GET", "/2015-02-01/mount-targets", 200] }, () => DescribeMountTargetsRequest$, () => DescribeMountTargetsResponse$
1412
- ];
1413
- var DescribeMountTargetSecurityGroups$ = [9, n0, _DMTSG,
1414
- { [_h]: ["GET", "/2015-02-01/mount-targets/{MountTargetId}/security-groups", 200] }, () => DescribeMountTargetSecurityGroupsRequest$, () => DescribeMountTargetSecurityGroupsResponse$
1415
- ];
1416
- var DescribeReplicationConfigurations$ = [9, n0, _DRCe,
1417
- { [_h]: ["GET", "/2015-02-01/file-systems/replication-configurations", 200] }, () => DescribeReplicationConfigurationsRequest$, () => DescribeReplicationConfigurationsResponse$
1418
- ];
1419
- var DescribeTags$ = [9, n0, _DTes,
1420
- { [_h]: ["GET", "/2015-02-01/tags/{FileSystemId}", 200] }, () => DescribeTagsRequest$, () => DescribeTagsResponse$
1421
- ];
1422
- var ListTagsForResource$ = [9, n0, _LTFR,
1423
- { [_h]: ["GET", "/2015-02-01/resource-tags/{ResourceId}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1424
- ];
1425
- var ModifyMountTargetSecurityGroups$ = [9, n0, _MMTSG,
1426
- { [_h]: ["PUT", "/2015-02-01/mount-targets/{MountTargetId}/security-groups", 204] }, () => ModifyMountTargetSecurityGroupsRequest$, () => __Unit
1427
- ];
1428
- var PutAccountPreferences$ = [9, n0, _PAP,
1429
- { [_h]: ["PUT", "/2015-02-01/account-preferences", 200] }, () => PutAccountPreferencesRequest$, () => PutAccountPreferencesResponse$
1430
- ];
1431
- var PutBackupPolicy$ = [9, n0, _PBP,
1432
- { [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/backup-policy", 200] }, () => PutBackupPolicyRequest$, () => BackupPolicyDescription$
1433
- ];
1434
- var PutFileSystemPolicy$ = [9, n0, _PFSP,
1435
- { [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] }, () => PutFileSystemPolicyRequest$, () => FileSystemPolicyDescription$
1436
- ];
1437
- var PutLifecycleConfiguration$ = [9, n0, _PLC,
1438
- { [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/lifecycle-configuration", 200] }, () => PutLifecycleConfigurationRequest$, () => LifecycleConfigurationDescription$
1439
- ];
1440
- var TagResource$ = [9, n0, _TR,
1441
- { [_h]: ["POST", "/2015-02-01/resource-tags/{ResourceId}", 200] }, () => TagResourceRequest$, () => __Unit
1442
- ];
1443
- var UntagResource$ = [9, n0, _UR,
1444
- { [_h]: ["DELETE", "/2015-02-01/resource-tags/{ResourceId}", 200] }, () => UntagResourceRequest$, () => __Unit
1445
- ];
1446
- var UpdateFileSystem$ = [9, n0, _UFS,
1447
- { [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}", 202] }, () => UpdateFileSystemRequest$, () => FileSystemDescription$
1448
- ];
1449
- var UpdateFileSystemProtection$ = [9, n0, _UFSP,
1450
- { [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/protection", 200] }, () => UpdateFileSystemProtectionRequest$, () => FileSystemProtectionDescription$
1451
- ];
1452
-
1453
116
  class CreateAccessPointCommand extends smithyClient.Command
1454
117
  .classBuilder()
1455
118
  .ep(commonParams)
@@ -1458,7 +121,7 @@ class CreateAccessPointCommand extends smithyClient.Command
1458
121
  })
1459
122
  .s("MagnolioAPIService_v20150201", "CreateAccessPoint", {})
1460
123
  .n("EFSClient", "CreateAccessPointCommand")
1461
- .sc(CreateAccessPoint$)
124
+ .sc(schemas_0.CreateAccessPoint$)
1462
125
  .build() {
1463
126
  }
1464
127
 
@@ -1470,7 +133,7 @@ class CreateFileSystemCommand extends smithyClient.Command
1470
133
  })
1471
134
  .s("MagnolioAPIService_v20150201", "CreateFileSystem", {})
1472
135
  .n("EFSClient", "CreateFileSystemCommand")
1473
- .sc(CreateFileSystem$)
136
+ .sc(schemas_0.CreateFileSystem$)
1474
137
  .build() {
1475
138
  }
1476
139
 
@@ -1482,7 +145,7 @@ class CreateMountTargetCommand extends smithyClient.Command
1482
145
  })
1483
146
  .s("MagnolioAPIService_v20150201", "CreateMountTarget", {})
1484
147
  .n("EFSClient", "CreateMountTargetCommand")
1485
- .sc(CreateMountTarget$)
148
+ .sc(schemas_0.CreateMountTarget$)
1486
149
  .build() {
1487
150
  }
1488
151
 
@@ -1494,7 +157,7 @@ class CreateReplicationConfigurationCommand extends smithyClient.Command
1494
157
  })
1495
158
  .s("MagnolioAPIService_v20150201", "CreateReplicationConfiguration", {})
1496
159
  .n("EFSClient", "CreateReplicationConfigurationCommand")
1497
- .sc(CreateReplicationConfiguration$)
160
+ .sc(schemas_0.CreateReplicationConfiguration$)
1498
161
  .build() {
1499
162
  }
1500
163
 
@@ -1506,7 +169,7 @@ class CreateTagsCommand extends smithyClient.Command
1506
169
  })
1507
170
  .s("MagnolioAPIService_v20150201", "CreateTags", {})
1508
171
  .n("EFSClient", "CreateTagsCommand")
1509
- .sc(CreateTags$)
172
+ .sc(schemas_0.CreateTags$)
1510
173
  .build() {
1511
174
  }
1512
175
 
@@ -1518,7 +181,7 @@ class DeleteAccessPointCommand extends smithyClient.Command
1518
181
  })
1519
182
  .s("MagnolioAPIService_v20150201", "DeleteAccessPoint", {})
1520
183
  .n("EFSClient", "DeleteAccessPointCommand")
1521
- .sc(DeleteAccessPoint$)
184
+ .sc(schemas_0.DeleteAccessPoint$)
1522
185
  .build() {
1523
186
  }
1524
187
 
@@ -1530,7 +193,7 @@ class DeleteFileSystemCommand extends smithyClient.Command
1530
193
  })
1531
194
  .s("MagnolioAPIService_v20150201", "DeleteFileSystem", {})
1532
195
  .n("EFSClient", "DeleteFileSystemCommand")
1533
- .sc(DeleteFileSystem$)
196
+ .sc(schemas_0.DeleteFileSystem$)
1534
197
  .build() {
1535
198
  }
1536
199
 
@@ -1542,7 +205,7 @@ class DeleteFileSystemPolicyCommand extends smithyClient.Command
1542
205
  })
1543
206
  .s("MagnolioAPIService_v20150201", "DeleteFileSystemPolicy", {})
1544
207
  .n("EFSClient", "DeleteFileSystemPolicyCommand")
1545
- .sc(DeleteFileSystemPolicy$)
208
+ .sc(schemas_0.DeleteFileSystemPolicy$)
1546
209
  .build() {
1547
210
  }
1548
211
 
@@ -1554,7 +217,7 @@ class DeleteMountTargetCommand extends smithyClient.Command
1554
217
  })
1555
218
  .s("MagnolioAPIService_v20150201", "DeleteMountTarget", {})
1556
219
  .n("EFSClient", "DeleteMountTargetCommand")
1557
- .sc(DeleteMountTarget$)
220
+ .sc(schemas_0.DeleteMountTarget$)
1558
221
  .build() {
1559
222
  }
1560
223
 
@@ -1566,7 +229,7 @@ class DeleteReplicationConfigurationCommand extends smithyClient.Command
1566
229
  })
1567
230
  .s("MagnolioAPIService_v20150201", "DeleteReplicationConfiguration", {})
1568
231
  .n("EFSClient", "DeleteReplicationConfigurationCommand")
1569
- .sc(DeleteReplicationConfiguration$)
232
+ .sc(schemas_0.DeleteReplicationConfiguration$)
1570
233
  .build() {
1571
234
  }
1572
235
 
@@ -1578,7 +241,7 @@ class DeleteTagsCommand extends smithyClient.Command
1578
241
  })
1579
242
  .s("MagnolioAPIService_v20150201", "DeleteTags", {})
1580
243
  .n("EFSClient", "DeleteTagsCommand")
1581
- .sc(DeleteTags$)
244
+ .sc(schemas_0.DeleteTags$)
1582
245
  .build() {
1583
246
  }
1584
247
 
@@ -1590,7 +253,7 @@ class DescribeAccessPointsCommand extends smithyClient.Command
1590
253
  })
1591
254
  .s("MagnolioAPIService_v20150201", "DescribeAccessPoints", {})
1592
255
  .n("EFSClient", "DescribeAccessPointsCommand")
1593
- .sc(DescribeAccessPoints$)
256
+ .sc(schemas_0.DescribeAccessPoints$)
1594
257
  .build() {
1595
258
  }
1596
259
 
@@ -1602,7 +265,7 @@ class DescribeAccountPreferencesCommand extends smithyClient.Command
1602
265
  })
1603
266
  .s("MagnolioAPIService_v20150201", "DescribeAccountPreferences", {})
1604
267
  .n("EFSClient", "DescribeAccountPreferencesCommand")
1605
- .sc(DescribeAccountPreferences$)
268
+ .sc(schemas_0.DescribeAccountPreferences$)
1606
269
  .build() {
1607
270
  }
1608
271
 
@@ -1614,7 +277,7 @@ class DescribeBackupPolicyCommand extends smithyClient.Command
1614
277
  })
1615
278
  .s("MagnolioAPIService_v20150201", "DescribeBackupPolicy", {})
1616
279
  .n("EFSClient", "DescribeBackupPolicyCommand")
1617
- .sc(DescribeBackupPolicy$)
280
+ .sc(schemas_0.DescribeBackupPolicy$)
1618
281
  .build() {
1619
282
  }
1620
283
 
@@ -1626,7 +289,7 @@ class DescribeFileSystemPolicyCommand extends smithyClient.Command
1626
289
  })
1627
290
  .s("MagnolioAPIService_v20150201", "DescribeFileSystemPolicy", {})
1628
291
  .n("EFSClient", "DescribeFileSystemPolicyCommand")
1629
- .sc(DescribeFileSystemPolicy$)
292
+ .sc(schemas_0.DescribeFileSystemPolicy$)
1630
293
  .build() {
1631
294
  }
1632
295
 
@@ -1638,7 +301,7 @@ class DescribeFileSystemsCommand extends smithyClient.Command
1638
301
  })
1639
302
  .s("MagnolioAPIService_v20150201", "DescribeFileSystems", {})
1640
303
  .n("EFSClient", "DescribeFileSystemsCommand")
1641
- .sc(DescribeFileSystems$)
304
+ .sc(schemas_0.DescribeFileSystems$)
1642
305
  .build() {
1643
306
  }
1644
307
 
@@ -1650,7 +313,7 @@ class DescribeLifecycleConfigurationCommand extends smithyClient.Command
1650
313
  })
1651
314
  .s("MagnolioAPIService_v20150201", "DescribeLifecycleConfiguration", {})
1652
315
  .n("EFSClient", "DescribeLifecycleConfigurationCommand")
1653
- .sc(DescribeLifecycleConfiguration$)
316
+ .sc(schemas_0.DescribeLifecycleConfiguration$)
1654
317
  .build() {
1655
318
  }
1656
319
 
@@ -1662,7 +325,7 @@ class DescribeMountTargetsCommand extends smithyClient.Command
1662
325
  })
1663
326
  .s("MagnolioAPIService_v20150201", "DescribeMountTargets", {})
1664
327
  .n("EFSClient", "DescribeMountTargetsCommand")
1665
- .sc(DescribeMountTargets$)
328
+ .sc(schemas_0.DescribeMountTargets$)
1666
329
  .build() {
1667
330
  }
1668
331
 
@@ -1674,7 +337,7 @@ class DescribeMountTargetSecurityGroupsCommand extends smithyClient.Command
1674
337
  })
1675
338
  .s("MagnolioAPIService_v20150201", "DescribeMountTargetSecurityGroups", {})
1676
339
  .n("EFSClient", "DescribeMountTargetSecurityGroupsCommand")
1677
- .sc(DescribeMountTargetSecurityGroups$)
340
+ .sc(schemas_0.DescribeMountTargetSecurityGroups$)
1678
341
  .build() {
1679
342
  }
1680
343
 
@@ -1686,7 +349,7 @@ class DescribeReplicationConfigurationsCommand extends smithyClient.Command
1686
349
  })
1687
350
  .s("MagnolioAPIService_v20150201", "DescribeReplicationConfigurations", {})
1688
351
  .n("EFSClient", "DescribeReplicationConfigurationsCommand")
1689
- .sc(DescribeReplicationConfigurations$)
352
+ .sc(schemas_0.DescribeReplicationConfigurations$)
1690
353
  .build() {
1691
354
  }
1692
355
 
@@ -1698,7 +361,7 @@ class DescribeTagsCommand extends smithyClient.Command
1698
361
  })
1699
362
  .s("MagnolioAPIService_v20150201", "DescribeTags", {})
1700
363
  .n("EFSClient", "DescribeTagsCommand")
1701
- .sc(DescribeTags$)
364
+ .sc(schemas_0.DescribeTags$)
1702
365
  .build() {
1703
366
  }
1704
367
 
@@ -1710,7 +373,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1710
373
  })
1711
374
  .s("MagnolioAPIService_v20150201", "ListTagsForResource", {})
1712
375
  .n("EFSClient", "ListTagsForResourceCommand")
1713
- .sc(ListTagsForResource$)
376
+ .sc(schemas_0.ListTagsForResource$)
1714
377
  .build() {
1715
378
  }
1716
379
 
@@ -1722,7 +385,7 @@ class ModifyMountTargetSecurityGroupsCommand extends smithyClient.Command
1722
385
  })
1723
386
  .s("MagnolioAPIService_v20150201", "ModifyMountTargetSecurityGroups", {})
1724
387
  .n("EFSClient", "ModifyMountTargetSecurityGroupsCommand")
1725
- .sc(ModifyMountTargetSecurityGroups$)
388
+ .sc(schemas_0.ModifyMountTargetSecurityGroups$)
1726
389
  .build() {
1727
390
  }
1728
391
 
@@ -1734,7 +397,7 @@ class PutAccountPreferencesCommand extends smithyClient.Command
1734
397
  })
1735
398
  .s("MagnolioAPIService_v20150201", "PutAccountPreferences", {})
1736
399
  .n("EFSClient", "PutAccountPreferencesCommand")
1737
- .sc(PutAccountPreferences$)
400
+ .sc(schemas_0.PutAccountPreferences$)
1738
401
  .build() {
1739
402
  }
1740
403
 
@@ -1746,7 +409,7 @@ class PutBackupPolicyCommand extends smithyClient.Command
1746
409
  })
1747
410
  .s("MagnolioAPIService_v20150201", "PutBackupPolicy", {})
1748
411
  .n("EFSClient", "PutBackupPolicyCommand")
1749
- .sc(PutBackupPolicy$)
412
+ .sc(schemas_0.PutBackupPolicy$)
1750
413
  .build() {
1751
414
  }
1752
415
 
@@ -1758,7 +421,7 @@ class PutFileSystemPolicyCommand extends smithyClient.Command
1758
421
  })
1759
422
  .s("MagnolioAPIService_v20150201", "PutFileSystemPolicy", {})
1760
423
  .n("EFSClient", "PutFileSystemPolicyCommand")
1761
- .sc(PutFileSystemPolicy$)
424
+ .sc(schemas_0.PutFileSystemPolicy$)
1762
425
  .build() {
1763
426
  }
1764
427
 
@@ -1770,7 +433,7 @@ class PutLifecycleConfigurationCommand extends smithyClient.Command
1770
433
  })
1771
434
  .s("MagnolioAPIService_v20150201", "PutLifecycleConfiguration", {})
1772
435
  .n("EFSClient", "PutLifecycleConfigurationCommand")
1773
- .sc(PutLifecycleConfiguration$)
436
+ .sc(schemas_0.PutLifecycleConfiguration$)
1774
437
  .build() {
1775
438
  }
1776
439
 
@@ -1782,7 +445,7 @@ class TagResourceCommand extends smithyClient.Command
1782
445
  })
1783
446
  .s("MagnolioAPIService_v20150201", "TagResource", {})
1784
447
  .n("EFSClient", "TagResourceCommand")
1785
- .sc(TagResource$)
448
+ .sc(schemas_0.TagResource$)
1786
449
  .build() {
1787
450
  }
1788
451
 
@@ -1794,7 +457,7 @@ class UntagResourceCommand extends smithyClient.Command
1794
457
  })
1795
458
  .s("MagnolioAPIService_v20150201", "UntagResource", {})
1796
459
  .n("EFSClient", "UntagResourceCommand")
1797
- .sc(UntagResource$)
460
+ .sc(schemas_0.UntagResource$)
1798
461
  .build() {
1799
462
  }
1800
463
 
@@ -1806,7 +469,7 @@ class UpdateFileSystemCommand extends smithyClient.Command
1806
469
  })
1807
470
  .s("MagnolioAPIService_v20150201", "UpdateFileSystem", {})
1808
471
  .n("EFSClient", "UpdateFileSystemCommand")
1809
- .sc(UpdateFileSystem$)
472
+ .sc(schemas_0.UpdateFileSystem$)
1810
473
  .build() {
1811
474
  }
1812
475
 
@@ -1818,7 +481,7 @@ class UpdateFileSystemProtectionCommand extends smithyClient.Command
1818
481
  })
1819
482
  .s("MagnolioAPIService_v20150201", "UpdateFileSystemProtection", {})
1820
483
  .n("EFSClient", "UpdateFileSystemProtectionCommand")
1821
- .sc(UpdateFileSystemProtection$)
484
+ .sc(schemas_0.UpdateFileSystemProtection$)
1822
485
  .build() {
1823
486
  }
1824
487
 
@@ -1966,210 +629,71 @@ Object.defineProperty(exports, "__Client", {
1966
629
  enumerable: true,
1967
630
  get: function () { return smithyClient.Client; }
1968
631
  });
1969
- exports.AccessPointAlreadyExists = AccessPointAlreadyExists;
1970
- exports.AccessPointAlreadyExists$ = AccessPointAlreadyExists$;
1971
- exports.AccessPointDescription$ = AccessPointDescription$;
1972
- exports.AccessPointLimitExceeded = AccessPointLimitExceeded;
1973
- exports.AccessPointLimitExceeded$ = AccessPointLimitExceeded$;
1974
- exports.AccessPointNotFound = AccessPointNotFound;
1975
- exports.AccessPointNotFound$ = AccessPointNotFound$;
1976
- exports.AvailabilityZonesMismatch = AvailabilityZonesMismatch;
1977
- exports.AvailabilityZonesMismatch$ = AvailabilityZonesMismatch$;
1978
- exports.BackupPolicy$ = BackupPolicy$;
1979
- exports.BackupPolicyDescription$ = BackupPolicyDescription$;
1980
- exports.BadRequest = BadRequest;
1981
- exports.BadRequest$ = BadRequest$;
1982
- exports.ConflictException = ConflictException;
1983
- exports.ConflictException$ = ConflictException$;
1984
- exports.CreateAccessPoint$ = CreateAccessPoint$;
632
+ Object.defineProperty(exports, "EFSServiceException", {
633
+ enumerable: true,
634
+ get: function () { return EFSServiceException.EFSServiceException; }
635
+ });
1985
636
  exports.CreateAccessPointCommand = CreateAccessPointCommand;
1986
- exports.CreateAccessPointRequest$ = CreateAccessPointRequest$;
1987
- exports.CreateFileSystem$ = CreateFileSystem$;
1988
637
  exports.CreateFileSystemCommand = CreateFileSystemCommand;
1989
- exports.CreateFileSystemRequest$ = CreateFileSystemRequest$;
1990
- exports.CreateMountTarget$ = CreateMountTarget$;
1991
638
  exports.CreateMountTargetCommand = CreateMountTargetCommand;
1992
- exports.CreateMountTargetRequest$ = CreateMountTargetRequest$;
1993
- exports.CreateReplicationConfiguration$ = CreateReplicationConfiguration$;
1994
639
  exports.CreateReplicationConfigurationCommand = CreateReplicationConfigurationCommand;
1995
- exports.CreateReplicationConfigurationRequest$ = CreateReplicationConfigurationRequest$;
1996
- exports.CreateTags$ = CreateTags$;
1997
640
  exports.CreateTagsCommand = CreateTagsCommand;
1998
- exports.CreateTagsRequest$ = CreateTagsRequest$;
1999
- exports.CreationInfo$ = CreationInfo$;
2000
- exports.DeleteAccessPoint$ = DeleteAccessPoint$;
2001
641
  exports.DeleteAccessPointCommand = DeleteAccessPointCommand;
2002
- exports.DeleteAccessPointRequest$ = DeleteAccessPointRequest$;
2003
- exports.DeleteFileSystem$ = DeleteFileSystem$;
2004
642
  exports.DeleteFileSystemCommand = DeleteFileSystemCommand;
2005
- exports.DeleteFileSystemPolicy$ = DeleteFileSystemPolicy$;
2006
643
  exports.DeleteFileSystemPolicyCommand = DeleteFileSystemPolicyCommand;
2007
- exports.DeleteFileSystemPolicyRequest$ = DeleteFileSystemPolicyRequest$;
2008
- exports.DeleteFileSystemRequest$ = DeleteFileSystemRequest$;
2009
- exports.DeleteMountTarget$ = DeleteMountTarget$;
2010
644
  exports.DeleteMountTargetCommand = DeleteMountTargetCommand;
2011
- exports.DeleteMountTargetRequest$ = DeleteMountTargetRequest$;
2012
- exports.DeleteReplicationConfiguration$ = DeleteReplicationConfiguration$;
2013
645
  exports.DeleteReplicationConfigurationCommand = DeleteReplicationConfigurationCommand;
2014
- exports.DeleteReplicationConfigurationRequest$ = DeleteReplicationConfigurationRequest$;
2015
- exports.DeleteTags$ = DeleteTags$;
2016
646
  exports.DeleteTagsCommand = DeleteTagsCommand;
2017
- exports.DeleteTagsRequest$ = DeleteTagsRequest$;
2018
647
  exports.DeletionMode = DeletionMode;
2019
- exports.DependencyTimeout = DependencyTimeout;
2020
- exports.DependencyTimeout$ = DependencyTimeout$;
2021
- exports.DescribeAccessPoints$ = DescribeAccessPoints$;
2022
648
  exports.DescribeAccessPointsCommand = DescribeAccessPointsCommand;
2023
- exports.DescribeAccessPointsRequest$ = DescribeAccessPointsRequest$;
2024
- exports.DescribeAccessPointsResponse$ = DescribeAccessPointsResponse$;
2025
- exports.DescribeAccountPreferences$ = DescribeAccountPreferences$;
2026
649
  exports.DescribeAccountPreferencesCommand = DescribeAccountPreferencesCommand;
2027
- exports.DescribeAccountPreferencesRequest$ = DescribeAccountPreferencesRequest$;
2028
- exports.DescribeAccountPreferencesResponse$ = DescribeAccountPreferencesResponse$;
2029
- exports.DescribeBackupPolicy$ = DescribeBackupPolicy$;
2030
650
  exports.DescribeBackupPolicyCommand = DescribeBackupPolicyCommand;
2031
- exports.DescribeBackupPolicyRequest$ = DescribeBackupPolicyRequest$;
2032
- exports.DescribeFileSystemPolicy$ = DescribeFileSystemPolicy$;
2033
651
  exports.DescribeFileSystemPolicyCommand = DescribeFileSystemPolicyCommand;
2034
- exports.DescribeFileSystemPolicyRequest$ = DescribeFileSystemPolicyRequest$;
2035
- exports.DescribeFileSystems$ = DescribeFileSystems$;
2036
652
  exports.DescribeFileSystemsCommand = DescribeFileSystemsCommand;
2037
- exports.DescribeFileSystemsRequest$ = DescribeFileSystemsRequest$;
2038
- exports.DescribeFileSystemsResponse$ = DescribeFileSystemsResponse$;
2039
- exports.DescribeLifecycleConfiguration$ = DescribeLifecycleConfiguration$;
2040
653
  exports.DescribeLifecycleConfigurationCommand = DescribeLifecycleConfigurationCommand;
2041
- exports.DescribeLifecycleConfigurationRequest$ = DescribeLifecycleConfigurationRequest$;
2042
- exports.DescribeMountTargetSecurityGroups$ = DescribeMountTargetSecurityGroups$;
2043
654
  exports.DescribeMountTargetSecurityGroupsCommand = DescribeMountTargetSecurityGroupsCommand;
2044
- exports.DescribeMountTargetSecurityGroupsRequest$ = DescribeMountTargetSecurityGroupsRequest$;
2045
- exports.DescribeMountTargetSecurityGroupsResponse$ = DescribeMountTargetSecurityGroupsResponse$;
2046
- exports.DescribeMountTargets$ = DescribeMountTargets$;
2047
655
  exports.DescribeMountTargetsCommand = DescribeMountTargetsCommand;
2048
- exports.DescribeMountTargetsRequest$ = DescribeMountTargetsRequest$;
2049
- exports.DescribeMountTargetsResponse$ = DescribeMountTargetsResponse$;
2050
- exports.DescribeReplicationConfigurations$ = DescribeReplicationConfigurations$;
2051
656
  exports.DescribeReplicationConfigurationsCommand = DescribeReplicationConfigurationsCommand;
2052
- exports.DescribeReplicationConfigurationsRequest$ = DescribeReplicationConfigurationsRequest$;
2053
- exports.DescribeReplicationConfigurationsResponse$ = DescribeReplicationConfigurationsResponse$;
2054
- exports.DescribeTags$ = DescribeTags$;
2055
657
  exports.DescribeTagsCommand = DescribeTagsCommand;
2056
- exports.DescribeTagsRequest$ = DescribeTagsRequest$;
2057
- exports.DescribeTagsResponse$ = DescribeTagsResponse$;
2058
- exports.Destination$ = Destination$;
2059
- exports.DestinationToCreate$ = DestinationToCreate$;
2060
658
  exports.EFS = EFS;
2061
659
  exports.EFSClient = EFSClient;
2062
- exports.EFSServiceException = EFSServiceException;
2063
- exports.EFSServiceException$ = EFSServiceException$;
2064
- exports.FileSystemAlreadyExists = FileSystemAlreadyExists;
2065
- exports.FileSystemAlreadyExists$ = FileSystemAlreadyExists$;
2066
- exports.FileSystemDescription$ = FileSystemDescription$;
2067
- exports.FileSystemInUse = FileSystemInUse;
2068
- exports.FileSystemInUse$ = FileSystemInUse$;
2069
- exports.FileSystemLimitExceeded = FileSystemLimitExceeded;
2070
- exports.FileSystemLimitExceeded$ = FileSystemLimitExceeded$;
2071
- exports.FileSystemNotFound = FileSystemNotFound;
2072
- exports.FileSystemNotFound$ = FileSystemNotFound$;
2073
- exports.FileSystemPolicyDescription$ = FileSystemPolicyDescription$;
2074
- exports.FileSystemProtectionDescription$ = FileSystemProtectionDescription$;
2075
- exports.FileSystemSize$ = FileSystemSize$;
2076
- exports.IncorrectFileSystemLifeCycleState = IncorrectFileSystemLifeCycleState;
2077
- exports.IncorrectFileSystemLifeCycleState$ = IncorrectFileSystemLifeCycleState$;
2078
- exports.IncorrectMountTargetState = IncorrectMountTargetState;
2079
- exports.IncorrectMountTargetState$ = IncorrectMountTargetState$;
2080
- exports.InsufficientThroughputCapacity = InsufficientThroughputCapacity;
2081
- exports.InsufficientThroughputCapacity$ = InsufficientThroughputCapacity$;
2082
- exports.InternalServerError = InternalServerError;
2083
- exports.InternalServerError$ = InternalServerError$;
2084
- exports.InvalidPolicyException = InvalidPolicyException;
2085
- exports.InvalidPolicyException$ = InvalidPolicyException$;
2086
- exports.IpAddressInUse = IpAddressInUse;
2087
- exports.IpAddressInUse$ = IpAddressInUse$;
2088
660
  exports.IpAddressType = IpAddressType;
2089
661
  exports.LifeCycleState = LifeCycleState;
2090
- exports.LifecycleConfigurationDescription$ = LifecycleConfigurationDescription$;
2091
- exports.LifecyclePolicy$ = LifecyclePolicy$;
2092
- exports.ListTagsForResource$ = ListTagsForResource$;
2093
662
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2094
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2095
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2096
- exports.ModifyMountTargetSecurityGroups$ = ModifyMountTargetSecurityGroups$;
2097
663
  exports.ModifyMountTargetSecurityGroupsCommand = ModifyMountTargetSecurityGroupsCommand;
2098
- exports.ModifyMountTargetSecurityGroupsRequest$ = ModifyMountTargetSecurityGroupsRequest$;
2099
- exports.MountTargetConflict = MountTargetConflict;
2100
- exports.MountTargetConflict$ = MountTargetConflict$;
2101
- exports.MountTargetDescription$ = MountTargetDescription$;
2102
- exports.MountTargetNotFound = MountTargetNotFound;
2103
- exports.MountTargetNotFound$ = MountTargetNotFound$;
2104
- exports.NetworkInterfaceLimitExceeded = NetworkInterfaceLimitExceeded;
2105
- exports.NetworkInterfaceLimitExceeded$ = NetworkInterfaceLimitExceeded$;
2106
- exports.NoFreeAddressesInSubnet = NoFreeAddressesInSubnet;
2107
- exports.NoFreeAddressesInSubnet$ = NoFreeAddressesInSubnet$;
2108
664
  exports.PerformanceMode = PerformanceMode;
2109
- exports.PolicyNotFound = PolicyNotFound;
2110
- exports.PolicyNotFound$ = PolicyNotFound$;
2111
- exports.PosixUser$ = PosixUser$;
2112
- exports.PutAccountPreferences$ = PutAccountPreferences$;
2113
665
  exports.PutAccountPreferencesCommand = PutAccountPreferencesCommand;
2114
- exports.PutAccountPreferencesRequest$ = PutAccountPreferencesRequest$;
2115
- exports.PutAccountPreferencesResponse$ = PutAccountPreferencesResponse$;
2116
- exports.PutBackupPolicy$ = PutBackupPolicy$;
2117
666
  exports.PutBackupPolicyCommand = PutBackupPolicyCommand;
2118
- exports.PutBackupPolicyRequest$ = PutBackupPolicyRequest$;
2119
- exports.PutFileSystemPolicy$ = PutFileSystemPolicy$;
2120
667
  exports.PutFileSystemPolicyCommand = PutFileSystemPolicyCommand;
2121
- exports.PutFileSystemPolicyRequest$ = PutFileSystemPolicyRequest$;
2122
- exports.PutLifecycleConfiguration$ = PutLifecycleConfiguration$;
2123
668
  exports.PutLifecycleConfigurationCommand = PutLifecycleConfigurationCommand;
2124
- exports.PutLifecycleConfigurationRequest$ = PutLifecycleConfigurationRequest$;
2125
- exports.ReplicationAlreadyExists = ReplicationAlreadyExists;
2126
- exports.ReplicationAlreadyExists$ = ReplicationAlreadyExists$;
2127
- exports.ReplicationConfigurationDescription$ = ReplicationConfigurationDescription$;
2128
- exports.ReplicationNotFound = ReplicationNotFound;
2129
- exports.ReplicationNotFound$ = ReplicationNotFound$;
2130
669
  exports.ReplicationOverwriteProtection = ReplicationOverwriteProtection;
2131
670
  exports.ReplicationStatus = ReplicationStatus;
2132
671
  exports.Resource = Resource;
2133
- exports.ResourceIdPreference$ = ResourceIdPreference$;
2134
672
  exports.ResourceIdType = ResourceIdType;
2135
- exports.RootDirectory$ = RootDirectory$;
2136
- exports.SecurityGroupLimitExceeded = SecurityGroupLimitExceeded;
2137
- exports.SecurityGroupLimitExceeded$ = SecurityGroupLimitExceeded$;
2138
- exports.SecurityGroupNotFound = SecurityGroupNotFound;
2139
- exports.SecurityGroupNotFound$ = SecurityGroupNotFound$;
2140
673
  exports.Status = Status;
2141
- exports.SubnetNotFound = SubnetNotFound;
2142
- exports.SubnetNotFound$ = SubnetNotFound$;
2143
- exports.Tag$ = Tag$;
2144
- exports.TagResource$ = TagResource$;
2145
674
  exports.TagResourceCommand = TagResourceCommand;
2146
- exports.TagResourceRequest$ = TagResourceRequest$;
2147
- exports.ThrottlingException = ThrottlingException;
2148
- exports.ThrottlingException$ = ThrottlingException$;
2149
- exports.ThroughputLimitExceeded = ThroughputLimitExceeded;
2150
- exports.ThroughputLimitExceeded$ = ThroughputLimitExceeded$;
2151
675
  exports.ThroughputMode = ThroughputMode;
2152
- exports.TooManyRequests = TooManyRequests;
2153
- exports.TooManyRequests$ = TooManyRequests$;
2154
676
  exports.TransitionToArchiveRules = TransitionToArchiveRules;
2155
677
  exports.TransitionToIARules = TransitionToIARules;
2156
678
  exports.TransitionToPrimaryStorageClassRules = TransitionToPrimaryStorageClassRules;
2157
- exports.UnsupportedAvailabilityZone = UnsupportedAvailabilityZone;
2158
- exports.UnsupportedAvailabilityZone$ = UnsupportedAvailabilityZone$;
2159
- exports.UntagResource$ = UntagResource$;
2160
679
  exports.UntagResourceCommand = UntagResourceCommand;
2161
- exports.UntagResourceRequest$ = UntagResourceRequest$;
2162
- exports.UpdateFileSystem$ = UpdateFileSystem$;
2163
680
  exports.UpdateFileSystemCommand = UpdateFileSystemCommand;
2164
- exports.UpdateFileSystemProtection$ = UpdateFileSystemProtection$;
2165
681
  exports.UpdateFileSystemProtectionCommand = UpdateFileSystemProtectionCommand;
2166
- exports.UpdateFileSystemProtectionRequest$ = UpdateFileSystemProtectionRequest$;
2167
- exports.UpdateFileSystemRequest$ = UpdateFileSystemRequest$;
2168
- exports.ValidationException = ValidationException;
2169
- exports.ValidationException$ = ValidationException$;
2170
682
  exports.paginateDescribeAccessPoints = paginateDescribeAccessPoints;
2171
683
  exports.paginateDescribeFileSystems = paginateDescribeFileSystems;
2172
684
  exports.paginateDescribeMountTargets = paginateDescribeMountTargets;
2173
685
  exports.paginateDescribeReplicationConfigurations = paginateDescribeReplicationConfigurations;
2174
686
  exports.paginateDescribeTags = paginateDescribeTags;
2175
687
  exports.paginateListTagsForResource = paginateListTagsForResource;
688
+ Object.keys(schemas_0).forEach(function (k) {
689
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
690
+ enumerable: true,
691
+ get: function () { return schemas_0[k]; }
692
+ });
693
+ });
694
+ Object.keys(errors).forEach(function (k) {
695
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
696
+ enumerable: true,
697
+ get: function () { return errors[k]; }
698
+ });
699
+ });