@aws-sdk/client-efs 3.952.0 → 3.954.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 +502 -352
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAccessPointCommand.js +2 -2
- package/dist-es/commands/CreateFileSystemCommand.js +2 -2
- package/dist-es/commands/CreateMountTargetCommand.js +2 -2
- package/dist-es/commands/CreateReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateTagsCommand.js +2 -2
- package/dist-es/commands/DeleteAccessPointCommand.js +2 -2
- package/dist-es/commands/DeleteFileSystemCommand.js +2 -2
- package/dist-es/commands/DeleteFileSystemPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteMountTargetCommand.js +2 -2
- package/dist-es/commands/DeleteReplicationConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteTagsCommand.js +2 -2
- package/dist-es/commands/DescribeAccessPointsCommand.js +2 -2
- package/dist-es/commands/DescribeAccountPreferencesCommand.js +2 -2
- package/dist-es/commands/DescribeBackupPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeFileSystemPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeFileSystemsCommand.js +2 -2
- package/dist-es/commands/DescribeLifecycleConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeMountTargetSecurityGroupsCommand.js +2 -2
- package/dist-es/commands/DescribeMountTargetsCommand.js +2 -2
- package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +2 -2
- package/dist-es/commands/DescribeTagsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +2 -2
- package/dist-es/commands/PutAccountPreferencesCommand.js +2 -2
- package/dist-es/commands/PutBackupPolicyCommand.js +2 -2
- package/dist-es/commands/PutFileSystemPolicyCommand.js +2 -2
- package/dist-es/commands/PutLifecycleConfigurationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateFileSystemCommand.js +2 -2
- package/dist-es/commands/UpdateFileSystemProtectionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +259 -231
- package/dist-types/EFSClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +123 -136
- package/dist-types/ts3.4/EFSClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +122 -136
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class EFSClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class EFSServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, EFSServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessPointAlreadyExists extends EFSServiceException {
|
|
121
121
|
name = "AccessPointAlreadyExists";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
ErrorCode;
|
|
@@ -134,8 +134,8 @@ let AccessPointAlreadyExists$1 = class AccessPointAlreadyExists extends EFSServi
|
|
|
134
134
|
this.Message = opts.Message;
|
|
135
135
|
this.AccessPointId = opts.AccessPointId;
|
|
136
136
|
}
|
|
137
|
-
}
|
|
138
|
-
|
|
137
|
+
}
|
|
138
|
+
class AccessPointLimitExceeded extends EFSServiceException {
|
|
139
139
|
name = "AccessPointLimitExceeded";
|
|
140
140
|
$fault = "client";
|
|
141
141
|
ErrorCode;
|
|
@@ -150,8 +150,8 @@ let AccessPointLimitExceeded$1 = class AccessPointLimitExceeded extends EFSServi
|
|
|
150
150
|
this.ErrorCode = opts.ErrorCode;
|
|
151
151
|
this.Message = opts.Message;
|
|
152
152
|
}
|
|
153
|
-
}
|
|
154
|
-
|
|
153
|
+
}
|
|
154
|
+
class AccessPointNotFound extends EFSServiceException {
|
|
155
155
|
name = "AccessPointNotFound";
|
|
156
156
|
$fault = "client";
|
|
157
157
|
ErrorCode;
|
|
@@ -166,8 +166,8 @@ let AccessPointNotFound$1 = class AccessPointNotFound extends EFSServiceExceptio
|
|
|
166
166
|
this.ErrorCode = opts.ErrorCode;
|
|
167
167
|
this.Message = opts.Message;
|
|
168
168
|
}
|
|
169
|
-
}
|
|
170
|
-
|
|
169
|
+
}
|
|
170
|
+
class AvailabilityZonesMismatch extends EFSServiceException {
|
|
171
171
|
name = "AvailabilityZonesMismatch";
|
|
172
172
|
$fault = "client";
|
|
173
173
|
ErrorCode;
|
|
@@ -182,8 +182,8 @@ let AvailabilityZonesMismatch$1 = class AvailabilityZonesMismatch extends EFSSer
|
|
|
182
182
|
this.ErrorCode = opts.ErrorCode;
|
|
183
183
|
this.Message = opts.Message;
|
|
184
184
|
}
|
|
185
|
-
}
|
|
186
|
-
|
|
185
|
+
}
|
|
186
|
+
class BadRequest extends EFSServiceException {
|
|
187
187
|
name = "BadRequest";
|
|
188
188
|
$fault = "client";
|
|
189
189
|
ErrorCode;
|
|
@@ -198,8 +198,8 @@ let BadRequest$1 = class BadRequest extends EFSServiceException$1 {
|
|
|
198
198
|
this.ErrorCode = opts.ErrorCode;
|
|
199
199
|
this.Message = opts.Message;
|
|
200
200
|
}
|
|
201
|
-
}
|
|
202
|
-
|
|
201
|
+
}
|
|
202
|
+
class ConflictException extends EFSServiceException {
|
|
203
203
|
name = "ConflictException";
|
|
204
204
|
$fault = "client";
|
|
205
205
|
ErrorCode;
|
|
@@ -214,8 +214,8 @@ let ConflictException$1 = class ConflictException extends EFSServiceException$1
|
|
|
214
214
|
this.ErrorCode = opts.ErrorCode;
|
|
215
215
|
this.Message = opts.Message;
|
|
216
216
|
}
|
|
217
|
-
}
|
|
218
|
-
|
|
217
|
+
}
|
|
218
|
+
class FileSystemNotFound extends EFSServiceException {
|
|
219
219
|
name = "FileSystemNotFound";
|
|
220
220
|
$fault = "client";
|
|
221
221
|
ErrorCode;
|
|
@@ -230,8 +230,8 @@ let FileSystemNotFound$1 = class FileSystemNotFound extends EFSServiceException$
|
|
|
230
230
|
this.ErrorCode = opts.ErrorCode;
|
|
231
231
|
this.Message = opts.Message;
|
|
232
232
|
}
|
|
233
|
-
}
|
|
234
|
-
|
|
233
|
+
}
|
|
234
|
+
class IncorrectFileSystemLifeCycleState extends EFSServiceException {
|
|
235
235
|
name = "IncorrectFileSystemLifeCycleState";
|
|
236
236
|
$fault = "client";
|
|
237
237
|
ErrorCode;
|
|
@@ -246,8 +246,8 @@ let IncorrectFileSystemLifeCycleState$1 = class IncorrectFileSystemLifeCycleStat
|
|
|
246
246
|
this.ErrorCode = opts.ErrorCode;
|
|
247
247
|
this.Message = opts.Message;
|
|
248
248
|
}
|
|
249
|
-
}
|
|
250
|
-
|
|
249
|
+
}
|
|
250
|
+
class InternalServerError extends EFSServiceException {
|
|
251
251
|
name = "InternalServerError";
|
|
252
252
|
$fault = "server";
|
|
253
253
|
ErrorCode;
|
|
@@ -262,8 +262,8 @@ let InternalServerError$1 = class InternalServerError extends EFSServiceExceptio
|
|
|
262
262
|
this.ErrorCode = opts.ErrorCode;
|
|
263
263
|
this.Message = opts.Message;
|
|
264
264
|
}
|
|
265
|
-
}
|
|
266
|
-
|
|
265
|
+
}
|
|
266
|
+
class ThrottlingException extends EFSServiceException {
|
|
267
267
|
name = "ThrottlingException";
|
|
268
268
|
$fault = "client";
|
|
269
269
|
ErrorCode;
|
|
@@ -278,8 +278,8 @@ let ThrottlingException$1 = class ThrottlingException extends EFSServiceExceptio
|
|
|
278
278
|
this.ErrorCode = opts.ErrorCode;
|
|
279
279
|
this.Message = opts.Message;
|
|
280
280
|
}
|
|
281
|
-
}
|
|
282
|
-
|
|
281
|
+
}
|
|
282
|
+
class FileSystemAlreadyExists extends EFSServiceException {
|
|
283
283
|
name = "FileSystemAlreadyExists";
|
|
284
284
|
$fault = "client";
|
|
285
285
|
ErrorCode;
|
|
@@ -296,8 +296,8 @@ let FileSystemAlreadyExists$1 = class FileSystemAlreadyExists extends EFSService
|
|
|
296
296
|
this.Message = opts.Message;
|
|
297
297
|
this.FileSystemId = opts.FileSystemId;
|
|
298
298
|
}
|
|
299
|
-
}
|
|
300
|
-
|
|
299
|
+
}
|
|
300
|
+
class FileSystemLimitExceeded extends EFSServiceException {
|
|
301
301
|
name = "FileSystemLimitExceeded";
|
|
302
302
|
$fault = "client";
|
|
303
303
|
ErrorCode;
|
|
@@ -312,8 +312,8 @@ let FileSystemLimitExceeded$1 = class FileSystemLimitExceeded extends EFSService
|
|
|
312
312
|
this.ErrorCode = opts.ErrorCode;
|
|
313
313
|
this.Message = opts.Message;
|
|
314
314
|
}
|
|
315
|
-
}
|
|
316
|
-
|
|
315
|
+
}
|
|
316
|
+
class InsufficientThroughputCapacity extends EFSServiceException {
|
|
317
317
|
name = "InsufficientThroughputCapacity";
|
|
318
318
|
$fault = "server";
|
|
319
319
|
ErrorCode;
|
|
@@ -328,8 +328,8 @@ let InsufficientThroughputCapacity$1 = class InsufficientThroughputCapacity exte
|
|
|
328
328
|
this.ErrorCode = opts.ErrorCode;
|
|
329
329
|
this.Message = opts.Message;
|
|
330
330
|
}
|
|
331
|
-
}
|
|
332
|
-
|
|
331
|
+
}
|
|
332
|
+
class ThroughputLimitExceeded extends EFSServiceException {
|
|
333
333
|
name = "ThroughputLimitExceeded";
|
|
334
334
|
$fault = "client";
|
|
335
335
|
ErrorCode;
|
|
@@ -344,8 +344,8 @@ let ThroughputLimitExceeded$1 = class ThroughputLimitExceeded extends EFSService
|
|
|
344
344
|
this.ErrorCode = opts.ErrorCode;
|
|
345
345
|
this.Message = opts.Message;
|
|
346
346
|
}
|
|
347
|
-
}
|
|
348
|
-
|
|
347
|
+
}
|
|
348
|
+
class UnsupportedAvailabilityZone extends EFSServiceException {
|
|
349
349
|
name = "UnsupportedAvailabilityZone";
|
|
350
350
|
$fault = "client";
|
|
351
351
|
ErrorCode;
|
|
@@ -360,8 +360,8 @@ let UnsupportedAvailabilityZone$1 = class UnsupportedAvailabilityZone extends EF
|
|
|
360
360
|
this.ErrorCode = opts.ErrorCode;
|
|
361
361
|
this.Message = opts.Message;
|
|
362
362
|
}
|
|
363
|
-
}
|
|
364
|
-
|
|
363
|
+
}
|
|
364
|
+
class IpAddressInUse extends EFSServiceException {
|
|
365
365
|
name = "IpAddressInUse";
|
|
366
366
|
$fault = "client";
|
|
367
367
|
ErrorCode;
|
|
@@ -376,8 +376,8 @@ let IpAddressInUse$1 = class IpAddressInUse extends EFSServiceException$1 {
|
|
|
376
376
|
this.ErrorCode = opts.ErrorCode;
|
|
377
377
|
this.Message = opts.Message;
|
|
378
378
|
}
|
|
379
|
-
}
|
|
380
|
-
|
|
379
|
+
}
|
|
380
|
+
class MountTargetConflict extends EFSServiceException {
|
|
381
381
|
name = "MountTargetConflict";
|
|
382
382
|
$fault = "client";
|
|
383
383
|
ErrorCode;
|
|
@@ -392,8 +392,8 @@ let MountTargetConflict$1 = class MountTargetConflict extends EFSServiceExceptio
|
|
|
392
392
|
this.ErrorCode = opts.ErrorCode;
|
|
393
393
|
this.Message = opts.Message;
|
|
394
394
|
}
|
|
395
|
-
}
|
|
396
|
-
|
|
395
|
+
}
|
|
396
|
+
class NetworkInterfaceLimitExceeded extends EFSServiceException {
|
|
397
397
|
name = "NetworkInterfaceLimitExceeded";
|
|
398
398
|
$fault = "client";
|
|
399
399
|
ErrorCode;
|
|
@@ -408,8 +408,8 @@ let NetworkInterfaceLimitExceeded$1 = class NetworkInterfaceLimitExceeded extend
|
|
|
408
408
|
this.ErrorCode = opts.ErrorCode;
|
|
409
409
|
this.Message = opts.Message;
|
|
410
410
|
}
|
|
411
|
-
}
|
|
412
|
-
|
|
411
|
+
}
|
|
412
|
+
class NoFreeAddressesInSubnet extends EFSServiceException {
|
|
413
413
|
name = "NoFreeAddressesInSubnet";
|
|
414
414
|
$fault = "client";
|
|
415
415
|
ErrorCode;
|
|
@@ -424,8 +424,8 @@ let NoFreeAddressesInSubnet$1 = class NoFreeAddressesInSubnet extends EFSService
|
|
|
424
424
|
this.ErrorCode = opts.ErrorCode;
|
|
425
425
|
this.Message = opts.Message;
|
|
426
426
|
}
|
|
427
|
-
}
|
|
428
|
-
|
|
427
|
+
}
|
|
428
|
+
class SecurityGroupLimitExceeded extends EFSServiceException {
|
|
429
429
|
name = "SecurityGroupLimitExceeded";
|
|
430
430
|
$fault = "client";
|
|
431
431
|
ErrorCode;
|
|
@@ -440,8 +440,8 @@ let SecurityGroupLimitExceeded$1 = class SecurityGroupLimitExceeded extends EFSS
|
|
|
440
440
|
this.ErrorCode = opts.ErrorCode;
|
|
441
441
|
this.Message = opts.Message;
|
|
442
442
|
}
|
|
443
|
-
}
|
|
444
|
-
|
|
443
|
+
}
|
|
444
|
+
class SecurityGroupNotFound extends EFSServiceException {
|
|
445
445
|
name = "SecurityGroupNotFound";
|
|
446
446
|
$fault = "client";
|
|
447
447
|
ErrorCode;
|
|
@@ -456,8 +456,8 @@ let SecurityGroupNotFound$1 = class SecurityGroupNotFound extends EFSServiceExce
|
|
|
456
456
|
this.ErrorCode = opts.ErrorCode;
|
|
457
457
|
this.Message = opts.Message;
|
|
458
458
|
}
|
|
459
|
-
}
|
|
460
|
-
|
|
459
|
+
}
|
|
460
|
+
class SubnetNotFound extends EFSServiceException {
|
|
461
461
|
name = "SubnetNotFound";
|
|
462
462
|
$fault = "client";
|
|
463
463
|
ErrorCode;
|
|
@@ -472,8 +472,8 @@ let SubnetNotFound$1 = class SubnetNotFound extends EFSServiceException$1 {
|
|
|
472
472
|
this.ErrorCode = opts.ErrorCode;
|
|
473
473
|
this.Message = opts.Message;
|
|
474
474
|
}
|
|
475
|
-
}
|
|
476
|
-
|
|
475
|
+
}
|
|
476
|
+
class ReplicationNotFound extends EFSServiceException {
|
|
477
477
|
name = "ReplicationNotFound";
|
|
478
478
|
$fault = "client";
|
|
479
479
|
ErrorCode;
|
|
@@ -488,8 +488,8 @@ let ReplicationNotFound$1 = class ReplicationNotFound extends EFSServiceExceptio
|
|
|
488
488
|
this.ErrorCode = opts.ErrorCode;
|
|
489
489
|
this.Message = opts.Message;
|
|
490
490
|
}
|
|
491
|
-
}
|
|
492
|
-
|
|
491
|
+
}
|
|
492
|
+
class ValidationException extends EFSServiceException {
|
|
493
493
|
name = "ValidationException";
|
|
494
494
|
$fault = "client";
|
|
495
495
|
ErrorCode;
|
|
@@ -504,8 +504,8 @@ let ValidationException$1 = class ValidationException extends EFSServiceExceptio
|
|
|
504
504
|
this.ErrorCode = opts.ErrorCode;
|
|
505
505
|
this.Message = opts.Message;
|
|
506
506
|
}
|
|
507
|
-
}
|
|
508
|
-
|
|
507
|
+
}
|
|
508
|
+
class FileSystemInUse extends EFSServiceException {
|
|
509
509
|
name = "FileSystemInUse";
|
|
510
510
|
$fault = "client";
|
|
511
511
|
ErrorCode;
|
|
@@ -520,8 +520,8 @@ let FileSystemInUse$1 = class FileSystemInUse extends EFSServiceException$1 {
|
|
|
520
520
|
this.ErrorCode = opts.ErrorCode;
|
|
521
521
|
this.Message = opts.Message;
|
|
522
522
|
}
|
|
523
|
-
}
|
|
524
|
-
|
|
523
|
+
}
|
|
524
|
+
class DependencyTimeout extends EFSServiceException {
|
|
525
525
|
name = "DependencyTimeout";
|
|
526
526
|
$fault = "server";
|
|
527
527
|
ErrorCode;
|
|
@@ -536,8 +536,8 @@ let DependencyTimeout$1 = class DependencyTimeout extends EFSServiceException$1
|
|
|
536
536
|
this.ErrorCode = opts.ErrorCode;
|
|
537
537
|
this.Message = opts.Message;
|
|
538
538
|
}
|
|
539
|
-
}
|
|
540
|
-
|
|
539
|
+
}
|
|
540
|
+
class MountTargetNotFound extends EFSServiceException {
|
|
541
541
|
name = "MountTargetNotFound";
|
|
542
542
|
$fault = "client";
|
|
543
543
|
ErrorCode;
|
|
@@ -552,8 +552,8 @@ let MountTargetNotFound$1 = class MountTargetNotFound extends EFSServiceExceptio
|
|
|
552
552
|
this.ErrorCode = opts.ErrorCode;
|
|
553
553
|
this.Message = opts.Message;
|
|
554
554
|
}
|
|
555
|
-
}
|
|
556
|
-
|
|
555
|
+
}
|
|
556
|
+
class PolicyNotFound extends EFSServiceException {
|
|
557
557
|
name = "PolicyNotFound";
|
|
558
558
|
$fault = "client";
|
|
559
559
|
ErrorCode;
|
|
@@ -568,8 +568,8 @@ let PolicyNotFound$1 = class PolicyNotFound extends EFSServiceException$1 {
|
|
|
568
568
|
this.ErrorCode = opts.ErrorCode;
|
|
569
569
|
this.Message = opts.Message;
|
|
570
570
|
}
|
|
571
|
-
}
|
|
572
|
-
|
|
571
|
+
}
|
|
572
|
+
class IncorrectMountTargetState extends EFSServiceException {
|
|
573
573
|
name = "IncorrectMountTargetState";
|
|
574
574
|
$fault = "client";
|
|
575
575
|
ErrorCode;
|
|
@@ -584,8 +584,8 @@ let IncorrectMountTargetState$1 = class IncorrectMountTargetState extends EFSSer
|
|
|
584
584
|
this.ErrorCode = opts.ErrorCode;
|
|
585
585
|
this.Message = opts.Message;
|
|
586
586
|
}
|
|
587
|
-
}
|
|
588
|
-
|
|
587
|
+
}
|
|
588
|
+
class InvalidPolicyException extends EFSServiceException {
|
|
589
589
|
name = "InvalidPolicyException";
|
|
590
590
|
$fault = "client";
|
|
591
591
|
ErrorCode;
|
|
@@ -600,8 +600,8 @@ let InvalidPolicyException$1 = class InvalidPolicyException extends EFSServiceEx
|
|
|
600
600
|
this.ErrorCode = opts.ErrorCode;
|
|
601
601
|
this.Message = opts.Message;
|
|
602
602
|
}
|
|
603
|
-
}
|
|
604
|
-
|
|
603
|
+
}
|
|
604
|
+
class TooManyRequests extends EFSServiceException {
|
|
605
605
|
name = "TooManyRequests";
|
|
606
606
|
$fault = "client";
|
|
607
607
|
ErrorCode;
|
|
@@ -616,8 +616,8 @@ let TooManyRequests$1 = class TooManyRequests extends EFSServiceException$1 {
|
|
|
616
616
|
this.ErrorCode = opts.ErrorCode;
|
|
617
617
|
this.Message = opts.Message;
|
|
618
618
|
}
|
|
619
|
-
}
|
|
620
|
-
|
|
619
|
+
}
|
|
620
|
+
class ReplicationAlreadyExists extends EFSServiceException {
|
|
621
621
|
name = "ReplicationAlreadyExists";
|
|
622
622
|
$fault = "client";
|
|
623
623
|
ErrorCode;
|
|
@@ -632,7 +632,7 @@ let ReplicationAlreadyExists$1 = class ReplicationAlreadyExists extends EFSServi
|
|
|
632
632
|
this.ErrorCode = opts.ErrorCode;
|
|
633
633
|
this.Message = opts.Message;
|
|
634
634
|
}
|
|
635
|
-
}
|
|
635
|
+
}
|
|
636
636
|
|
|
637
637
|
const _AP = "AccessPoints";
|
|
638
638
|
const _APA = "AccessPointArn";
|
|
@@ -847,7 +847,7 @@ const _s = "server";
|
|
|
847
847
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.efs";
|
|
848
848
|
const _tK = "tagKeys";
|
|
849
849
|
const n0 = "com.amazonaws.efs";
|
|
850
|
-
var AccessPointAlreadyExists = [
|
|
850
|
+
var AccessPointAlreadyExists$ = [
|
|
851
851
|
-3,
|
|
852
852
|
n0,
|
|
853
853
|
_APAE,
|
|
@@ -855,36 +855,36 @@ var AccessPointAlreadyExists = [
|
|
|
855
855
|
[_EC, _M, _API],
|
|
856
856
|
[0, 0, 0],
|
|
857
857
|
];
|
|
858
|
-
schema.TypeRegistry.for(n0).registerError(AccessPointAlreadyExists
|
|
859
|
-
var AccessPointDescription = [
|
|
858
|
+
schema.TypeRegistry.for(n0).registerError(AccessPointAlreadyExists$, AccessPointAlreadyExists);
|
|
859
|
+
var AccessPointDescription$ = [
|
|
860
860
|
3,
|
|
861
861
|
n0,
|
|
862
862
|
_APD,
|
|
863
863
|
0,
|
|
864
864
|
[_CT, _N, _T, _API, _APA, _FSI, _PU, _RD, _OI, _LCS],
|
|
865
|
-
[0, 0, () => Tags, 0, 0, 0, () => PosixUser
|
|
866
|
-
];
|
|
867
|
-
var AccessPointLimitExceeded = [-3, n0, _APLE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
868
|
-
schema.TypeRegistry.for(n0).registerError(AccessPointLimitExceeded
|
|
869
|
-
var AccessPointNotFound = [-3, n0, _APNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
870
|
-
schema.TypeRegistry.for(n0).registerError(AccessPointNotFound
|
|
871
|
-
var AvailabilityZonesMismatch = [-3, n0, _AZM, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
872
|
-
schema.TypeRegistry.for(n0).registerError(AvailabilityZonesMismatch
|
|
873
|
-
var BackupPolicy = [3, n0, _BP, 0, [_S], [0]];
|
|
874
|
-
var BackupPolicyDescription = [3, n0, _BPD, 0, [_BP], [() => BackupPolicy]];
|
|
875
|
-
var BadRequest = [-3, n0, _BR, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
876
|
-
schema.TypeRegistry.for(n0).registerError(BadRequest
|
|
877
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
878
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
879
|
-
var CreateAccessPointRequest = [
|
|
865
|
+
[0, 0, () => Tags, 0, 0, 0, () => PosixUser$, () => RootDirectory$, 0, 0],
|
|
866
|
+
];
|
|
867
|
+
var AccessPointLimitExceeded$ = [-3, n0, _APLE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
868
|
+
schema.TypeRegistry.for(n0).registerError(AccessPointLimitExceeded$, AccessPointLimitExceeded);
|
|
869
|
+
var AccessPointNotFound$ = [-3, n0, _APNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
870
|
+
schema.TypeRegistry.for(n0).registerError(AccessPointNotFound$, AccessPointNotFound);
|
|
871
|
+
var AvailabilityZonesMismatch$ = [-3, n0, _AZM, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
872
|
+
schema.TypeRegistry.for(n0).registerError(AvailabilityZonesMismatch$, AvailabilityZonesMismatch);
|
|
873
|
+
var BackupPolicy$ = [3, n0, _BP, 0, [_S], [0]];
|
|
874
|
+
var BackupPolicyDescription$ = [3, n0, _BPD, 0, [_BP], [() => BackupPolicy$]];
|
|
875
|
+
var BadRequest$ = [-3, n0, _BR, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
876
|
+
schema.TypeRegistry.for(n0).registerError(BadRequest$, BadRequest);
|
|
877
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
878
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
879
|
+
var CreateAccessPointRequest$ = [
|
|
880
880
|
3,
|
|
881
881
|
n0,
|
|
882
882
|
_CAPR,
|
|
883
883
|
0,
|
|
884
884
|
[_CT, _T, _FSI, _PU, _RD],
|
|
885
|
-
[[0, 4], () => Tags, 0, () => PosixUser
|
|
885
|
+
[[0, 4], () => Tags, 0, () => PosixUser$, () => RootDirectory$],
|
|
886
886
|
];
|
|
887
|
-
var CreateFileSystemRequest = [
|
|
887
|
+
var CreateFileSystemRequest$ = [
|
|
888
888
|
3,
|
|
889
889
|
n0,
|
|
890
890
|
_CFSR,
|
|
@@ -892,7 +892,7 @@ var CreateFileSystemRequest = [
|
|
|
892
892
|
[_CTr, _PM, _E, _KKI, _TM, _PTIM, _AZN, _B, _T],
|
|
893
893
|
[[0, 4], 0, 2, 0, 0, 1, 0, 2, () => Tags],
|
|
894
894
|
];
|
|
895
|
-
var CreateMountTargetRequest = [
|
|
895
|
+
var CreateMountTargetRequest$ = [
|
|
896
896
|
3,
|
|
897
897
|
n0,
|
|
898
898
|
_CMTR,
|
|
@@ -900,7 +900,7 @@ var CreateMountTargetRequest = [
|
|
|
900
900
|
[_FSI, _SI, _IA, _IAp, _IAT, _SG],
|
|
901
901
|
[0, 0, 0, 0, 0, 64 | 0],
|
|
902
902
|
];
|
|
903
|
-
var CreateReplicationConfigurationRequest = [
|
|
903
|
+
var CreateReplicationConfigurationRequest$ = [
|
|
904
904
|
3,
|
|
905
905
|
n0,
|
|
906
906
|
_CRCR,
|
|
@@ -908,13 +908,13 @@ var CreateReplicationConfigurationRequest = [
|
|
|
908
908
|
[_SFSI, _D],
|
|
909
909
|
[[0, 1], () => DestinationsToCreate],
|
|
910
910
|
];
|
|
911
|
-
var CreateTagsRequest = [3, n0, _CTR, 0, [_FSI, _T], [[0, 1], () => Tags]];
|
|
912
|
-
var CreationInfo = [3, n0, _CI, 0, [_OU, _OG, _P], [1, 1, 0]];
|
|
913
|
-
var DeleteAccessPointRequest = [3, n0, _DAPR, 0, [_API], [[0, 1]]];
|
|
914
|
-
var DeleteFileSystemPolicyRequest = [3, n0, _DFSPR, 0, [_FSI], [[0, 1]]];
|
|
915
|
-
var DeleteFileSystemRequest = [3, n0, _DFSR, 0, [_FSI], [[0, 1]]];
|
|
916
|
-
var DeleteMountTargetRequest = [3, n0, _DMTR, 0, [_MTI], [[0, 1]]];
|
|
917
|
-
var DeleteReplicationConfigurationRequest = [
|
|
911
|
+
var CreateTagsRequest$ = [3, n0, _CTR, 0, [_FSI, _T], [[0, 1], () => Tags]];
|
|
912
|
+
var CreationInfo$ = [3, n0, _CI, 0, [_OU, _OG, _P], [1, 1, 0]];
|
|
913
|
+
var DeleteAccessPointRequest$ = [3, n0, _DAPR, 0, [_API], [[0, 1]]];
|
|
914
|
+
var DeleteFileSystemPolicyRequest$ = [3, n0, _DFSPR, 0, [_FSI], [[0, 1]]];
|
|
915
|
+
var DeleteFileSystemRequest$ = [3, n0, _DFSR, 0, [_FSI], [[0, 1]]];
|
|
916
|
+
var DeleteMountTargetRequest$ = [3, n0, _DMTR, 0, [_MTI], [[0, 1]]];
|
|
917
|
+
var DeleteReplicationConfigurationRequest$ = [
|
|
918
918
|
3,
|
|
919
919
|
n0,
|
|
920
920
|
_DRCR,
|
|
@@ -925,10 +925,10 @@ var DeleteReplicationConfigurationRequest = [
|
|
|
925
925
|
[0, { [_hQ]: _dM }],
|
|
926
926
|
],
|
|
927
927
|
];
|
|
928
|
-
var DeleteTagsRequest = [3, n0, _DTR, 0, [_FSI, _TK], [[0, 1], 64 | 0]];
|
|
929
|
-
var DependencyTimeout = [-3, n0, _DT, { [_e]: _s, [_hE]: 504 }, [_EC, _M], [0, 0]];
|
|
930
|
-
schema.TypeRegistry.for(n0).registerError(DependencyTimeout
|
|
931
|
-
var DescribeAccessPointsRequest = [
|
|
928
|
+
var DeleteTagsRequest$ = [3, n0, _DTR, 0, [_FSI, _TK], [[0, 1], 64 | 0]];
|
|
929
|
+
var DependencyTimeout$ = [-3, n0, _DT, { [_e]: _s, [_hE]: 504 }, [_EC, _M], [0, 0]];
|
|
930
|
+
schema.TypeRegistry.for(n0).registerError(DependencyTimeout$, DependencyTimeout);
|
|
931
|
+
var DescribeAccessPointsRequest$ = [
|
|
932
932
|
3,
|
|
933
933
|
n0,
|
|
934
934
|
_DAPRe,
|
|
@@ -941,7 +941,7 @@ var DescribeAccessPointsRequest = [
|
|
|
941
941
|
[0, { [_hQ]: _FSI }],
|
|
942
942
|
],
|
|
943
943
|
];
|
|
944
|
-
var DescribeAccessPointsResponse = [
|
|
944
|
+
var DescribeAccessPointsResponse$ = [
|
|
945
945
|
3,
|
|
946
946
|
n0,
|
|
947
947
|
_DAPRes,
|
|
@@ -949,18 +949,18 @@ var DescribeAccessPointsResponse = [
|
|
|
949
949
|
[_AP, _NT],
|
|
950
950
|
[() => AccessPointDescriptions, 0],
|
|
951
951
|
];
|
|
952
|
-
var DescribeAccountPreferencesRequest = [3, n0, _DAPResc, 0, [_NT, _MR], [0, 1]];
|
|
953
|
-
var DescribeAccountPreferencesResponse = [
|
|
952
|
+
var DescribeAccountPreferencesRequest$ = [3, n0, _DAPResc, 0, [_NT, _MR], [0, 1]];
|
|
953
|
+
var DescribeAccountPreferencesResponse$ = [
|
|
954
954
|
3,
|
|
955
955
|
n0,
|
|
956
956
|
_DAPRescr,
|
|
957
957
|
0,
|
|
958
958
|
[_RIP, _NT],
|
|
959
|
-
[() => ResourceIdPreference
|
|
959
|
+
[() => ResourceIdPreference$, 0],
|
|
960
960
|
];
|
|
961
|
-
var DescribeBackupPolicyRequest = [3, n0, _DBPR, 0, [_FSI], [[0, 1]]];
|
|
962
|
-
var DescribeFileSystemPolicyRequest = [3, n0, _DFSPRe, 0, [_FSI], [[0, 1]]];
|
|
963
|
-
var DescribeFileSystemsRequest = [
|
|
961
|
+
var DescribeBackupPolicyRequest$ = [3, n0, _DBPR, 0, [_FSI], [[0, 1]]];
|
|
962
|
+
var DescribeFileSystemPolicyRequest$ = [3, n0, _DFSPRe, 0, [_FSI], [[0, 1]]];
|
|
963
|
+
var DescribeFileSystemsRequest$ = [
|
|
964
964
|
3,
|
|
965
965
|
n0,
|
|
966
966
|
_DFSRe,
|
|
@@ -973,7 +973,7 @@ var DescribeFileSystemsRequest = [
|
|
|
973
973
|
[0, { [_hQ]: _FSI }],
|
|
974
974
|
],
|
|
975
975
|
];
|
|
976
|
-
var DescribeFileSystemsResponse = [
|
|
976
|
+
var DescribeFileSystemsResponse$ = [
|
|
977
977
|
3,
|
|
978
978
|
n0,
|
|
979
979
|
_DFSRes,
|
|
@@ -981,10 +981,10 @@ var DescribeFileSystemsResponse = [
|
|
|
981
981
|
[_Ma, _FS, _NM],
|
|
982
982
|
[0, () => FileSystemDescriptions, 0],
|
|
983
983
|
];
|
|
984
|
-
var DescribeLifecycleConfigurationRequest = [3, n0, _DLCR, 0, [_FSI], [[0, 1]]];
|
|
985
|
-
var DescribeMountTargetSecurityGroupsRequest = [3, n0, _DMTSGR, 0, [_MTI], [[0, 1]]];
|
|
986
|
-
var DescribeMountTargetSecurityGroupsResponse = [3, n0, _DMTSGRe, 0, [_SG], [64 | 0]];
|
|
987
|
-
var DescribeMountTargetsRequest = [
|
|
984
|
+
var DescribeLifecycleConfigurationRequest$ = [3, n0, _DLCR, 0, [_FSI], [[0, 1]]];
|
|
985
|
+
var DescribeMountTargetSecurityGroupsRequest$ = [3, n0, _DMTSGR, 0, [_MTI], [[0, 1]]];
|
|
986
|
+
var DescribeMountTargetSecurityGroupsResponse$ = [3, n0, _DMTSGRe, 0, [_SG], [64 | 0]];
|
|
987
|
+
var DescribeMountTargetsRequest$ = [
|
|
988
988
|
3,
|
|
989
989
|
n0,
|
|
990
990
|
_DMTRe,
|
|
@@ -998,7 +998,7 @@ var DescribeMountTargetsRequest = [
|
|
|
998
998
|
[0, { [_hQ]: _API }],
|
|
999
999
|
],
|
|
1000
1000
|
];
|
|
1001
|
-
var DescribeMountTargetsResponse = [
|
|
1001
|
+
var DescribeMountTargetsResponse$ = [
|
|
1002
1002
|
3,
|
|
1003
1003
|
n0,
|
|
1004
1004
|
_DMTRes,
|
|
@@ -1006,7 +1006,7 @@ var DescribeMountTargetsResponse = [
|
|
|
1006
1006
|
[_Ma, _MT, _NM],
|
|
1007
1007
|
[0, () => MountTargetDescriptions, 0],
|
|
1008
1008
|
];
|
|
1009
|
-
var DescribeReplicationConfigurationsRequest = [
|
|
1009
|
+
var DescribeReplicationConfigurationsRequest$ = [
|
|
1010
1010
|
3,
|
|
1011
1011
|
n0,
|
|
1012
1012
|
_DRCRe,
|
|
@@ -1018,7 +1018,7 @@ var DescribeReplicationConfigurationsRequest = [
|
|
|
1018
1018
|
[1, { [_hQ]: _MR }],
|
|
1019
1019
|
],
|
|
1020
1020
|
];
|
|
1021
|
-
var DescribeReplicationConfigurationsResponse = [
|
|
1021
|
+
var DescribeReplicationConfigurationsResponse$ = [
|
|
1022
1022
|
3,
|
|
1023
1023
|
n0,
|
|
1024
1024
|
_DRCRes,
|
|
@@ -1026,7 +1026,7 @@ var DescribeReplicationConfigurationsResponse = [
|
|
|
1026
1026
|
[_R, _NT],
|
|
1027
1027
|
[() => ReplicationConfigurationDescriptions, 0],
|
|
1028
1028
|
];
|
|
1029
|
-
var DescribeTagsRequest = [
|
|
1029
|
+
var DescribeTagsRequest$ = [
|
|
1030
1030
|
3,
|
|
1031
1031
|
n0,
|
|
1032
1032
|
_DTRe,
|
|
@@ -1038,8 +1038,8 @@ var DescribeTagsRequest = [
|
|
|
1038
1038
|
[0, 1],
|
|
1039
1039
|
],
|
|
1040
1040
|
];
|
|
1041
|
-
var DescribeTagsResponse = [3, n0, _DTRes, 0, [_Ma, _T, _NM], [0, () => Tags, 0]];
|
|
1042
|
-
var Destination = [
|
|
1041
|
+
var DescribeTagsResponse$ = [3, n0, _DTRes, 0, [_Ma, _T, _NM], [0, () => Tags, 0]];
|
|
1042
|
+
var Destination$ = [
|
|
1043
1043
|
3,
|
|
1044
1044
|
n0,
|
|
1045
1045
|
_De,
|
|
@@ -1047,8 +1047,15 @@ var Destination = [
|
|
|
1047
1047
|
[_S, _FSI, _Re, _LRT, _OI, _SM, _RA],
|
|
1048
1048
|
[0, 0, 0, 4, 0, 0, 0],
|
|
1049
1049
|
];
|
|
1050
|
-
var DestinationToCreate = [
|
|
1051
|
-
|
|
1050
|
+
var DestinationToCreate$ = [
|
|
1051
|
+
3,
|
|
1052
|
+
n0,
|
|
1053
|
+
_DTC,
|
|
1054
|
+
0,
|
|
1055
|
+
[_Re, _AZN, _KKI, _FSI, _RA],
|
|
1056
|
+
[0, 0, 0, 0, 0],
|
|
1057
|
+
];
|
|
1058
|
+
var FileSystemAlreadyExists$ = [
|
|
1052
1059
|
-3,
|
|
1053
1060
|
n0,
|
|
1054
1061
|
_FSAE,
|
|
@@ -1056,8 +1063,8 @@ var FileSystemAlreadyExists = [
|
|
|
1056
1063
|
[_EC, _M, _FSI],
|
|
1057
1064
|
[0, 0, 0],
|
|
1058
1065
|
];
|
|
1059
|
-
schema.TypeRegistry.for(n0).registerError(FileSystemAlreadyExists
|
|
1060
|
-
var FileSystemDescription = [
|
|
1066
|
+
schema.TypeRegistry.for(n0).registerError(FileSystemAlreadyExists$, FileSystemAlreadyExists);
|
|
1067
|
+
var FileSystemDescription$ = [
|
|
1061
1068
|
3,
|
|
1062
1069
|
n0,
|
|
1063
1070
|
_FSD,
|
|
@@ -1072,7 +1079,7 @@ var FileSystemDescription = [
|
|
|
1072
1079
|
0,
|
|
1073
1080
|
0,
|
|
1074
1081
|
1,
|
|
1075
|
-
() => FileSystemSize
|
|
1082
|
+
() => FileSystemSize$,
|
|
1076
1083
|
0,
|
|
1077
1084
|
2,
|
|
1078
1085
|
0,
|
|
@@ -1081,19 +1088,19 @@ var FileSystemDescription = [
|
|
|
1081
1088
|
0,
|
|
1082
1089
|
0,
|
|
1083
1090
|
() => Tags,
|
|
1084
|
-
() => FileSystemProtectionDescription
|
|
1091
|
+
() => FileSystemProtectionDescription$,
|
|
1085
1092
|
],
|
|
1086
1093
|
];
|
|
1087
|
-
var FileSystemInUse = [-3, n0, _FSIU, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1088
|
-
schema.TypeRegistry.for(n0).registerError(FileSystemInUse
|
|
1089
|
-
var FileSystemLimitExceeded = [-3, n0, _FSLE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
1090
|
-
schema.TypeRegistry.for(n0).registerError(FileSystemLimitExceeded
|
|
1091
|
-
var FileSystemNotFound = [-3, n0, _FSNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1092
|
-
schema.TypeRegistry.for(n0).registerError(FileSystemNotFound
|
|
1093
|
-
var FileSystemPolicyDescription = [3, n0, _FSPD, 0, [_FSI, _Po], [0, 0]];
|
|
1094
|
-
var FileSystemProtectionDescription = [3, n0, _FSPDi, 0, [_ROP], [0]];
|
|
1095
|
-
var FileSystemSize = [3, n0, _FSS, 0, [_V, _Ti, _VIIA, _VIS, _VIA], [1, 4, 1, 1, 1]];
|
|
1096
|
-
var IncorrectFileSystemLifeCycleState = [
|
|
1094
|
+
var FileSystemInUse$ = [-3, n0, _FSIU, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1095
|
+
schema.TypeRegistry.for(n0).registerError(FileSystemInUse$, FileSystemInUse);
|
|
1096
|
+
var FileSystemLimitExceeded$ = [-3, n0, _FSLE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
1097
|
+
schema.TypeRegistry.for(n0).registerError(FileSystemLimitExceeded$, FileSystemLimitExceeded);
|
|
1098
|
+
var FileSystemNotFound$ = [-3, n0, _FSNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1099
|
+
schema.TypeRegistry.for(n0).registerError(FileSystemNotFound$, FileSystemNotFound);
|
|
1100
|
+
var FileSystemPolicyDescription$ = [3, n0, _FSPD, 0, [_FSI, _Po], [0, 0]];
|
|
1101
|
+
var FileSystemProtectionDescription$ = [3, n0, _FSPDi, 0, [_ROP], [0]];
|
|
1102
|
+
var FileSystemSize$ = [3, n0, _FSS, 0, [_V, _Ti, _VIIA, _VIS, _VIA], [1, 4, 1, 1, 1]];
|
|
1103
|
+
var IncorrectFileSystemLifeCycleState$ = [
|
|
1097
1104
|
-3,
|
|
1098
1105
|
n0,
|
|
1099
1106
|
_IFSLCS,
|
|
@@ -1101,10 +1108,10 @@ var IncorrectFileSystemLifeCycleState = [
|
|
|
1101
1108
|
[_EC, _M],
|
|
1102
1109
|
[0, 0],
|
|
1103
1110
|
];
|
|
1104
|
-
schema.TypeRegistry.for(n0).registerError(IncorrectFileSystemLifeCycleState
|
|
1105
|
-
var IncorrectMountTargetState = [-3, n0, _IMTS, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1106
|
-
schema.TypeRegistry.for(n0).registerError(IncorrectMountTargetState
|
|
1107
|
-
var InsufficientThroughputCapacity = [
|
|
1111
|
+
schema.TypeRegistry.for(n0).registerError(IncorrectFileSystemLifeCycleState$, IncorrectFileSystemLifeCycleState);
|
|
1112
|
+
var IncorrectMountTargetState$ = [-3, n0, _IMTS, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1113
|
+
schema.TypeRegistry.for(n0).registerError(IncorrectMountTargetState$, IncorrectMountTargetState);
|
|
1114
|
+
var InsufficientThroughputCapacity$ = [
|
|
1108
1115
|
-3,
|
|
1109
1116
|
n0,
|
|
1110
1117
|
_ITC,
|
|
@@ -1112,14 +1119,14 @@ var InsufficientThroughputCapacity = [
|
|
|
1112
1119
|
[_EC, _M],
|
|
1113
1120
|
[0, 0],
|
|
1114
1121
|
];
|
|
1115
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientThroughputCapacity
|
|
1116
|
-
var InternalServerError = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_EC, _M], [0, 0]];
|
|
1117
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerError
|
|
1118
|
-
var InvalidPolicyException = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1119
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPolicyException
|
|
1120
|
-
var IpAddressInUse = [-3, n0, _IAIU, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1121
|
-
schema.TypeRegistry.for(n0).registerError(IpAddressInUse
|
|
1122
|
-
var LifecycleConfigurationDescription = [
|
|
1122
|
+
schema.TypeRegistry.for(n0).registerError(InsufficientThroughputCapacity$, InsufficientThroughputCapacity);
|
|
1123
|
+
var InternalServerError$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_EC, _M], [0, 0]];
|
|
1124
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
|
|
1125
|
+
var InvalidPolicyException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1126
|
+
schema.TypeRegistry.for(n0).registerError(InvalidPolicyException$, InvalidPolicyException);
|
|
1127
|
+
var IpAddressInUse$ = [-3, n0, _IAIU, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1128
|
+
schema.TypeRegistry.for(n0).registerError(IpAddressInUse$, IpAddressInUse);
|
|
1129
|
+
var LifecycleConfigurationDescription$ = [
|
|
1123
1130
|
3,
|
|
1124
1131
|
n0,
|
|
1125
1132
|
_LCD,
|
|
@@ -1127,8 +1134,8 @@ var LifecycleConfigurationDescription = [
|
|
|
1127
1134
|
[_LP],
|
|
1128
1135
|
[() => LifecyclePolicies],
|
|
1129
1136
|
];
|
|
1130
|
-
var LifecyclePolicy = [3, n0, _LPi, 0, [_TTIA, _TTPSC, _TTA], [0, 0, 0]];
|
|
1131
|
-
var ListTagsForResourceRequest = [
|
|
1137
|
+
var LifecyclePolicy$ = [3, n0, _LPi, 0, [_TTIA, _TTPSC, _TTA], [0, 0, 0]];
|
|
1138
|
+
var ListTagsForResourceRequest$ = [
|
|
1132
1139
|
3,
|
|
1133
1140
|
n0,
|
|
1134
1141
|
_LTFRR,
|
|
@@ -1140,8 +1147,8 @@ var ListTagsForResourceRequest = [
|
|
|
1140
1147
|
[0, { [_hQ]: _NT }],
|
|
1141
1148
|
],
|
|
1142
1149
|
];
|
|
1143
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T, _NT], [() => Tags, 0]];
|
|
1144
|
-
var ModifyMountTargetSecurityGroupsRequest = [
|
|
1150
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T, _NT], [() => Tags, 0]];
|
|
1151
|
+
var ModifyMountTargetSecurityGroupsRequest$ = [
|
|
1145
1152
|
3,
|
|
1146
1153
|
n0,
|
|
1147
1154
|
_MMTSGR,
|
|
@@ -1149,9 +1156,9 @@ var ModifyMountTargetSecurityGroupsRequest = [
|
|
|
1149
1156
|
[_MTI, _SG],
|
|
1150
1157
|
[[0, 1], 64 | 0],
|
|
1151
1158
|
];
|
|
1152
|
-
var MountTargetConflict = [-3, n0, _MTC, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1153
|
-
schema.TypeRegistry.for(n0).registerError(MountTargetConflict
|
|
1154
|
-
var MountTargetDescription = [
|
|
1159
|
+
var MountTargetConflict$ = [-3, n0, _MTC, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1160
|
+
schema.TypeRegistry.for(n0).registerError(MountTargetConflict$, MountTargetConflict);
|
|
1161
|
+
var MountTargetDescription$ = [
|
|
1155
1162
|
3,
|
|
1156
1163
|
n0,
|
|
1157
1164
|
_MTD,
|
|
@@ -1159,9 +1166,9 @@ var MountTargetDescription = [
|
|
|
1159
1166
|
[_OI, _MTI, _FSI, _SI, _LCS, _IA, _IAp, _NII, _AZI, _AZN, _VI],
|
|
1160
1167
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
1161
1168
|
];
|
|
1162
|
-
var MountTargetNotFound = [-3, n0, _MTNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1163
|
-
schema.TypeRegistry.for(n0).registerError(MountTargetNotFound
|
|
1164
|
-
var NetworkInterfaceLimitExceeded = [
|
|
1169
|
+
var MountTargetNotFound$ = [-3, n0, _MTNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1170
|
+
schema.TypeRegistry.for(n0).registerError(MountTargetNotFound$, MountTargetNotFound);
|
|
1171
|
+
var NetworkInterfaceLimitExceeded$ = [
|
|
1165
1172
|
-3,
|
|
1166
1173
|
n0,
|
|
1167
1174
|
_NILE,
|
|
@@ -1169,24 +1176,31 @@ var NetworkInterfaceLimitExceeded = [
|
|
|
1169
1176
|
[_EC, _M],
|
|
1170
1177
|
[0, 0],
|
|
1171
1178
|
];
|
|
1172
|
-
schema.TypeRegistry.for(n0).registerError(NetworkInterfaceLimitExceeded
|
|
1173
|
-
var NoFreeAddressesInSubnet = [-3, n0, _NFAIS, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1174
|
-
schema.TypeRegistry.for(n0).registerError(NoFreeAddressesInSubnet
|
|
1175
|
-
var PolicyNotFound = [-3, n0, _PNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1176
|
-
schema.TypeRegistry.for(n0).registerError(PolicyNotFound
|
|
1177
|
-
var PosixUser = [3, n0, _PU, 0, [_U, _G, _SGe], [1, 1, 64 | 1]];
|
|
1178
|
-
var PutAccountPreferencesRequest = [3, n0, _PAPR, 0, [_RIT], [0]];
|
|
1179
|
-
var PutAccountPreferencesResponse = [
|
|
1179
|
+
schema.TypeRegistry.for(n0).registerError(NetworkInterfaceLimitExceeded$, NetworkInterfaceLimitExceeded);
|
|
1180
|
+
var NoFreeAddressesInSubnet$ = [-3, n0, _NFAIS, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1181
|
+
schema.TypeRegistry.for(n0).registerError(NoFreeAddressesInSubnet$, NoFreeAddressesInSubnet);
|
|
1182
|
+
var PolicyNotFound$ = [-3, n0, _PNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1183
|
+
schema.TypeRegistry.for(n0).registerError(PolicyNotFound$, PolicyNotFound);
|
|
1184
|
+
var PosixUser$ = [3, n0, _PU, 0, [_U, _G, _SGe], [1, 1, 64 | 1]];
|
|
1185
|
+
var PutAccountPreferencesRequest$ = [3, n0, _PAPR, 0, [_RIT], [0]];
|
|
1186
|
+
var PutAccountPreferencesResponse$ = [
|
|
1180
1187
|
3,
|
|
1181
1188
|
n0,
|
|
1182
1189
|
_PAPRu,
|
|
1183
1190
|
0,
|
|
1184
1191
|
[_RIP],
|
|
1185
|
-
[() => ResourceIdPreference],
|
|
1192
|
+
[() => ResourceIdPreference$],
|
|
1193
|
+
];
|
|
1194
|
+
var PutBackupPolicyRequest$ = [
|
|
1195
|
+
3,
|
|
1196
|
+
n0,
|
|
1197
|
+
_PBPR,
|
|
1198
|
+
0,
|
|
1199
|
+
[_FSI, _BP],
|
|
1200
|
+
[[0, 1], () => BackupPolicy$],
|
|
1186
1201
|
];
|
|
1187
|
-
var
|
|
1188
|
-
var
|
|
1189
|
-
var PutLifecycleConfigurationRequest = [
|
|
1202
|
+
var PutFileSystemPolicyRequest$ = [3, n0, _PFSPR, 0, [_FSI, _Po, _BPLSC], [[0, 1], 0, 2]];
|
|
1203
|
+
var PutLifecycleConfigurationRequest$ = [
|
|
1190
1204
|
3,
|
|
1191
1205
|
n0,
|
|
1192
1206
|
_PLCR,
|
|
@@ -1194,9 +1208,9 @@ var PutLifecycleConfigurationRequest = [
|
|
|
1194
1208
|
[_FSI, _LP],
|
|
1195
1209
|
[[0, 1], () => LifecyclePolicies],
|
|
1196
1210
|
];
|
|
1197
|
-
var ReplicationAlreadyExists = [-3, n0, _RAE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1198
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationAlreadyExists
|
|
1199
|
-
var ReplicationConfigurationDescription = [
|
|
1211
|
+
var ReplicationAlreadyExists$ = [-3, n0, _RAE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
1212
|
+
schema.TypeRegistry.for(n0).registerError(ReplicationAlreadyExists$, ReplicationAlreadyExists);
|
|
1213
|
+
var ReplicationConfigurationDescription$ = [
|
|
1200
1214
|
3,
|
|
1201
1215
|
n0,
|
|
1202
1216
|
_RCD,
|
|
@@ -1204,27 +1218,41 @@ var ReplicationConfigurationDescription = [
|
|
|
1204
1218
|
[_SFSI, _SFSR, _SFSA, _OSFSA, _CTre, _D, _SFSOI],
|
|
1205
1219
|
[0, 0, 0, 0, 4, () => Destinations, 0],
|
|
1206
1220
|
];
|
|
1207
|
-
var ReplicationNotFound = [-3, n0, _RNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1208
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationNotFound
|
|
1209
|
-
var ResourceIdPreference = [3, n0, _RIP, 0, [_RIT, _Res], [0, 64 | 0]];
|
|
1210
|
-
var RootDirectory = [3, n0, _RD, 0, [_Pa, _CI], [0, () => CreationInfo]];
|
|
1211
|
-
var SecurityGroupLimitExceeded = [
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
var
|
|
1226
|
-
|
|
1227
|
-
|
|
1221
|
+
var ReplicationNotFound$ = [-3, n0, _RNF, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
1222
|
+
schema.TypeRegistry.for(n0).registerError(ReplicationNotFound$, ReplicationNotFound);
|
|
1223
|
+
var ResourceIdPreference$ = [3, n0, _RIP, 0, [_RIT, _Res], [0, 64 | 0]];
|
|
1224
|
+
var RootDirectory$ = [3, n0, _RD, 0, [_Pa, _CI], [0, () => CreationInfo$]];
|
|
1225
|
+
var SecurityGroupLimitExceeded$ = [
|
|
1226
|
+
-3,
|
|
1227
|
+
n0,
|
|
1228
|
+
_SGLE,
|
|
1229
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1230
|
+
[_EC, _M],
|
|
1231
|
+
[0, 0],
|
|
1232
|
+
];
|
|
1233
|
+
schema.TypeRegistry.for(n0).registerError(SecurityGroupLimitExceeded$, SecurityGroupLimitExceeded);
|
|
1234
|
+
var SecurityGroupNotFound$ = [-3, n0, _SGNF, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1235
|
+
schema.TypeRegistry.for(n0).registerError(SecurityGroupNotFound$, SecurityGroupNotFound);
|
|
1236
|
+
var SubnetNotFound$ = [-3, n0, _SNF, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1237
|
+
schema.TypeRegistry.for(n0).registerError(SubnetNotFound$, SubnetNotFound);
|
|
1238
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
1239
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RI, _T], [[0, 1], () => Tags]];
|
|
1240
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_EC, _M], [0, 0]];
|
|
1241
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1242
|
+
var ThroughputLimitExceeded$ = [-3, n0, _TLE, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1243
|
+
schema.TypeRegistry.for(n0).registerError(ThroughputLimitExceeded$, ThroughputLimitExceeded);
|
|
1244
|
+
var TooManyRequests$ = [-3, n0, _TMR, { [_e]: _c, [_hE]: 429 }, [_EC, _M], [0, 0]];
|
|
1245
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequests$, TooManyRequests);
|
|
1246
|
+
var UnsupportedAvailabilityZone$ = [
|
|
1247
|
+
-3,
|
|
1248
|
+
n0,
|
|
1249
|
+
_UAZ,
|
|
1250
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1251
|
+
[_EC, _M],
|
|
1252
|
+
[0, 0],
|
|
1253
|
+
];
|
|
1254
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedAvailabilityZone$, UnsupportedAvailabilityZone);
|
|
1255
|
+
var UntagResourceRequest$ = [
|
|
1228
1256
|
3,
|
|
1229
1257
|
n0,
|
|
1230
1258
|
_URR,
|
|
@@ -1235,274 +1263,274 @@ var UntagResourceRequest = [
|
|
|
1235
1263
|
[64 | 0, { [_hQ]: _tK }],
|
|
1236
1264
|
],
|
|
1237
1265
|
];
|
|
1238
|
-
var UpdateFileSystemProtectionRequest = [3, n0, _UFSPR, 0, [_FSI, _ROP], [[0, 1], 0]];
|
|
1239
|
-
var UpdateFileSystemRequest = [3, n0, _UFSR, 0, [_FSI, _TM, _PTIM], [[0, 1], 0, 1]];
|
|
1240
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1241
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1266
|
+
var UpdateFileSystemProtectionRequest$ = [3, n0, _UFSPR, 0, [_FSI, _ROP], [[0, 1], 0]];
|
|
1267
|
+
var UpdateFileSystemRequest$ = [3, n0, _UFSR, 0, [_FSI, _TM, _PTIM], [[0, 1], 0, 1]];
|
|
1268
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
1269
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1242
1270
|
var __Unit = "unit";
|
|
1243
|
-
var EFSServiceException = [-3, _sm, "EFSServiceException", 0, [], []];
|
|
1244
|
-
schema.TypeRegistry.for(_sm).registerError(EFSServiceException
|
|
1245
|
-
var AccessPointDescriptions = [1, n0, _APDc, 0, () => AccessPointDescription];
|
|
1246
|
-
var Destinations = [1, n0, _D, 0, () => Destination];
|
|
1247
|
-
var DestinationsToCreate = [1, n0, _DTCe, 0, () => DestinationToCreate];
|
|
1248
|
-
var FileSystemDescriptions = [1, n0, _FSDi, 0, () => FileSystemDescription];
|
|
1249
|
-
var LifecyclePolicies = [1, n0, _LP, 0, () => LifecyclePolicy];
|
|
1250
|
-
var MountTargetDescriptions = [1, n0, _MTDo, 0, () => MountTargetDescription];
|
|
1271
|
+
var EFSServiceException$ = [-3, _sm, "EFSServiceException", 0, [], []];
|
|
1272
|
+
schema.TypeRegistry.for(_sm).registerError(EFSServiceException$, EFSServiceException);
|
|
1273
|
+
var AccessPointDescriptions = [1, n0, _APDc, 0, () => AccessPointDescription$];
|
|
1274
|
+
var Destinations = [1, n0, _D, 0, () => Destination$];
|
|
1275
|
+
var DestinationsToCreate = [1, n0, _DTCe, 0, () => DestinationToCreate$];
|
|
1276
|
+
var FileSystemDescriptions = [1, n0, _FSDi, 0, () => FileSystemDescription$];
|
|
1277
|
+
var LifecyclePolicies = [1, n0, _LP, 0, () => LifecyclePolicy$];
|
|
1278
|
+
var MountTargetDescriptions = [1, n0, _MTDo, 0, () => MountTargetDescription$];
|
|
1251
1279
|
var ReplicationConfigurationDescriptions = [
|
|
1252
1280
|
1,
|
|
1253
1281
|
n0,
|
|
1254
1282
|
_RCDe,
|
|
1255
1283
|
0,
|
|
1256
|
-
() => ReplicationConfigurationDescription
|
|
1284
|
+
() => ReplicationConfigurationDescription$,
|
|
1257
1285
|
];
|
|
1258
|
-
var Tags = [1, n0, _T, 0, () => Tag];
|
|
1259
|
-
var CreateAccessPoint = [
|
|
1286
|
+
var Tags = [1, n0, _T, 0, () => Tag$];
|
|
1287
|
+
var CreateAccessPoint$ = [
|
|
1260
1288
|
9,
|
|
1261
1289
|
n0,
|
|
1262
1290
|
_CAP,
|
|
1263
1291
|
{ [_h]: ["POST", "/2015-02-01/access-points", 200] },
|
|
1264
|
-
() => CreateAccessPointRequest
|
|
1265
|
-
() => AccessPointDescription
|
|
1292
|
+
() => CreateAccessPointRequest$,
|
|
1293
|
+
() => AccessPointDescription$,
|
|
1266
1294
|
];
|
|
1267
|
-
var CreateFileSystem = [
|
|
1295
|
+
var CreateFileSystem$ = [
|
|
1268
1296
|
9,
|
|
1269
1297
|
n0,
|
|
1270
1298
|
_CFS,
|
|
1271
1299
|
{ [_h]: ["POST", "/2015-02-01/file-systems", 201] },
|
|
1272
|
-
() => CreateFileSystemRequest
|
|
1273
|
-
() => FileSystemDescription
|
|
1300
|
+
() => CreateFileSystemRequest$,
|
|
1301
|
+
() => FileSystemDescription$,
|
|
1274
1302
|
];
|
|
1275
|
-
var CreateMountTarget = [
|
|
1303
|
+
var CreateMountTarget$ = [
|
|
1276
1304
|
9,
|
|
1277
1305
|
n0,
|
|
1278
1306
|
_CMT,
|
|
1279
1307
|
{ [_h]: ["POST", "/2015-02-01/mount-targets", 200] },
|
|
1280
|
-
() => CreateMountTargetRequest
|
|
1281
|
-
() => MountTargetDescription
|
|
1308
|
+
() => CreateMountTargetRequest$,
|
|
1309
|
+
() => MountTargetDescription$,
|
|
1282
1310
|
];
|
|
1283
|
-
var CreateReplicationConfiguration = [
|
|
1311
|
+
var CreateReplicationConfiguration$ = [
|
|
1284
1312
|
9,
|
|
1285
1313
|
n0,
|
|
1286
1314
|
_CRC,
|
|
1287
1315
|
{ [_h]: ["POST", "/2015-02-01/file-systems/{SourceFileSystemId}/replication-configuration", 200] },
|
|
1288
|
-
() => CreateReplicationConfigurationRequest
|
|
1289
|
-
() => ReplicationConfigurationDescription
|
|
1316
|
+
() => CreateReplicationConfigurationRequest$,
|
|
1317
|
+
() => ReplicationConfigurationDescription$,
|
|
1290
1318
|
];
|
|
1291
|
-
var CreateTags = [
|
|
1319
|
+
var CreateTags$ = [
|
|
1292
1320
|
9,
|
|
1293
1321
|
n0,
|
|
1294
1322
|
_CTrea,
|
|
1295
1323
|
{ [_h]: ["POST", "/2015-02-01/create-tags/{FileSystemId}", 204] },
|
|
1296
|
-
() => CreateTagsRequest
|
|
1324
|
+
() => CreateTagsRequest$,
|
|
1297
1325
|
() => __Unit,
|
|
1298
1326
|
];
|
|
1299
|
-
var DeleteAccessPoint = [
|
|
1327
|
+
var DeleteAccessPoint$ = [
|
|
1300
1328
|
9,
|
|
1301
1329
|
n0,
|
|
1302
1330
|
_DAP,
|
|
1303
1331
|
{ [_h]: ["DELETE", "/2015-02-01/access-points/{AccessPointId}", 204] },
|
|
1304
|
-
() => DeleteAccessPointRequest
|
|
1332
|
+
() => DeleteAccessPointRequest$,
|
|
1305
1333
|
() => __Unit,
|
|
1306
1334
|
];
|
|
1307
|
-
var DeleteFileSystem = [
|
|
1335
|
+
var DeleteFileSystem$ = [
|
|
1308
1336
|
9,
|
|
1309
1337
|
n0,
|
|
1310
1338
|
_DFS,
|
|
1311
1339
|
{ [_h]: ["DELETE", "/2015-02-01/file-systems/{FileSystemId}", 204] },
|
|
1312
|
-
() => DeleteFileSystemRequest
|
|
1340
|
+
() => DeleteFileSystemRequest$,
|
|
1313
1341
|
() => __Unit,
|
|
1314
1342
|
];
|
|
1315
|
-
var DeleteFileSystemPolicy = [
|
|
1343
|
+
var DeleteFileSystemPolicy$ = [
|
|
1316
1344
|
9,
|
|
1317
1345
|
n0,
|
|
1318
1346
|
_DFSP,
|
|
1319
1347
|
{ [_h]: ["DELETE", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] },
|
|
1320
|
-
() => DeleteFileSystemPolicyRequest
|
|
1348
|
+
() => DeleteFileSystemPolicyRequest$,
|
|
1321
1349
|
() => __Unit,
|
|
1322
1350
|
];
|
|
1323
|
-
var DeleteMountTarget = [
|
|
1351
|
+
var DeleteMountTarget$ = [
|
|
1324
1352
|
9,
|
|
1325
1353
|
n0,
|
|
1326
1354
|
_DMT,
|
|
1327
1355
|
{ [_h]: ["DELETE", "/2015-02-01/mount-targets/{MountTargetId}", 204] },
|
|
1328
|
-
() => DeleteMountTargetRequest
|
|
1356
|
+
() => DeleteMountTargetRequest$,
|
|
1329
1357
|
() => __Unit,
|
|
1330
1358
|
];
|
|
1331
|
-
var DeleteReplicationConfiguration = [
|
|
1359
|
+
var DeleteReplicationConfiguration$ = [
|
|
1332
1360
|
9,
|
|
1333
1361
|
n0,
|
|
1334
1362
|
_DRC,
|
|
1335
1363
|
{ [_h]: ["DELETE", "/2015-02-01/file-systems/{SourceFileSystemId}/replication-configuration", 204] },
|
|
1336
|
-
() => DeleteReplicationConfigurationRequest
|
|
1364
|
+
() => DeleteReplicationConfigurationRequest$,
|
|
1337
1365
|
() => __Unit,
|
|
1338
1366
|
];
|
|
1339
|
-
var DeleteTags = [
|
|
1367
|
+
var DeleteTags$ = [
|
|
1340
1368
|
9,
|
|
1341
1369
|
n0,
|
|
1342
1370
|
_DTe,
|
|
1343
1371
|
{ [_h]: ["POST", "/2015-02-01/delete-tags/{FileSystemId}", 204] },
|
|
1344
|
-
() => DeleteTagsRequest
|
|
1372
|
+
() => DeleteTagsRequest$,
|
|
1345
1373
|
() => __Unit,
|
|
1346
1374
|
];
|
|
1347
|
-
var DescribeAccessPoints = [
|
|
1375
|
+
var DescribeAccessPoints$ = [
|
|
1348
1376
|
9,
|
|
1349
1377
|
n0,
|
|
1350
1378
|
_DAPe,
|
|
1351
1379
|
{ [_h]: ["GET", "/2015-02-01/access-points", 200] },
|
|
1352
|
-
() => DescribeAccessPointsRequest
|
|
1353
|
-
() => DescribeAccessPointsResponse
|
|
1380
|
+
() => DescribeAccessPointsRequest$,
|
|
1381
|
+
() => DescribeAccessPointsResponse$,
|
|
1354
1382
|
];
|
|
1355
|
-
var DescribeAccountPreferences = [
|
|
1383
|
+
var DescribeAccountPreferences$ = [
|
|
1356
1384
|
9,
|
|
1357
1385
|
n0,
|
|
1358
1386
|
_DAPes,
|
|
1359
1387
|
{ [_h]: ["GET", "/2015-02-01/account-preferences", 200] },
|
|
1360
|
-
() => DescribeAccountPreferencesRequest
|
|
1361
|
-
() => DescribeAccountPreferencesResponse
|
|
1388
|
+
() => DescribeAccountPreferencesRequest$,
|
|
1389
|
+
() => DescribeAccountPreferencesResponse$,
|
|
1362
1390
|
];
|
|
1363
|
-
var DescribeBackupPolicy = [
|
|
1391
|
+
var DescribeBackupPolicy$ = [
|
|
1364
1392
|
9,
|
|
1365
1393
|
n0,
|
|
1366
1394
|
_DBP,
|
|
1367
1395
|
{ [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/backup-policy", 200] },
|
|
1368
|
-
() => DescribeBackupPolicyRequest
|
|
1369
|
-
() => BackupPolicyDescription
|
|
1396
|
+
() => DescribeBackupPolicyRequest$,
|
|
1397
|
+
() => BackupPolicyDescription$,
|
|
1370
1398
|
];
|
|
1371
|
-
var DescribeFileSystemPolicy = [
|
|
1399
|
+
var DescribeFileSystemPolicy$ = [
|
|
1372
1400
|
9,
|
|
1373
1401
|
n0,
|
|
1374
1402
|
_DFSPe,
|
|
1375
1403
|
{ [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] },
|
|
1376
|
-
() => DescribeFileSystemPolicyRequest
|
|
1377
|
-
() => FileSystemPolicyDescription
|
|
1404
|
+
() => DescribeFileSystemPolicyRequest$,
|
|
1405
|
+
() => FileSystemPolicyDescription$,
|
|
1378
1406
|
];
|
|
1379
|
-
var DescribeFileSystems = [
|
|
1407
|
+
var DescribeFileSystems$ = [
|
|
1380
1408
|
9,
|
|
1381
1409
|
n0,
|
|
1382
1410
|
_DFSe,
|
|
1383
1411
|
{ [_h]: ["GET", "/2015-02-01/file-systems", 200] },
|
|
1384
|
-
() => DescribeFileSystemsRequest
|
|
1385
|
-
() => DescribeFileSystemsResponse
|
|
1412
|
+
() => DescribeFileSystemsRequest$,
|
|
1413
|
+
() => DescribeFileSystemsResponse$,
|
|
1386
1414
|
];
|
|
1387
|
-
var DescribeLifecycleConfiguration = [
|
|
1415
|
+
var DescribeLifecycleConfiguration$ = [
|
|
1388
1416
|
9,
|
|
1389
1417
|
n0,
|
|
1390
1418
|
_DLC,
|
|
1391
1419
|
{ [_h]: ["GET", "/2015-02-01/file-systems/{FileSystemId}/lifecycle-configuration", 200] },
|
|
1392
|
-
() => DescribeLifecycleConfigurationRequest
|
|
1393
|
-
() => LifecycleConfigurationDescription
|
|
1420
|
+
() => DescribeLifecycleConfigurationRequest$,
|
|
1421
|
+
() => LifecycleConfigurationDescription$,
|
|
1394
1422
|
];
|
|
1395
|
-
var DescribeMountTargets = [
|
|
1423
|
+
var DescribeMountTargets$ = [
|
|
1396
1424
|
9,
|
|
1397
1425
|
n0,
|
|
1398
1426
|
_DMTe,
|
|
1399
1427
|
{ [_h]: ["GET", "/2015-02-01/mount-targets", 200] },
|
|
1400
|
-
() => DescribeMountTargetsRequest
|
|
1401
|
-
() => DescribeMountTargetsResponse
|
|
1428
|
+
() => DescribeMountTargetsRequest$,
|
|
1429
|
+
() => DescribeMountTargetsResponse$,
|
|
1402
1430
|
];
|
|
1403
|
-
var DescribeMountTargetSecurityGroups = [
|
|
1431
|
+
var DescribeMountTargetSecurityGroups$ = [
|
|
1404
1432
|
9,
|
|
1405
1433
|
n0,
|
|
1406
1434
|
_DMTSG,
|
|
1407
1435
|
{ [_h]: ["GET", "/2015-02-01/mount-targets/{MountTargetId}/security-groups", 200] },
|
|
1408
|
-
() => DescribeMountTargetSecurityGroupsRequest
|
|
1409
|
-
() => DescribeMountTargetSecurityGroupsResponse
|
|
1436
|
+
() => DescribeMountTargetSecurityGroupsRequest$,
|
|
1437
|
+
() => DescribeMountTargetSecurityGroupsResponse$,
|
|
1410
1438
|
];
|
|
1411
|
-
var DescribeReplicationConfigurations = [
|
|
1439
|
+
var DescribeReplicationConfigurations$ = [
|
|
1412
1440
|
9,
|
|
1413
1441
|
n0,
|
|
1414
1442
|
_DRCe,
|
|
1415
1443
|
{ [_h]: ["GET", "/2015-02-01/file-systems/replication-configurations", 200] },
|
|
1416
|
-
() => DescribeReplicationConfigurationsRequest
|
|
1417
|
-
() => DescribeReplicationConfigurationsResponse
|
|
1444
|
+
() => DescribeReplicationConfigurationsRequest$,
|
|
1445
|
+
() => DescribeReplicationConfigurationsResponse$,
|
|
1418
1446
|
];
|
|
1419
|
-
var DescribeTags = [
|
|
1447
|
+
var DescribeTags$ = [
|
|
1420
1448
|
9,
|
|
1421
1449
|
n0,
|
|
1422
1450
|
_DTes,
|
|
1423
1451
|
{ [_h]: ["GET", "/2015-02-01/tags/{FileSystemId}", 200] },
|
|
1424
|
-
() => DescribeTagsRequest
|
|
1425
|
-
() => DescribeTagsResponse
|
|
1452
|
+
() => DescribeTagsRequest$,
|
|
1453
|
+
() => DescribeTagsResponse$,
|
|
1426
1454
|
];
|
|
1427
|
-
var ListTagsForResource = [
|
|
1455
|
+
var ListTagsForResource$ = [
|
|
1428
1456
|
9,
|
|
1429
1457
|
n0,
|
|
1430
1458
|
_LTFR,
|
|
1431
1459
|
{ [_h]: ["GET", "/2015-02-01/resource-tags/{ResourceId}", 200] },
|
|
1432
|
-
() => ListTagsForResourceRequest
|
|
1433
|
-
() => ListTagsForResourceResponse
|
|
1460
|
+
() => ListTagsForResourceRequest$,
|
|
1461
|
+
() => ListTagsForResourceResponse$,
|
|
1434
1462
|
];
|
|
1435
|
-
var ModifyMountTargetSecurityGroups = [
|
|
1463
|
+
var ModifyMountTargetSecurityGroups$ = [
|
|
1436
1464
|
9,
|
|
1437
1465
|
n0,
|
|
1438
1466
|
_MMTSG,
|
|
1439
1467
|
{ [_h]: ["PUT", "/2015-02-01/mount-targets/{MountTargetId}/security-groups", 204] },
|
|
1440
|
-
() => ModifyMountTargetSecurityGroupsRequest
|
|
1468
|
+
() => ModifyMountTargetSecurityGroupsRequest$,
|
|
1441
1469
|
() => __Unit,
|
|
1442
1470
|
];
|
|
1443
|
-
var PutAccountPreferences = [
|
|
1471
|
+
var PutAccountPreferences$ = [
|
|
1444
1472
|
9,
|
|
1445
1473
|
n0,
|
|
1446
1474
|
_PAP,
|
|
1447
1475
|
{ [_h]: ["PUT", "/2015-02-01/account-preferences", 200] },
|
|
1448
|
-
() => PutAccountPreferencesRequest
|
|
1449
|
-
() => PutAccountPreferencesResponse
|
|
1476
|
+
() => PutAccountPreferencesRequest$,
|
|
1477
|
+
() => PutAccountPreferencesResponse$,
|
|
1450
1478
|
];
|
|
1451
|
-
var PutBackupPolicy = [
|
|
1479
|
+
var PutBackupPolicy$ = [
|
|
1452
1480
|
9,
|
|
1453
1481
|
n0,
|
|
1454
1482
|
_PBP,
|
|
1455
1483
|
{ [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/backup-policy", 200] },
|
|
1456
|
-
() => PutBackupPolicyRequest
|
|
1457
|
-
() => BackupPolicyDescription
|
|
1484
|
+
() => PutBackupPolicyRequest$,
|
|
1485
|
+
() => BackupPolicyDescription$,
|
|
1458
1486
|
];
|
|
1459
|
-
var PutFileSystemPolicy = [
|
|
1487
|
+
var PutFileSystemPolicy$ = [
|
|
1460
1488
|
9,
|
|
1461
1489
|
n0,
|
|
1462
1490
|
_PFSP,
|
|
1463
1491
|
{ [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/policy", 200] },
|
|
1464
|
-
() => PutFileSystemPolicyRequest
|
|
1465
|
-
() => FileSystemPolicyDescription
|
|
1492
|
+
() => PutFileSystemPolicyRequest$,
|
|
1493
|
+
() => FileSystemPolicyDescription$,
|
|
1466
1494
|
];
|
|
1467
|
-
var PutLifecycleConfiguration = [
|
|
1495
|
+
var PutLifecycleConfiguration$ = [
|
|
1468
1496
|
9,
|
|
1469
1497
|
n0,
|
|
1470
1498
|
_PLC,
|
|
1471
1499
|
{ [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/lifecycle-configuration", 200] },
|
|
1472
|
-
() => PutLifecycleConfigurationRequest
|
|
1473
|
-
() => LifecycleConfigurationDescription
|
|
1500
|
+
() => PutLifecycleConfigurationRequest$,
|
|
1501
|
+
() => LifecycleConfigurationDescription$,
|
|
1474
1502
|
];
|
|
1475
|
-
var TagResource = [
|
|
1503
|
+
var TagResource$ = [
|
|
1476
1504
|
9,
|
|
1477
1505
|
n0,
|
|
1478
1506
|
_TR,
|
|
1479
1507
|
{ [_h]: ["POST", "/2015-02-01/resource-tags/{ResourceId}", 200] },
|
|
1480
|
-
() => TagResourceRequest
|
|
1508
|
+
() => TagResourceRequest$,
|
|
1481
1509
|
() => __Unit,
|
|
1482
1510
|
];
|
|
1483
|
-
var UntagResource = [
|
|
1511
|
+
var UntagResource$ = [
|
|
1484
1512
|
9,
|
|
1485
1513
|
n0,
|
|
1486
1514
|
_UR,
|
|
1487
1515
|
{ [_h]: ["DELETE", "/2015-02-01/resource-tags/{ResourceId}", 200] },
|
|
1488
|
-
() => UntagResourceRequest
|
|
1516
|
+
() => UntagResourceRequest$,
|
|
1489
1517
|
() => __Unit,
|
|
1490
1518
|
];
|
|
1491
|
-
var UpdateFileSystem = [
|
|
1519
|
+
var UpdateFileSystem$ = [
|
|
1492
1520
|
9,
|
|
1493
1521
|
n0,
|
|
1494
1522
|
_UFS,
|
|
1495
1523
|
{ [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}", 202] },
|
|
1496
|
-
() => UpdateFileSystemRequest
|
|
1497
|
-
() => FileSystemDescription
|
|
1524
|
+
() => UpdateFileSystemRequest$,
|
|
1525
|
+
() => FileSystemDescription$,
|
|
1498
1526
|
];
|
|
1499
|
-
var UpdateFileSystemProtection = [
|
|
1527
|
+
var UpdateFileSystemProtection$ = [
|
|
1500
1528
|
9,
|
|
1501
1529
|
n0,
|
|
1502
1530
|
_UFSP,
|
|
1503
1531
|
{ [_h]: ["PUT", "/2015-02-01/file-systems/{FileSystemId}/protection", 200] },
|
|
1504
|
-
() => UpdateFileSystemProtectionRequest
|
|
1505
|
-
() => FileSystemProtectionDescription
|
|
1532
|
+
() => UpdateFileSystemProtectionRequest$,
|
|
1533
|
+
() => FileSystemProtectionDescription$,
|
|
1506
1534
|
];
|
|
1507
1535
|
|
|
1508
1536
|
class CreateAccessPointCommand extends smithyClient.Command
|
|
@@ -1513,7 +1541,7 @@ class CreateAccessPointCommand extends smithyClient.Command
|
|
|
1513
1541
|
})
|
|
1514
1542
|
.s("MagnolioAPIService_v20150201", "CreateAccessPoint", {})
|
|
1515
1543
|
.n("EFSClient", "CreateAccessPointCommand")
|
|
1516
|
-
.sc(CreateAccessPoint)
|
|
1544
|
+
.sc(CreateAccessPoint$)
|
|
1517
1545
|
.build() {
|
|
1518
1546
|
}
|
|
1519
1547
|
|
|
@@ -1525,7 +1553,7 @@ class CreateFileSystemCommand extends smithyClient.Command
|
|
|
1525
1553
|
})
|
|
1526
1554
|
.s("MagnolioAPIService_v20150201", "CreateFileSystem", {})
|
|
1527
1555
|
.n("EFSClient", "CreateFileSystemCommand")
|
|
1528
|
-
.sc(CreateFileSystem)
|
|
1556
|
+
.sc(CreateFileSystem$)
|
|
1529
1557
|
.build() {
|
|
1530
1558
|
}
|
|
1531
1559
|
|
|
@@ -1537,7 +1565,7 @@ class CreateMountTargetCommand extends smithyClient.Command
|
|
|
1537
1565
|
})
|
|
1538
1566
|
.s("MagnolioAPIService_v20150201", "CreateMountTarget", {})
|
|
1539
1567
|
.n("EFSClient", "CreateMountTargetCommand")
|
|
1540
|
-
.sc(CreateMountTarget)
|
|
1568
|
+
.sc(CreateMountTarget$)
|
|
1541
1569
|
.build() {
|
|
1542
1570
|
}
|
|
1543
1571
|
|
|
@@ -1549,7 +1577,7 @@ class CreateReplicationConfigurationCommand extends smithyClient.Command
|
|
|
1549
1577
|
})
|
|
1550
1578
|
.s("MagnolioAPIService_v20150201", "CreateReplicationConfiguration", {})
|
|
1551
1579
|
.n("EFSClient", "CreateReplicationConfigurationCommand")
|
|
1552
|
-
.sc(CreateReplicationConfiguration)
|
|
1580
|
+
.sc(CreateReplicationConfiguration$)
|
|
1553
1581
|
.build() {
|
|
1554
1582
|
}
|
|
1555
1583
|
|
|
@@ -1561,7 +1589,7 @@ class CreateTagsCommand extends smithyClient.Command
|
|
|
1561
1589
|
})
|
|
1562
1590
|
.s("MagnolioAPIService_v20150201", "CreateTags", {})
|
|
1563
1591
|
.n("EFSClient", "CreateTagsCommand")
|
|
1564
|
-
.sc(CreateTags)
|
|
1592
|
+
.sc(CreateTags$)
|
|
1565
1593
|
.build() {
|
|
1566
1594
|
}
|
|
1567
1595
|
|
|
@@ -1573,7 +1601,7 @@ class DeleteAccessPointCommand extends smithyClient.Command
|
|
|
1573
1601
|
})
|
|
1574
1602
|
.s("MagnolioAPIService_v20150201", "DeleteAccessPoint", {})
|
|
1575
1603
|
.n("EFSClient", "DeleteAccessPointCommand")
|
|
1576
|
-
.sc(DeleteAccessPoint)
|
|
1604
|
+
.sc(DeleteAccessPoint$)
|
|
1577
1605
|
.build() {
|
|
1578
1606
|
}
|
|
1579
1607
|
|
|
@@ -1585,7 +1613,7 @@ class DeleteFileSystemCommand extends smithyClient.Command
|
|
|
1585
1613
|
})
|
|
1586
1614
|
.s("MagnolioAPIService_v20150201", "DeleteFileSystem", {})
|
|
1587
1615
|
.n("EFSClient", "DeleteFileSystemCommand")
|
|
1588
|
-
.sc(DeleteFileSystem)
|
|
1616
|
+
.sc(DeleteFileSystem$)
|
|
1589
1617
|
.build() {
|
|
1590
1618
|
}
|
|
1591
1619
|
|
|
@@ -1597,7 +1625,7 @@ class DeleteFileSystemPolicyCommand extends smithyClient.Command
|
|
|
1597
1625
|
})
|
|
1598
1626
|
.s("MagnolioAPIService_v20150201", "DeleteFileSystemPolicy", {})
|
|
1599
1627
|
.n("EFSClient", "DeleteFileSystemPolicyCommand")
|
|
1600
|
-
.sc(DeleteFileSystemPolicy)
|
|
1628
|
+
.sc(DeleteFileSystemPolicy$)
|
|
1601
1629
|
.build() {
|
|
1602
1630
|
}
|
|
1603
1631
|
|
|
@@ -1609,7 +1637,7 @@ class DeleteMountTargetCommand extends smithyClient.Command
|
|
|
1609
1637
|
})
|
|
1610
1638
|
.s("MagnolioAPIService_v20150201", "DeleteMountTarget", {})
|
|
1611
1639
|
.n("EFSClient", "DeleteMountTargetCommand")
|
|
1612
|
-
.sc(DeleteMountTarget)
|
|
1640
|
+
.sc(DeleteMountTarget$)
|
|
1613
1641
|
.build() {
|
|
1614
1642
|
}
|
|
1615
1643
|
|
|
@@ -1621,7 +1649,7 @@ class DeleteReplicationConfigurationCommand extends smithyClient.Command
|
|
|
1621
1649
|
})
|
|
1622
1650
|
.s("MagnolioAPIService_v20150201", "DeleteReplicationConfiguration", {})
|
|
1623
1651
|
.n("EFSClient", "DeleteReplicationConfigurationCommand")
|
|
1624
|
-
.sc(DeleteReplicationConfiguration)
|
|
1652
|
+
.sc(DeleteReplicationConfiguration$)
|
|
1625
1653
|
.build() {
|
|
1626
1654
|
}
|
|
1627
1655
|
|
|
@@ -1633,7 +1661,7 @@ class DeleteTagsCommand extends smithyClient.Command
|
|
|
1633
1661
|
})
|
|
1634
1662
|
.s("MagnolioAPIService_v20150201", "DeleteTags", {})
|
|
1635
1663
|
.n("EFSClient", "DeleteTagsCommand")
|
|
1636
|
-
.sc(DeleteTags)
|
|
1664
|
+
.sc(DeleteTags$)
|
|
1637
1665
|
.build() {
|
|
1638
1666
|
}
|
|
1639
1667
|
|
|
@@ -1645,7 +1673,7 @@ class DescribeAccessPointsCommand extends smithyClient.Command
|
|
|
1645
1673
|
})
|
|
1646
1674
|
.s("MagnolioAPIService_v20150201", "DescribeAccessPoints", {})
|
|
1647
1675
|
.n("EFSClient", "DescribeAccessPointsCommand")
|
|
1648
|
-
.sc(DescribeAccessPoints)
|
|
1676
|
+
.sc(DescribeAccessPoints$)
|
|
1649
1677
|
.build() {
|
|
1650
1678
|
}
|
|
1651
1679
|
|
|
@@ -1657,7 +1685,7 @@ class DescribeAccountPreferencesCommand extends smithyClient.Command
|
|
|
1657
1685
|
})
|
|
1658
1686
|
.s("MagnolioAPIService_v20150201", "DescribeAccountPreferences", {})
|
|
1659
1687
|
.n("EFSClient", "DescribeAccountPreferencesCommand")
|
|
1660
|
-
.sc(DescribeAccountPreferences)
|
|
1688
|
+
.sc(DescribeAccountPreferences$)
|
|
1661
1689
|
.build() {
|
|
1662
1690
|
}
|
|
1663
1691
|
|
|
@@ -1669,7 +1697,7 @@ class DescribeBackupPolicyCommand extends smithyClient.Command
|
|
|
1669
1697
|
})
|
|
1670
1698
|
.s("MagnolioAPIService_v20150201", "DescribeBackupPolicy", {})
|
|
1671
1699
|
.n("EFSClient", "DescribeBackupPolicyCommand")
|
|
1672
|
-
.sc(DescribeBackupPolicy)
|
|
1700
|
+
.sc(DescribeBackupPolicy$)
|
|
1673
1701
|
.build() {
|
|
1674
1702
|
}
|
|
1675
1703
|
|
|
@@ -1681,7 +1709,7 @@ class DescribeFileSystemPolicyCommand extends smithyClient.Command
|
|
|
1681
1709
|
})
|
|
1682
1710
|
.s("MagnolioAPIService_v20150201", "DescribeFileSystemPolicy", {})
|
|
1683
1711
|
.n("EFSClient", "DescribeFileSystemPolicyCommand")
|
|
1684
|
-
.sc(DescribeFileSystemPolicy)
|
|
1712
|
+
.sc(DescribeFileSystemPolicy$)
|
|
1685
1713
|
.build() {
|
|
1686
1714
|
}
|
|
1687
1715
|
|
|
@@ -1693,7 +1721,7 @@ class DescribeFileSystemsCommand extends smithyClient.Command
|
|
|
1693
1721
|
})
|
|
1694
1722
|
.s("MagnolioAPIService_v20150201", "DescribeFileSystems", {})
|
|
1695
1723
|
.n("EFSClient", "DescribeFileSystemsCommand")
|
|
1696
|
-
.sc(DescribeFileSystems)
|
|
1724
|
+
.sc(DescribeFileSystems$)
|
|
1697
1725
|
.build() {
|
|
1698
1726
|
}
|
|
1699
1727
|
|
|
@@ -1705,7 +1733,7 @@ class DescribeLifecycleConfigurationCommand extends smithyClient.Command
|
|
|
1705
1733
|
})
|
|
1706
1734
|
.s("MagnolioAPIService_v20150201", "DescribeLifecycleConfiguration", {})
|
|
1707
1735
|
.n("EFSClient", "DescribeLifecycleConfigurationCommand")
|
|
1708
|
-
.sc(DescribeLifecycleConfiguration)
|
|
1736
|
+
.sc(DescribeLifecycleConfiguration$)
|
|
1709
1737
|
.build() {
|
|
1710
1738
|
}
|
|
1711
1739
|
|
|
@@ -1717,7 +1745,7 @@ class DescribeMountTargetsCommand extends smithyClient.Command
|
|
|
1717
1745
|
})
|
|
1718
1746
|
.s("MagnolioAPIService_v20150201", "DescribeMountTargets", {})
|
|
1719
1747
|
.n("EFSClient", "DescribeMountTargetsCommand")
|
|
1720
|
-
.sc(DescribeMountTargets)
|
|
1748
|
+
.sc(DescribeMountTargets$)
|
|
1721
1749
|
.build() {
|
|
1722
1750
|
}
|
|
1723
1751
|
|
|
@@ -1729,7 +1757,7 @@ class DescribeMountTargetSecurityGroupsCommand extends smithyClient.Command
|
|
|
1729
1757
|
})
|
|
1730
1758
|
.s("MagnolioAPIService_v20150201", "DescribeMountTargetSecurityGroups", {})
|
|
1731
1759
|
.n("EFSClient", "DescribeMountTargetSecurityGroupsCommand")
|
|
1732
|
-
.sc(DescribeMountTargetSecurityGroups)
|
|
1760
|
+
.sc(DescribeMountTargetSecurityGroups$)
|
|
1733
1761
|
.build() {
|
|
1734
1762
|
}
|
|
1735
1763
|
|
|
@@ -1741,7 +1769,7 @@ class DescribeReplicationConfigurationsCommand extends smithyClient.Command
|
|
|
1741
1769
|
})
|
|
1742
1770
|
.s("MagnolioAPIService_v20150201", "DescribeReplicationConfigurations", {})
|
|
1743
1771
|
.n("EFSClient", "DescribeReplicationConfigurationsCommand")
|
|
1744
|
-
.sc(DescribeReplicationConfigurations)
|
|
1772
|
+
.sc(DescribeReplicationConfigurations$)
|
|
1745
1773
|
.build() {
|
|
1746
1774
|
}
|
|
1747
1775
|
|
|
@@ -1753,7 +1781,7 @@ class DescribeTagsCommand extends smithyClient.Command
|
|
|
1753
1781
|
})
|
|
1754
1782
|
.s("MagnolioAPIService_v20150201", "DescribeTags", {})
|
|
1755
1783
|
.n("EFSClient", "DescribeTagsCommand")
|
|
1756
|
-
.sc(DescribeTags)
|
|
1784
|
+
.sc(DescribeTags$)
|
|
1757
1785
|
.build() {
|
|
1758
1786
|
}
|
|
1759
1787
|
|
|
@@ -1765,7 +1793,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1765
1793
|
})
|
|
1766
1794
|
.s("MagnolioAPIService_v20150201", "ListTagsForResource", {})
|
|
1767
1795
|
.n("EFSClient", "ListTagsForResourceCommand")
|
|
1768
|
-
.sc(ListTagsForResource)
|
|
1796
|
+
.sc(ListTagsForResource$)
|
|
1769
1797
|
.build() {
|
|
1770
1798
|
}
|
|
1771
1799
|
|
|
@@ -1777,7 +1805,7 @@ class ModifyMountTargetSecurityGroupsCommand extends smithyClient.Command
|
|
|
1777
1805
|
})
|
|
1778
1806
|
.s("MagnolioAPIService_v20150201", "ModifyMountTargetSecurityGroups", {})
|
|
1779
1807
|
.n("EFSClient", "ModifyMountTargetSecurityGroupsCommand")
|
|
1780
|
-
.sc(ModifyMountTargetSecurityGroups)
|
|
1808
|
+
.sc(ModifyMountTargetSecurityGroups$)
|
|
1781
1809
|
.build() {
|
|
1782
1810
|
}
|
|
1783
1811
|
|
|
@@ -1789,7 +1817,7 @@ class PutAccountPreferencesCommand extends smithyClient.Command
|
|
|
1789
1817
|
})
|
|
1790
1818
|
.s("MagnolioAPIService_v20150201", "PutAccountPreferences", {})
|
|
1791
1819
|
.n("EFSClient", "PutAccountPreferencesCommand")
|
|
1792
|
-
.sc(PutAccountPreferences)
|
|
1820
|
+
.sc(PutAccountPreferences$)
|
|
1793
1821
|
.build() {
|
|
1794
1822
|
}
|
|
1795
1823
|
|
|
@@ -1801,7 +1829,7 @@ class PutBackupPolicyCommand extends smithyClient.Command
|
|
|
1801
1829
|
})
|
|
1802
1830
|
.s("MagnolioAPIService_v20150201", "PutBackupPolicy", {})
|
|
1803
1831
|
.n("EFSClient", "PutBackupPolicyCommand")
|
|
1804
|
-
.sc(PutBackupPolicy)
|
|
1832
|
+
.sc(PutBackupPolicy$)
|
|
1805
1833
|
.build() {
|
|
1806
1834
|
}
|
|
1807
1835
|
|
|
@@ -1813,7 +1841,7 @@ class PutFileSystemPolicyCommand extends smithyClient.Command
|
|
|
1813
1841
|
})
|
|
1814
1842
|
.s("MagnolioAPIService_v20150201", "PutFileSystemPolicy", {})
|
|
1815
1843
|
.n("EFSClient", "PutFileSystemPolicyCommand")
|
|
1816
|
-
.sc(PutFileSystemPolicy)
|
|
1844
|
+
.sc(PutFileSystemPolicy$)
|
|
1817
1845
|
.build() {
|
|
1818
1846
|
}
|
|
1819
1847
|
|
|
@@ -1825,7 +1853,7 @@ class PutLifecycleConfigurationCommand extends smithyClient.Command
|
|
|
1825
1853
|
})
|
|
1826
1854
|
.s("MagnolioAPIService_v20150201", "PutLifecycleConfiguration", {})
|
|
1827
1855
|
.n("EFSClient", "PutLifecycleConfigurationCommand")
|
|
1828
|
-
.sc(PutLifecycleConfiguration)
|
|
1856
|
+
.sc(PutLifecycleConfiguration$)
|
|
1829
1857
|
.build() {
|
|
1830
1858
|
}
|
|
1831
1859
|
|
|
@@ -1837,7 +1865,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1837
1865
|
})
|
|
1838
1866
|
.s("MagnolioAPIService_v20150201", "TagResource", {})
|
|
1839
1867
|
.n("EFSClient", "TagResourceCommand")
|
|
1840
|
-
.sc(TagResource)
|
|
1868
|
+
.sc(TagResource$)
|
|
1841
1869
|
.build() {
|
|
1842
1870
|
}
|
|
1843
1871
|
|
|
@@ -1849,7 +1877,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1849
1877
|
})
|
|
1850
1878
|
.s("MagnolioAPIService_v20150201", "UntagResource", {})
|
|
1851
1879
|
.n("EFSClient", "UntagResourceCommand")
|
|
1852
|
-
.sc(UntagResource)
|
|
1880
|
+
.sc(UntagResource$)
|
|
1853
1881
|
.build() {
|
|
1854
1882
|
}
|
|
1855
1883
|
|
|
@@ -1861,7 +1889,7 @@ class UpdateFileSystemCommand extends smithyClient.Command
|
|
|
1861
1889
|
})
|
|
1862
1890
|
.s("MagnolioAPIService_v20150201", "UpdateFileSystem", {})
|
|
1863
1891
|
.n("EFSClient", "UpdateFileSystemCommand")
|
|
1864
|
-
.sc(UpdateFileSystem)
|
|
1892
|
+
.sc(UpdateFileSystem$)
|
|
1865
1893
|
.build() {
|
|
1866
1894
|
}
|
|
1867
1895
|
|
|
@@ -1873,7 +1901,7 @@ class UpdateFileSystemProtectionCommand extends smithyClient.Command
|
|
|
1873
1901
|
})
|
|
1874
1902
|
.s("MagnolioAPIService_v20150201", "UpdateFileSystemProtection", {})
|
|
1875
1903
|
.n("EFSClient", "UpdateFileSystemProtectionCommand")
|
|
1876
|
-
.sc(UpdateFileSystemProtection)
|
|
1904
|
+
.sc(UpdateFileSystemProtection$)
|
|
1877
1905
|
.build() {
|
|
1878
1906
|
}
|
|
1879
1907
|
|
|
@@ -2013,85 +2041,207 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2013
2041
|
enumerable: true,
|
|
2014
2042
|
get: function () { return smithyClient.Client; }
|
|
2015
2043
|
});
|
|
2016
|
-
exports.AccessPointAlreadyExists = AccessPointAlreadyExists
|
|
2017
|
-
exports.
|
|
2018
|
-
exports.
|
|
2019
|
-
exports.
|
|
2020
|
-
exports.
|
|
2021
|
-
exports.
|
|
2044
|
+
exports.AccessPointAlreadyExists = AccessPointAlreadyExists;
|
|
2045
|
+
exports.AccessPointAlreadyExists$ = AccessPointAlreadyExists$;
|
|
2046
|
+
exports.AccessPointDescription$ = AccessPointDescription$;
|
|
2047
|
+
exports.AccessPointLimitExceeded = AccessPointLimitExceeded;
|
|
2048
|
+
exports.AccessPointLimitExceeded$ = AccessPointLimitExceeded$;
|
|
2049
|
+
exports.AccessPointNotFound = AccessPointNotFound;
|
|
2050
|
+
exports.AccessPointNotFound$ = AccessPointNotFound$;
|
|
2051
|
+
exports.AvailabilityZonesMismatch = AvailabilityZonesMismatch;
|
|
2052
|
+
exports.AvailabilityZonesMismatch$ = AvailabilityZonesMismatch$;
|
|
2053
|
+
exports.BackupPolicy$ = BackupPolicy$;
|
|
2054
|
+
exports.BackupPolicyDescription$ = BackupPolicyDescription$;
|
|
2055
|
+
exports.BadRequest = BadRequest;
|
|
2056
|
+
exports.BadRequest$ = BadRequest$;
|
|
2057
|
+
exports.ConflictException = ConflictException;
|
|
2058
|
+
exports.ConflictException$ = ConflictException$;
|
|
2059
|
+
exports.CreateAccessPoint$ = CreateAccessPoint$;
|
|
2022
2060
|
exports.CreateAccessPointCommand = CreateAccessPointCommand;
|
|
2061
|
+
exports.CreateAccessPointRequest$ = CreateAccessPointRequest$;
|
|
2062
|
+
exports.CreateFileSystem$ = CreateFileSystem$;
|
|
2023
2063
|
exports.CreateFileSystemCommand = CreateFileSystemCommand;
|
|
2064
|
+
exports.CreateFileSystemRequest$ = CreateFileSystemRequest$;
|
|
2065
|
+
exports.CreateMountTarget$ = CreateMountTarget$;
|
|
2024
2066
|
exports.CreateMountTargetCommand = CreateMountTargetCommand;
|
|
2067
|
+
exports.CreateMountTargetRequest$ = CreateMountTargetRequest$;
|
|
2068
|
+
exports.CreateReplicationConfiguration$ = CreateReplicationConfiguration$;
|
|
2025
2069
|
exports.CreateReplicationConfigurationCommand = CreateReplicationConfigurationCommand;
|
|
2070
|
+
exports.CreateReplicationConfigurationRequest$ = CreateReplicationConfigurationRequest$;
|
|
2071
|
+
exports.CreateTags$ = CreateTags$;
|
|
2026
2072
|
exports.CreateTagsCommand = CreateTagsCommand;
|
|
2073
|
+
exports.CreateTagsRequest$ = CreateTagsRequest$;
|
|
2074
|
+
exports.CreationInfo$ = CreationInfo$;
|
|
2075
|
+
exports.DeleteAccessPoint$ = DeleteAccessPoint$;
|
|
2027
2076
|
exports.DeleteAccessPointCommand = DeleteAccessPointCommand;
|
|
2077
|
+
exports.DeleteAccessPointRequest$ = DeleteAccessPointRequest$;
|
|
2078
|
+
exports.DeleteFileSystem$ = DeleteFileSystem$;
|
|
2028
2079
|
exports.DeleteFileSystemCommand = DeleteFileSystemCommand;
|
|
2080
|
+
exports.DeleteFileSystemPolicy$ = DeleteFileSystemPolicy$;
|
|
2029
2081
|
exports.DeleteFileSystemPolicyCommand = DeleteFileSystemPolicyCommand;
|
|
2082
|
+
exports.DeleteFileSystemPolicyRequest$ = DeleteFileSystemPolicyRequest$;
|
|
2083
|
+
exports.DeleteFileSystemRequest$ = DeleteFileSystemRequest$;
|
|
2084
|
+
exports.DeleteMountTarget$ = DeleteMountTarget$;
|
|
2030
2085
|
exports.DeleteMountTargetCommand = DeleteMountTargetCommand;
|
|
2086
|
+
exports.DeleteMountTargetRequest$ = DeleteMountTargetRequest$;
|
|
2087
|
+
exports.DeleteReplicationConfiguration$ = DeleteReplicationConfiguration$;
|
|
2031
2088
|
exports.DeleteReplicationConfigurationCommand = DeleteReplicationConfigurationCommand;
|
|
2089
|
+
exports.DeleteReplicationConfigurationRequest$ = DeleteReplicationConfigurationRequest$;
|
|
2090
|
+
exports.DeleteTags$ = DeleteTags$;
|
|
2032
2091
|
exports.DeleteTagsCommand = DeleteTagsCommand;
|
|
2092
|
+
exports.DeleteTagsRequest$ = DeleteTagsRequest$;
|
|
2033
2093
|
exports.DeletionMode = DeletionMode;
|
|
2034
|
-
exports.DependencyTimeout = DependencyTimeout
|
|
2094
|
+
exports.DependencyTimeout = DependencyTimeout;
|
|
2095
|
+
exports.DependencyTimeout$ = DependencyTimeout$;
|
|
2096
|
+
exports.DescribeAccessPoints$ = DescribeAccessPoints$;
|
|
2035
2097
|
exports.DescribeAccessPointsCommand = DescribeAccessPointsCommand;
|
|
2098
|
+
exports.DescribeAccessPointsRequest$ = DescribeAccessPointsRequest$;
|
|
2099
|
+
exports.DescribeAccessPointsResponse$ = DescribeAccessPointsResponse$;
|
|
2100
|
+
exports.DescribeAccountPreferences$ = DescribeAccountPreferences$;
|
|
2036
2101
|
exports.DescribeAccountPreferencesCommand = DescribeAccountPreferencesCommand;
|
|
2102
|
+
exports.DescribeAccountPreferencesRequest$ = DescribeAccountPreferencesRequest$;
|
|
2103
|
+
exports.DescribeAccountPreferencesResponse$ = DescribeAccountPreferencesResponse$;
|
|
2104
|
+
exports.DescribeBackupPolicy$ = DescribeBackupPolicy$;
|
|
2037
2105
|
exports.DescribeBackupPolicyCommand = DescribeBackupPolicyCommand;
|
|
2106
|
+
exports.DescribeBackupPolicyRequest$ = DescribeBackupPolicyRequest$;
|
|
2107
|
+
exports.DescribeFileSystemPolicy$ = DescribeFileSystemPolicy$;
|
|
2038
2108
|
exports.DescribeFileSystemPolicyCommand = DescribeFileSystemPolicyCommand;
|
|
2109
|
+
exports.DescribeFileSystemPolicyRequest$ = DescribeFileSystemPolicyRequest$;
|
|
2110
|
+
exports.DescribeFileSystems$ = DescribeFileSystems$;
|
|
2039
2111
|
exports.DescribeFileSystemsCommand = DescribeFileSystemsCommand;
|
|
2112
|
+
exports.DescribeFileSystemsRequest$ = DescribeFileSystemsRequest$;
|
|
2113
|
+
exports.DescribeFileSystemsResponse$ = DescribeFileSystemsResponse$;
|
|
2114
|
+
exports.DescribeLifecycleConfiguration$ = DescribeLifecycleConfiguration$;
|
|
2040
2115
|
exports.DescribeLifecycleConfigurationCommand = DescribeLifecycleConfigurationCommand;
|
|
2116
|
+
exports.DescribeLifecycleConfigurationRequest$ = DescribeLifecycleConfigurationRequest$;
|
|
2117
|
+
exports.DescribeMountTargetSecurityGroups$ = DescribeMountTargetSecurityGroups$;
|
|
2041
2118
|
exports.DescribeMountTargetSecurityGroupsCommand = DescribeMountTargetSecurityGroupsCommand;
|
|
2119
|
+
exports.DescribeMountTargetSecurityGroupsRequest$ = DescribeMountTargetSecurityGroupsRequest$;
|
|
2120
|
+
exports.DescribeMountTargetSecurityGroupsResponse$ = DescribeMountTargetSecurityGroupsResponse$;
|
|
2121
|
+
exports.DescribeMountTargets$ = DescribeMountTargets$;
|
|
2042
2122
|
exports.DescribeMountTargetsCommand = DescribeMountTargetsCommand;
|
|
2123
|
+
exports.DescribeMountTargetsRequest$ = DescribeMountTargetsRequest$;
|
|
2124
|
+
exports.DescribeMountTargetsResponse$ = DescribeMountTargetsResponse$;
|
|
2125
|
+
exports.DescribeReplicationConfigurations$ = DescribeReplicationConfigurations$;
|
|
2043
2126
|
exports.DescribeReplicationConfigurationsCommand = DescribeReplicationConfigurationsCommand;
|
|
2127
|
+
exports.DescribeReplicationConfigurationsRequest$ = DescribeReplicationConfigurationsRequest$;
|
|
2128
|
+
exports.DescribeReplicationConfigurationsResponse$ = DescribeReplicationConfigurationsResponse$;
|
|
2129
|
+
exports.DescribeTags$ = DescribeTags$;
|
|
2044
2130
|
exports.DescribeTagsCommand = DescribeTagsCommand;
|
|
2131
|
+
exports.DescribeTagsRequest$ = DescribeTagsRequest$;
|
|
2132
|
+
exports.DescribeTagsResponse$ = DescribeTagsResponse$;
|
|
2133
|
+
exports.Destination$ = Destination$;
|
|
2134
|
+
exports.DestinationToCreate$ = DestinationToCreate$;
|
|
2045
2135
|
exports.EFS = EFS;
|
|
2046
2136
|
exports.EFSClient = EFSClient;
|
|
2047
|
-
exports.EFSServiceException = EFSServiceException
|
|
2048
|
-
exports.
|
|
2049
|
-
exports.
|
|
2050
|
-
exports.
|
|
2051
|
-
exports.
|
|
2052
|
-
exports.
|
|
2053
|
-
exports.
|
|
2054
|
-
exports.
|
|
2055
|
-
exports.
|
|
2056
|
-
exports.
|
|
2057
|
-
exports.
|
|
2137
|
+
exports.EFSServiceException = EFSServiceException;
|
|
2138
|
+
exports.EFSServiceException$ = EFSServiceException$;
|
|
2139
|
+
exports.FileSystemAlreadyExists = FileSystemAlreadyExists;
|
|
2140
|
+
exports.FileSystemAlreadyExists$ = FileSystemAlreadyExists$;
|
|
2141
|
+
exports.FileSystemDescription$ = FileSystemDescription$;
|
|
2142
|
+
exports.FileSystemInUse = FileSystemInUse;
|
|
2143
|
+
exports.FileSystemInUse$ = FileSystemInUse$;
|
|
2144
|
+
exports.FileSystemLimitExceeded = FileSystemLimitExceeded;
|
|
2145
|
+
exports.FileSystemLimitExceeded$ = FileSystemLimitExceeded$;
|
|
2146
|
+
exports.FileSystemNotFound = FileSystemNotFound;
|
|
2147
|
+
exports.FileSystemNotFound$ = FileSystemNotFound$;
|
|
2148
|
+
exports.FileSystemPolicyDescription$ = FileSystemPolicyDescription$;
|
|
2149
|
+
exports.FileSystemProtectionDescription$ = FileSystemProtectionDescription$;
|
|
2150
|
+
exports.FileSystemSize$ = FileSystemSize$;
|
|
2151
|
+
exports.IncorrectFileSystemLifeCycleState = IncorrectFileSystemLifeCycleState;
|
|
2152
|
+
exports.IncorrectFileSystemLifeCycleState$ = IncorrectFileSystemLifeCycleState$;
|
|
2153
|
+
exports.IncorrectMountTargetState = IncorrectMountTargetState;
|
|
2154
|
+
exports.IncorrectMountTargetState$ = IncorrectMountTargetState$;
|
|
2155
|
+
exports.InsufficientThroughputCapacity = InsufficientThroughputCapacity;
|
|
2156
|
+
exports.InsufficientThroughputCapacity$ = InsufficientThroughputCapacity$;
|
|
2157
|
+
exports.InternalServerError = InternalServerError;
|
|
2158
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
2159
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
2160
|
+
exports.InvalidPolicyException$ = InvalidPolicyException$;
|
|
2161
|
+
exports.IpAddressInUse = IpAddressInUse;
|
|
2162
|
+
exports.IpAddressInUse$ = IpAddressInUse$;
|
|
2058
2163
|
exports.IpAddressType = IpAddressType;
|
|
2059
2164
|
exports.LifeCycleState = LifeCycleState;
|
|
2165
|
+
exports.LifecycleConfigurationDescription$ = LifecycleConfigurationDescription$;
|
|
2166
|
+
exports.LifecyclePolicy$ = LifecyclePolicy$;
|
|
2167
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2060
2168
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2169
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2170
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2171
|
+
exports.ModifyMountTargetSecurityGroups$ = ModifyMountTargetSecurityGroups$;
|
|
2061
2172
|
exports.ModifyMountTargetSecurityGroupsCommand = ModifyMountTargetSecurityGroupsCommand;
|
|
2062
|
-
exports.
|
|
2063
|
-
exports.
|
|
2064
|
-
exports.
|
|
2065
|
-
exports.
|
|
2173
|
+
exports.ModifyMountTargetSecurityGroupsRequest$ = ModifyMountTargetSecurityGroupsRequest$;
|
|
2174
|
+
exports.MountTargetConflict = MountTargetConflict;
|
|
2175
|
+
exports.MountTargetConflict$ = MountTargetConflict$;
|
|
2176
|
+
exports.MountTargetDescription$ = MountTargetDescription$;
|
|
2177
|
+
exports.MountTargetNotFound = MountTargetNotFound;
|
|
2178
|
+
exports.MountTargetNotFound$ = MountTargetNotFound$;
|
|
2179
|
+
exports.NetworkInterfaceLimitExceeded = NetworkInterfaceLimitExceeded;
|
|
2180
|
+
exports.NetworkInterfaceLimitExceeded$ = NetworkInterfaceLimitExceeded$;
|
|
2181
|
+
exports.NoFreeAddressesInSubnet = NoFreeAddressesInSubnet;
|
|
2182
|
+
exports.NoFreeAddressesInSubnet$ = NoFreeAddressesInSubnet$;
|
|
2066
2183
|
exports.PerformanceMode = PerformanceMode;
|
|
2067
|
-
exports.PolicyNotFound = PolicyNotFound
|
|
2184
|
+
exports.PolicyNotFound = PolicyNotFound;
|
|
2185
|
+
exports.PolicyNotFound$ = PolicyNotFound$;
|
|
2186
|
+
exports.PosixUser$ = PosixUser$;
|
|
2187
|
+
exports.PutAccountPreferences$ = PutAccountPreferences$;
|
|
2068
2188
|
exports.PutAccountPreferencesCommand = PutAccountPreferencesCommand;
|
|
2189
|
+
exports.PutAccountPreferencesRequest$ = PutAccountPreferencesRequest$;
|
|
2190
|
+
exports.PutAccountPreferencesResponse$ = PutAccountPreferencesResponse$;
|
|
2191
|
+
exports.PutBackupPolicy$ = PutBackupPolicy$;
|
|
2069
2192
|
exports.PutBackupPolicyCommand = PutBackupPolicyCommand;
|
|
2193
|
+
exports.PutBackupPolicyRequest$ = PutBackupPolicyRequest$;
|
|
2194
|
+
exports.PutFileSystemPolicy$ = PutFileSystemPolicy$;
|
|
2070
2195
|
exports.PutFileSystemPolicyCommand = PutFileSystemPolicyCommand;
|
|
2196
|
+
exports.PutFileSystemPolicyRequest$ = PutFileSystemPolicyRequest$;
|
|
2197
|
+
exports.PutLifecycleConfiguration$ = PutLifecycleConfiguration$;
|
|
2071
2198
|
exports.PutLifecycleConfigurationCommand = PutLifecycleConfigurationCommand;
|
|
2072
|
-
exports.
|
|
2073
|
-
exports.
|
|
2199
|
+
exports.PutLifecycleConfigurationRequest$ = PutLifecycleConfigurationRequest$;
|
|
2200
|
+
exports.ReplicationAlreadyExists = ReplicationAlreadyExists;
|
|
2201
|
+
exports.ReplicationAlreadyExists$ = ReplicationAlreadyExists$;
|
|
2202
|
+
exports.ReplicationConfigurationDescription$ = ReplicationConfigurationDescription$;
|
|
2203
|
+
exports.ReplicationNotFound = ReplicationNotFound;
|
|
2204
|
+
exports.ReplicationNotFound$ = ReplicationNotFound$;
|
|
2074
2205
|
exports.ReplicationOverwriteProtection = ReplicationOverwriteProtection;
|
|
2075
2206
|
exports.ReplicationStatus = ReplicationStatus;
|
|
2076
2207
|
exports.Resource = Resource;
|
|
2208
|
+
exports.ResourceIdPreference$ = ResourceIdPreference$;
|
|
2077
2209
|
exports.ResourceIdType = ResourceIdType;
|
|
2078
|
-
exports.
|
|
2079
|
-
exports.
|
|
2210
|
+
exports.RootDirectory$ = RootDirectory$;
|
|
2211
|
+
exports.SecurityGroupLimitExceeded = SecurityGroupLimitExceeded;
|
|
2212
|
+
exports.SecurityGroupLimitExceeded$ = SecurityGroupLimitExceeded$;
|
|
2213
|
+
exports.SecurityGroupNotFound = SecurityGroupNotFound;
|
|
2214
|
+
exports.SecurityGroupNotFound$ = SecurityGroupNotFound$;
|
|
2080
2215
|
exports.Status = Status;
|
|
2081
|
-
exports.SubnetNotFound = SubnetNotFound
|
|
2216
|
+
exports.SubnetNotFound = SubnetNotFound;
|
|
2217
|
+
exports.SubnetNotFound$ = SubnetNotFound$;
|
|
2218
|
+
exports.Tag$ = Tag$;
|
|
2219
|
+
exports.TagResource$ = TagResource$;
|
|
2082
2220
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2083
|
-
exports.
|
|
2084
|
-
exports.
|
|
2221
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2222
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2223
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2224
|
+
exports.ThroughputLimitExceeded = ThroughputLimitExceeded;
|
|
2225
|
+
exports.ThroughputLimitExceeded$ = ThroughputLimitExceeded$;
|
|
2085
2226
|
exports.ThroughputMode = ThroughputMode;
|
|
2086
|
-
exports.TooManyRequests = TooManyRequests
|
|
2227
|
+
exports.TooManyRequests = TooManyRequests;
|
|
2228
|
+
exports.TooManyRequests$ = TooManyRequests$;
|
|
2087
2229
|
exports.TransitionToArchiveRules = TransitionToArchiveRules;
|
|
2088
2230
|
exports.TransitionToIARules = TransitionToIARules;
|
|
2089
2231
|
exports.TransitionToPrimaryStorageClassRules = TransitionToPrimaryStorageClassRules;
|
|
2090
|
-
exports.UnsupportedAvailabilityZone = UnsupportedAvailabilityZone
|
|
2232
|
+
exports.UnsupportedAvailabilityZone = UnsupportedAvailabilityZone;
|
|
2233
|
+
exports.UnsupportedAvailabilityZone$ = UnsupportedAvailabilityZone$;
|
|
2234
|
+
exports.UntagResource$ = UntagResource$;
|
|
2091
2235
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2236
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2237
|
+
exports.UpdateFileSystem$ = UpdateFileSystem$;
|
|
2092
2238
|
exports.UpdateFileSystemCommand = UpdateFileSystemCommand;
|
|
2239
|
+
exports.UpdateFileSystemProtection$ = UpdateFileSystemProtection$;
|
|
2093
2240
|
exports.UpdateFileSystemProtectionCommand = UpdateFileSystemProtectionCommand;
|
|
2094
|
-
exports.
|
|
2241
|
+
exports.UpdateFileSystemProtectionRequest$ = UpdateFileSystemProtectionRequest$;
|
|
2242
|
+
exports.UpdateFileSystemRequest$ = UpdateFileSystemRequest$;
|
|
2243
|
+
exports.ValidationException = ValidationException;
|
|
2244
|
+
exports.ValidationException$ = ValidationException$;
|
|
2095
2245
|
exports.paginateDescribeAccessPoints = paginateDescribeAccessPoints;
|
|
2096
2246
|
exports.paginateDescribeFileSystems = paginateDescribeFileSystems;
|
|
2097
2247
|
exports.paginateDescribeMountTargets = paginateDescribeMountTargets;
|