@aws-sdk/client-fsx 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FSxServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +481 -4
- package/dist-cjs/protocols/Aws_json1_1.js +487 -1721
- package/dist-es/index.js +1 -0
- package/dist-es/models/FSxServiceException.js +12 -0
- package/dist-es/models/models_0.js +444 -1
- package/dist-es/protocols/Aws_json1_1.js +978 -1804
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FSxServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +233 -100
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FSxServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +167 -100
- package/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var FSxServiceException = (function (_super) {
|
|
4
|
+
__extends(FSxServiceException, _super);
|
|
5
|
+
function FSxServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, FSxServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return FSxServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { FSxServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { FSxServiceException as __BaseException } from "./FSxServiceException";
|
|
3
4
|
export var ActiveDirectoryBackupAttributes;
|
|
4
5
|
(function (ActiveDirectoryBackupAttributes) {
|
|
5
6
|
ActiveDirectoryBackupAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -11,6 +12,21 @@ export var ActiveDirectoryErrorType;
|
|
|
11
12
|
ActiveDirectoryErrorType["INVALID_DOMAIN_STAGE"] = "INVALID_DOMAIN_STAGE";
|
|
12
13
|
ActiveDirectoryErrorType["WRONG_VPC"] = "WRONG_VPC";
|
|
13
14
|
})(ActiveDirectoryErrorType || (ActiveDirectoryErrorType = {}));
|
|
15
|
+
var ActiveDirectoryError = (function (_super) {
|
|
16
|
+
__extends(ActiveDirectoryError, _super);
|
|
17
|
+
function ActiveDirectoryError(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "ActiveDirectoryError", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "ActiveDirectoryError";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, ActiveDirectoryError.prototype);
|
|
22
|
+
_this.ActiveDirectoryId = opts.ActiveDirectoryId;
|
|
23
|
+
_this.Type = opts.Type;
|
|
24
|
+
_this.Message = opts.Message;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
return ActiveDirectoryError;
|
|
28
|
+
}(__BaseException));
|
|
29
|
+
export { ActiveDirectoryError };
|
|
14
30
|
export var AdministrativeActionType;
|
|
15
31
|
(function (AdministrativeActionType) {
|
|
16
32
|
AdministrativeActionType["FILE_SYSTEM_ALIAS_ASSOCIATION"] = "FILE_SYSTEM_ALIAS_ASSOCIATION";
|
|
@@ -295,6 +311,45 @@ export var AssociateFileSystemAliasesResponse;
|
|
|
295
311
|
(function (AssociateFileSystemAliasesResponse) {
|
|
296
312
|
AssociateFileSystemAliasesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
313
|
})(AssociateFileSystemAliasesResponse || (AssociateFileSystemAliasesResponse = {}));
|
|
314
|
+
var BadRequest = (function (_super) {
|
|
315
|
+
__extends(BadRequest, _super);
|
|
316
|
+
function BadRequest(opts) {
|
|
317
|
+
var _this = _super.call(this, __assign({ name: "BadRequest", $fault: "client" }, opts)) || this;
|
|
318
|
+
_this.name = "BadRequest";
|
|
319
|
+
_this.$fault = "client";
|
|
320
|
+
Object.setPrototypeOf(_this, BadRequest.prototype);
|
|
321
|
+
_this.Message = opts.Message;
|
|
322
|
+
return _this;
|
|
323
|
+
}
|
|
324
|
+
return BadRequest;
|
|
325
|
+
}(__BaseException));
|
|
326
|
+
export { BadRequest };
|
|
327
|
+
var FileSystemNotFound = (function (_super) {
|
|
328
|
+
__extends(FileSystemNotFound, _super);
|
|
329
|
+
function FileSystemNotFound(opts) {
|
|
330
|
+
var _this = _super.call(this, __assign({ name: "FileSystemNotFound", $fault: "client" }, opts)) || this;
|
|
331
|
+
_this.name = "FileSystemNotFound";
|
|
332
|
+
_this.$fault = "client";
|
|
333
|
+
Object.setPrototypeOf(_this, FileSystemNotFound.prototype);
|
|
334
|
+
_this.Message = opts.Message;
|
|
335
|
+
return _this;
|
|
336
|
+
}
|
|
337
|
+
return FileSystemNotFound;
|
|
338
|
+
}(__BaseException));
|
|
339
|
+
export { FileSystemNotFound };
|
|
340
|
+
var InternalServerError = (function (_super) {
|
|
341
|
+
__extends(InternalServerError, _super);
|
|
342
|
+
function InternalServerError(opts) {
|
|
343
|
+
var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
|
|
344
|
+
_this.name = "InternalServerError";
|
|
345
|
+
_this.$fault = "server";
|
|
346
|
+
Object.setPrototypeOf(_this, InternalServerError.prototype);
|
|
347
|
+
_this.Message = opts.Message;
|
|
348
|
+
return _this;
|
|
349
|
+
}
|
|
350
|
+
return InternalServerError;
|
|
351
|
+
}(__BaseException));
|
|
352
|
+
export { InternalServerError };
|
|
298
353
|
export var EventType;
|
|
299
354
|
(function (EventType) {
|
|
300
355
|
EventType["CHANGED"] = "CHANGED";
|
|
@@ -326,6 +381,58 @@ export var CancelDataRepositoryTaskResponse;
|
|
|
326
381
|
(function (CancelDataRepositoryTaskResponse) {
|
|
327
382
|
CancelDataRepositoryTaskResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
383
|
})(CancelDataRepositoryTaskResponse || (CancelDataRepositoryTaskResponse = {}));
|
|
384
|
+
var DataRepositoryTaskEnded = (function (_super) {
|
|
385
|
+
__extends(DataRepositoryTaskEnded, _super);
|
|
386
|
+
function DataRepositoryTaskEnded(opts) {
|
|
387
|
+
var _this = _super.call(this, __assign({ name: "DataRepositoryTaskEnded", $fault: "client" }, opts)) || this;
|
|
388
|
+
_this.name = "DataRepositoryTaskEnded";
|
|
389
|
+
_this.$fault = "client";
|
|
390
|
+
Object.setPrototypeOf(_this, DataRepositoryTaskEnded.prototype);
|
|
391
|
+
_this.Message = opts.Message;
|
|
392
|
+
return _this;
|
|
393
|
+
}
|
|
394
|
+
return DataRepositoryTaskEnded;
|
|
395
|
+
}(__BaseException));
|
|
396
|
+
export { DataRepositoryTaskEnded };
|
|
397
|
+
var DataRepositoryTaskNotFound = (function (_super) {
|
|
398
|
+
__extends(DataRepositoryTaskNotFound, _super);
|
|
399
|
+
function DataRepositoryTaskNotFound(opts) {
|
|
400
|
+
var _this = _super.call(this, __assign({ name: "DataRepositoryTaskNotFound", $fault: "client" }, opts)) || this;
|
|
401
|
+
_this.name = "DataRepositoryTaskNotFound";
|
|
402
|
+
_this.$fault = "client";
|
|
403
|
+
Object.setPrototypeOf(_this, DataRepositoryTaskNotFound.prototype);
|
|
404
|
+
_this.Message = opts.Message;
|
|
405
|
+
return _this;
|
|
406
|
+
}
|
|
407
|
+
return DataRepositoryTaskNotFound;
|
|
408
|
+
}(__BaseException));
|
|
409
|
+
export { DataRepositoryTaskNotFound };
|
|
410
|
+
var UnsupportedOperation = (function (_super) {
|
|
411
|
+
__extends(UnsupportedOperation, _super);
|
|
412
|
+
function UnsupportedOperation(opts) {
|
|
413
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperation", $fault: "client" }, opts)) || this;
|
|
414
|
+
_this.name = "UnsupportedOperation";
|
|
415
|
+
_this.$fault = "client";
|
|
416
|
+
Object.setPrototypeOf(_this, UnsupportedOperation.prototype);
|
|
417
|
+
_this.Message = opts.Message;
|
|
418
|
+
return _this;
|
|
419
|
+
}
|
|
420
|
+
return UnsupportedOperation;
|
|
421
|
+
}(__BaseException));
|
|
422
|
+
export { UnsupportedOperation };
|
|
423
|
+
var BackupNotFound = (function (_super) {
|
|
424
|
+
__extends(BackupNotFound, _super);
|
|
425
|
+
function BackupNotFound(opts) {
|
|
426
|
+
var _this = _super.call(this, __assign({ name: "BackupNotFound", $fault: "client" }, opts)) || this;
|
|
427
|
+
_this.name = "BackupNotFound";
|
|
428
|
+
_this.$fault = "client";
|
|
429
|
+
Object.setPrototypeOf(_this, BackupNotFound.prototype);
|
|
430
|
+
_this.Message = opts.Message;
|
|
431
|
+
return _this;
|
|
432
|
+
}
|
|
433
|
+
return BackupNotFound;
|
|
434
|
+
}(__BaseException));
|
|
435
|
+
export { BackupNotFound };
|
|
329
436
|
export var CopyBackupRequest;
|
|
330
437
|
(function (CopyBackupRequest) {
|
|
331
438
|
CopyBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -355,6 +462,72 @@ export var BackupType;
|
|
|
355
462
|
BackupType["AWS_BACKUP"] = "AWS_BACKUP";
|
|
356
463
|
BackupType["USER_INITIATED"] = "USER_INITIATED";
|
|
357
464
|
})(BackupType || (BackupType = {}));
|
|
465
|
+
var IncompatibleParameterError = (function (_super) {
|
|
466
|
+
__extends(IncompatibleParameterError, _super);
|
|
467
|
+
function IncompatibleParameterError(opts) {
|
|
468
|
+
var _this = _super.call(this, __assign({ name: "IncompatibleParameterError", $fault: "client" }, opts)) || this;
|
|
469
|
+
_this.name = "IncompatibleParameterError";
|
|
470
|
+
_this.$fault = "client";
|
|
471
|
+
Object.setPrototypeOf(_this, IncompatibleParameterError.prototype);
|
|
472
|
+
_this.Parameter = opts.Parameter;
|
|
473
|
+
_this.Message = opts.Message;
|
|
474
|
+
return _this;
|
|
475
|
+
}
|
|
476
|
+
return IncompatibleParameterError;
|
|
477
|
+
}(__BaseException));
|
|
478
|
+
export { IncompatibleParameterError };
|
|
479
|
+
var IncompatibleRegionForMultiAZ = (function (_super) {
|
|
480
|
+
__extends(IncompatibleRegionForMultiAZ, _super);
|
|
481
|
+
function IncompatibleRegionForMultiAZ(opts) {
|
|
482
|
+
var _this = _super.call(this, __assign({ name: "IncompatibleRegionForMultiAZ", $fault: "client" }, opts)) || this;
|
|
483
|
+
_this.name = "IncompatibleRegionForMultiAZ";
|
|
484
|
+
_this.$fault = "client";
|
|
485
|
+
Object.setPrototypeOf(_this, IncompatibleRegionForMultiAZ.prototype);
|
|
486
|
+
_this.Message = opts.Message;
|
|
487
|
+
return _this;
|
|
488
|
+
}
|
|
489
|
+
return IncompatibleRegionForMultiAZ;
|
|
490
|
+
}(__BaseException));
|
|
491
|
+
export { IncompatibleRegionForMultiAZ };
|
|
492
|
+
var InvalidDestinationKmsKey = (function (_super) {
|
|
493
|
+
__extends(InvalidDestinationKmsKey, _super);
|
|
494
|
+
function InvalidDestinationKmsKey(opts) {
|
|
495
|
+
var _this = _super.call(this, __assign({ name: "InvalidDestinationKmsKey", $fault: "client" }, opts)) || this;
|
|
496
|
+
_this.name = "InvalidDestinationKmsKey";
|
|
497
|
+
_this.$fault = "client";
|
|
498
|
+
Object.setPrototypeOf(_this, InvalidDestinationKmsKey.prototype);
|
|
499
|
+
_this.Message = opts.Message;
|
|
500
|
+
return _this;
|
|
501
|
+
}
|
|
502
|
+
return InvalidDestinationKmsKey;
|
|
503
|
+
}(__BaseException));
|
|
504
|
+
export { InvalidDestinationKmsKey };
|
|
505
|
+
var InvalidRegion = (function (_super) {
|
|
506
|
+
__extends(InvalidRegion, _super);
|
|
507
|
+
function InvalidRegion(opts) {
|
|
508
|
+
var _this = _super.call(this, __assign({ name: "InvalidRegion", $fault: "client" }, opts)) || this;
|
|
509
|
+
_this.name = "InvalidRegion";
|
|
510
|
+
_this.$fault = "client";
|
|
511
|
+
Object.setPrototypeOf(_this, InvalidRegion.prototype);
|
|
512
|
+
_this.Message = opts.Message;
|
|
513
|
+
return _this;
|
|
514
|
+
}
|
|
515
|
+
return InvalidRegion;
|
|
516
|
+
}(__BaseException));
|
|
517
|
+
export { InvalidRegion };
|
|
518
|
+
var InvalidSourceKmsKey = (function (_super) {
|
|
519
|
+
__extends(InvalidSourceKmsKey, _super);
|
|
520
|
+
function InvalidSourceKmsKey(opts) {
|
|
521
|
+
var _this = _super.call(this, __assign({ name: "InvalidSourceKmsKey", $fault: "client" }, opts)) || this;
|
|
522
|
+
_this.name = "InvalidSourceKmsKey";
|
|
523
|
+
_this.$fault = "client";
|
|
524
|
+
Object.setPrototypeOf(_this, InvalidSourceKmsKey.prototype);
|
|
525
|
+
_this.Message = opts.Message;
|
|
526
|
+
return _this;
|
|
527
|
+
}
|
|
528
|
+
return InvalidSourceKmsKey;
|
|
529
|
+
}(__BaseException));
|
|
530
|
+
export { InvalidSourceKmsKey };
|
|
358
531
|
export var ServiceLimit;
|
|
359
532
|
(function (ServiceLimit) {
|
|
360
533
|
ServiceLimit["FILE_SYSTEM_COUNT"] = "FILE_SYSTEM_COUNT";
|
|
@@ -367,10 +540,64 @@ export var ServiceLimit;
|
|
|
367
540
|
ServiceLimit["TOTAL_USER_TAGS"] = "TOTAL_USER_TAGS";
|
|
368
541
|
ServiceLimit["VOLUMES_PER_FILE_SYSTEM"] = "VOLUMES_PER_FILE_SYSTEM";
|
|
369
542
|
})(ServiceLimit || (ServiceLimit = {}));
|
|
543
|
+
var ServiceLimitExceeded = (function (_super) {
|
|
544
|
+
__extends(ServiceLimitExceeded, _super);
|
|
545
|
+
function ServiceLimitExceeded(opts) {
|
|
546
|
+
var _this = _super.call(this, __assign({ name: "ServiceLimitExceeded", $fault: "client" }, opts)) || this;
|
|
547
|
+
_this.name = "ServiceLimitExceeded";
|
|
548
|
+
_this.$fault = "client";
|
|
549
|
+
Object.setPrototypeOf(_this, ServiceLimitExceeded.prototype);
|
|
550
|
+
_this.Limit = opts.Limit;
|
|
551
|
+
_this.Message = opts.Message;
|
|
552
|
+
return _this;
|
|
553
|
+
}
|
|
554
|
+
return ServiceLimitExceeded;
|
|
555
|
+
}(__BaseException));
|
|
556
|
+
export { ServiceLimitExceeded };
|
|
557
|
+
var SourceBackupUnavailable = (function (_super) {
|
|
558
|
+
__extends(SourceBackupUnavailable, _super);
|
|
559
|
+
function SourceBackupUnavailable(opts) {
|
|
560
|
+
var _this = _super.call(this, __assign({ name: "SourceBackupUnavailable", $fault: "client" }, opts)) || this;
|
|
561
|
+
_this.name = "SourceBackupUnavailable";
|
|
562
|
+
_this.$fault = "client";
|
|
563
|
+
Object.setPrototypeOf(_this, SourceBackupUnavailable.prototype);
|
|
564
|
+
_this.Message = opts.Message;
|
|
565
|
+
_this.BackupId = opts.BackupId;
|
|
566
|
+
return _this;
|
|
567
|
+
}
|
|
568
|
+
return SourceBackupUnavailable;
|
|
569
|
+
}(__BaseException));
|
|
570
|
+
export { SourceBackupUnavailable };
|
|
571
|
+
var BackupInProgress = (function (_super) {
|
|
572
|
+
__extends(BackupInProgress, _super);
|
|
573
|
+
function BackupInProgress(opts) {
|
|
574
|
+
var _this = _super.call(this, __assign({ name: "BackupInProgress", $fault: "client" }, opts)) || this;
|
|
575
|
+
_this.name = "BackupInProgress";
|
|
576
|
+
_this.$fault = "client";
|
|
577
|
+
Object.setPrototypeOf(_this, BackupInProgress.prototype);
|
|
578
|
+
_this.Message = opts.Message;
|
|
579
|
+
return _this;
|
|
580
|
+
}
|
|
581
|
+
return BackupInProgress;
|
|
582
|
+
}(__BaseException));
|
|
583
|
+
export { BackupInProgress };
|
|
370
584
|
export var CreateBackupRequest;
|
|
371
585
|
(function (CreateBackupRequest) {
|
|
372
586
|
CreateBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
587
|
})(CreateBackupRequest || (CreateBackupRequest = {}));
|
|
588
|
+
var VolumeNotFound = (function (_super) {
|
|
589
|
+
__extends(VolumeNotFound, _super);
|
|
590
|
+
function VolumeNotFound(opts) {
|
|
591
|
+
var _this = _super.call(this, __assign({ name: "VolumeNotFound", $fault: "client" }, opts)) || this;
|
|
592
|
+
_this.name = "VolumeNotFound";
|
|
593
|
+
_this.$fault = "client";
|
|
594
|
+
Object.setPrototypeOf(_this, VolumeNotFound.prototype);
|
|
595
|
+
_this.Message = opts.Message;
|
|
596
|
+
return _this;
|
|
597
|
+
}
|
|
598
|
+
return VolumeNotFound;
|
|
599
|
+
}(__BaseException));
|
|
600
|
+
export { VolumeNotFound };
|
|
374
601
|
export var S3DataRepositoryConfiguration;
|
|
375
602
|
(function (S3DataRepositoryConfiguration) {
|
|
376
603
|
S3DataRepositoryConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -424,6 +651,19 @@ export var CreateDataRepositoryTaskResponse;
|
|
|
424
651
|
(function (CreateDataRepositoryTaskResponse) {
|
|
425
652
|
CreateDataRepositoryTaskResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
653
|
})(CreateDataRepositoryTaskResponse || (CreateDataRepositoryTaskResponse = {}));
|
|
654
|
+
var DataRepositoryTaskExecuting = (function (_super) {
|
|
655
|
+
__extends(DataRepositoryTaskExecuting, _super);
|
|
656
|
+
function DataRepositoryTaskExecuting(opts) {
|
|
657
|
+
var _this = _super.call(this, __assign({ name: "DataRepositoryTaskExecuting", $fault: "client" }, opts)) || this;
|
|
658
|
+
_this.name = "DataRepositoryTaskExecuting";
|
|
659
|
+
_this.$fault = "client";
|
|
660
|
+
Object.setPrototypeOf(_this, DataRepositoryTaskExecuting.prototype);
|
|
661
|
+
_this.Message = opts.Message;
|
|
662
|
+
return _this;
|
|
663
|
+
}
|
|
664
|
+
return DataRepositoryTaskExecuting;
|
|
665
|
+
}(__BaseException));
|
|
666
|
+
export { DataRepositoryTaskExecuting };
|
|
427
667
|
export var LustreLogCreateConfiguration;
|
|
428
668
|
(function (LustreLogCreateConfiguration) {
|
|
429
669
|
LustreLogCreateConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -466,6 +706,74 @@ export var CreateFileSystemRequest;
|
|
|
466
706
|
OntapConfiguration: CreateFileSystemOntapConfiguration.filterSensitiveLog(obj.OntapConfiguration),
|
|
467
707
|
}))); };
|
|
468
708
|
})(CreateFileSystemRequest || (CreateFileSystemRequest = {}));
|
|
709
|
+
var InvalidExportPath = (function (_super) {
|
|
710
|
+
__extends(InvalidExportPath, _super);
|
|
711
|
+
function InvalidExportPath(opts) {
|
|
712
|
+
var _this = _super.call(this, __assign({ name: "InvalidExportPath", $fault: "client" }, opts)) || this;
|
|
713
|
+
_this.name = "InvalidExportPath";
|
|
714
|
+
_this.$fault = "client";
|
|
715
|
+
Object.setPrototypeOf(_this, InvalidExportPath.prototype);
|
|
716
|
+
_this.Message = opts.Message;
|
|
717
|
+
return _this;
|
|
718
|
+
}
|
|
719
|
+
return InvalidExportPath;
|
|
720
|
+
}(__BaseException));
|
|
721
|
+
export { InvalidExportPath };
|
|
722
|
+
var InvalidImportPath = (function (_super) {
|
|
723
|
+
__extends(InvalidImportPath, _super);
|
|
724
|
+
function InvalidImportPath(opts) {
|
|
725
|
+
var _this = _super.call(this, __assign({ name: "InvalidImportPath", $fault: "client" }, opts)) || this;
|
|
726
|
+
_this.name = "InvalidImportPath";
|
|
727
|
+
_this.$fault = "client";
|
|
728
|
+
Object.setPrototypeOf(_this, InvalidImportPath.prototype);
|
|
729
|
+
_this.Message = opts.Message;
|
|
730
|
+
return _this;
|
|
731
|
+
}
|
|
732
|
+
return InvalidImportPath;
|
|
733
|
+
}(__BaseException));
|
|
734
|
+
export { InvalidImportPath };
|
|
735
|
+
var InvalidNetworkSettings = (function (_super) {
|
|
736
|
+
__extends(InvalidNetworkSettings, _super);
|
|
737
|
+
function InvalidNetworkSettings(opts) {
|
|
738
|
+
var _this = _super.call(this, __assign({ name: "InvalidNetworkSettings", $fault: "client" }, opts)) || this;
|
|
739
|
+
_this.name = "InvalidNetworkSettings";
|
|
740
|
+
_this.$fault = "client";
|
|
741
|
+
Object.setPrototypeOf(_this, InvalidNetworkSettings.prototype);
|
|
742
|
+
_this.Message = opts.Message;
|
|
743
|
+
_this.InvalidSubnetId = opts.InvalidSubnetId;
|
|
744
|
+
_this.InvalidSecurityGroupId = opts.InvalidSecurityGroupId;
|
|
745
|
+
_this.InvalidRouteTableId = opts.InvalidRouteTableId;
|
|
746
|
+
return _this;
|
|
747
|
+
}
|
|
748
|
+
return InvalidNetworkSettings;
|
|
749
|
+
}(__BaseException));
|
|
750
|
+
export { InvalidNetworkSettings };
|
|
751
|
+
var InvalidPerUnitStorageThroughput = (function (_super) {
|
|
752
|
+
__extends(InvalidPerUnitStorageThroughput, _super);
|
|
753
|
+
function InvalidPerUnitStorageThroughput(opts) {
|
|
754
|
+
var _this = _super.call(this, __assign({ name: "InvalidPerUnitStorageThroughput", $fault: "client" }, opts)) || this;
|
|
755
|
+
_this.name = "InvalidPerUnitStorageThroughput";
|
|
756
|
+
_this.$fault = "client";
|
|
757
|
+
Object.setPrototypeOf(_this, InvalidPerUnitStorageThroughput.prototype);
|
|
758
|
+
_this.Message = opts.Message;
|
|
759
|
+
return _this;
|
|
760
|
+
}
|
|
761
|
+
return InvalidPerUnitStorageThroughput;
|
|
762
|
+
}(__BaseException));
|
|
763
|
+
export { InvalidPerUnitStorageThroughput };
|
|
764
|
+
var MissingFileSystemConfiguration = (function (_super) {
|
|
765
|
+
__extends(MissingFileSystemConfiguration, _super);
|
|
766
|
+
function MissingFileSystemConfiguration(opts) {
|
|
767
|
+
var _this = _super.call(this, __assign({ name: "MissingFileSystemConfiguration", $fault: "client" }, opts)) || this;
|
|
768
|
+
_this.name = "MissingFileSystemConfiguration";
|
|
769
|
+
_this.$fault = "client";
|
|
770
|
+
Object.setPrototypeOf(_this, MissingFileSystemConfiguration.prototype);
|
|
771
|
+
_this.Message = opts.Message;
|
|
772
|
+
return _this;
|
|
773
|
+
}
|
|
774
|
+
return MissingFileSystemConfiguration;
|
|
775
|
+
}(__BaseException));
|
|
776
|
+
export { MissingFileSystemConfiguration };
|
|
469
777
|
export var CreateFileSystemFromBackupRequest;
|
|
470
778
|
(function (CreateFileSystemFromBackupRequest) {
|
|
471
779
|
CreateFileSystemFromBackupRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.WindowsConfiguration && {
|
|
@@ -546,10 +854,64 @@ export var CreateVolumeRequest;
|
|
|
546
854
|
(function (CreateVolumeRequest) {
|
|
547
855
|
CreateVolumeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
548
856
|
})(CreateVolumeRequest || (CreateVolumeRequest = {}));
|
|
857
|
+
var MissingVolumeConfiguration = (function (_super) {
|
|
858
|
+
__extends(MissingVolumeConfiguration, _super);
|
|
859
|
+
function MissingVolumeConfiguration(opts) {
|
|
860
|
+
var _this = _super.call(this, __assign({ name: "MissingVolumeConfiguration", $fault: "client" }, opts)) || this;
|
|
861
|
+
_this.name = "MissingVolumeConfiguration";
|
|
862
|
+
_this.$fault = "client";
|
|
863
|
+
Object.setPrototypeOf(_this, MissingVolumeConfiguration.prototype);
|
|
864
|
+
_this.Message = opts.Message;
|
|
865
|
+
return _this;
|
|
866
|
+
}
|
|
867
|
+
return MissingVolumeConfiguration;
|
|
868
|
+
}(__BaseException));
|
|
869
|
+
export { MissingVolumeConfiguration };
|
|
870
|
+
var StorageVirtualMachineNotFound = (function (_super) {
|
|
871
|
+
__extends(StorageVirtualMachineNotFound, _super);
|
|
872
|
+
function StorageVirtualMachineNotFound(opts) {
|
|
873
|
+
var _this = _super.call(this, __assign({ name: "StorageVirtualMachineNotFound", $fault: "client" }, opts)) || this;
|
|
874
|
+
_this.name = "StorageVirtualMachineNotFound";
|
|
875
|
+
_this.$fault = "client";
|
|
876
|
+
Object.setPrototypeOf(_this, StorageVirtualMachineNotFound.prototype);
|
|
877
|
+
_this.Message = opts.Message;
|
|
878
|
+
return _this;
|
|
879
|
+
}
|
|
880
|
+
return StorageVirtualMachineNotFound;
|
|
881
|
+
}(__BaseException));
|
|
882
|
+
export { StorageVirtualMachineNotFound };
|
|
549
883
|
export var CreateVolumeFromBackupRequest;
|
|
550
884
|
(function (CreateVolumeFromBackupRequest) {
|
|
551
885
|
CreateVolumeFromBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
552
886
|
})(CreateVolumeFromBackupRequest || (CreateVolumeFromBackupRequest = {}));
|
|
887
|
+
var BackupBeingCopied = (function (_super) {
|
|
888
|
+
__extends(BackupBeingCopied, _super);
|
|
889
|
+
function BackupBeingCopied(opts) {
|
|
890
|
+
var _this = _super.call(this, __assign({ name: "BackupBeingCopied", $fault: "client" }, opts)) || this;
|
|
891
|
+
_this.name = "BackupBeingCopied";
|
|
892
|
+
_this.$fault = "client";
|
|
893
|
+
Object.setPrototypeOf(_this, BackupBeingCopied.prototype);
|
|
894
|
+
_this.Message = opts.Message;
|
|
895
|
+
_this.BackupId = opts.BackupId;
|
|
896
|
+
return _this;
|
|
897
|
+
}
|
|
898
|
+
return BackupBeingCopied;
|
|
899
|
+
}(__BaseException));
|
|
900
|
+
export { BackupBeingCopied };
|
|
901
|
+
var BackupRestoring = (function (_super) {
|
|
902
|
+
__extends(BackupRestoring, _super);
|
|
903
|
+
function BackupRestoring(opts) {
|
|
904
|
+
var _this = _super.call(this, __assign({ name: "BackupRestoring", $fault: "client" }, opts)) || this;
|
|
905
|
+
_this.name = "BackupRestoring";
|
|
906
|
+
_this.$fault = "client";
|
|
907
|
+
Object.setPrototypeOf(_this, BackupRestoring.prototype);
|
|
908
|
+
_this.Message = opts.Message;
|
|
909
|
+
_this.FileSystemId = opts.FileSystemId;
|
|
910
|
+
return _this;
|
|
911
|
+
}
|
|
912
|
+
return BackupRestoring;
|
|
913
|
+
}(__BaseException));
|
|
914
|
+
export { BackupRestoring };
|
|
553
915
|
export var DeleteBackupRequest;
|
|
554
916
|
(function (DeleteBackupRequest) {
|
|
555
917
|
DeleteBackupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -558,6 +920,19 @@ export var DeleteBackupResponse;
|
|
|
558
920
|
(function (DeleteBackupResponse) {
|
|
559
921
|
DeleteBackupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
560
922
|
})(DeleteBackupResponse || (DeleteBackupResponse = {}));
|
|
923
|
+
var DataRepositoryAssociationNotFound = (function (_super) {
|
|
924
|
+
__extends(DataRepositoryAssociationNotFound, _super);
|
|
925
|
+
function DataRepositoryAssociationNotFound(opts) {
|
|
926
|
+
var _this = _super.call(this, __assign({ name: "DataRepositoryAssociationNotFound", $fault: "client" }, opts)) || this;
|
|
927
|
+
_this.name = "DataRepositoryAssociationNotFound";
|
|
928
|
+
_this.$fault = "client";
|
|
929
|
+
Object.setPrototypeOf(_this, DataRepositoryAssociationNotFound.prototype);
|
|
930
|
+
_this.Message = opts.Message;
|
|
931
|
+
return _this;
|
|
932
|
+
}
|
|
933
|
+
return DataRepositoryAssociationNotFound;
|
|
934
|
+
}(__BaseException));
|
|
935
|
+
export { DataRepositoryAssociationNotFound };
|
|
561
936
|
export var DeleteDataRepositoryAssociationRequest;
|
|
562
937
|
(function (DeleteDataRepositoryAssociationRequest) {
|
|
563
938
|
DeleteDataRepositoryAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -606,6 +981,19 @@ export var DeleteSnapshotResponse;
|
|
|
606
981
|
(function (DeleteSnapshotResponse) {
|
|
607
982
|
DeleteSnapshotResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
608
983
|
})(DeleteSnapshotResponse || (DeleteSnapshotResponse = {}));
|
|
984
|
+
var SnapshotNotFound = (function (_super) {
|
|
985
|
+
__extends(SnapshotNotFound, _super);
|
|
986
|
+
function SnapshotNotFound(opts) {
|
|
987
|
+
var _this = _super.call(this, __assign({ name: "SnapshotNotFound", $fault: "client" }, opts)) || this;
|
|
988
|
+
_this.name = "SnapshotNotFound";
|
|
989
|
+
_this.$fault = "client";
|
|
990
|
+
Object.setPrototypeOf(_this, SnapshotNotFound.prototype);
|
|
991
|
+
_this.Message = opts.Message;
|
|
992
|
+
return _this;
|
|
993
|
+
}
|
|
994
|
+
return SnapshotNotFound;
|
|
995
|
+
}(__BaseException));
|
|
996
|
+
export { SnapshotNotFound };
|
|
609
997
|
export var DeleteStorageVirtualMachineRequest;
|
|
610
998
|
(function (DeleteStorageVirtualMachineRequest) {
|
|
611
999
|
DeleteStorageVirtualMachineRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -662,6 +1050,19 @@ export var DescribeDataRepositoryAssociationsResponse;
|
|
|
662
1050
|
(function (DescribeDataRepositoryAssociationsResponse) {
|
|
663
1051
|
DescribeDataRepositoryAssociationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
1052
|
})(DescribeDataRepositoryAssociationsResponse || (DescribeDataRepositoryAssociationsResponse = {}));
|
|
1053
|
+
var InvalidDataRepositoryType = (function (_super) {
|
|
1054
|
+
__extends(InvalidDataRepositoryType, _super);
|
|
1055
|
+
function InvalidDataRepositoryType(opts) {
|
|
1056
|
+
var _this = _super.call(this, __assign({ name: "InvalidDataRepositoryType", $fault: "client" }, opts)) || this;
|
|
1057
|
+
_this.name = "InvalidDataRepositoryType";
|
|
1058
|
+
_this.$fault = "client";
|
|
1059
|
+
Object.setPrototypeOf(_this, InvalidDataRepositoryType.prototype);
|
|
1060
|
+
_this.Message = opts.Message;
|
|
1061
|
+
return _this;
|
|
1062
|
+
}
|
|
1063
|
+
return InvalidDataRepositoryType;
|
|
1064
|
+
}(__BaseException));
|
|
1065
|
+
export { InvalidDataRepositoryType };
|
|
665
1066
|
export var DataRepositoryTaskFilterName;
|
|
666
1067
|
(function (DataRepositoryTaskFilterName) {
|
|
667
1068
|
DataRepositoryTaskFilterName["DATA_REPO_ASSOCIATION_ID"] = "data-repository-association-id";
|
|
@@ -750,6 +1151,48 @@ export var ListTagsForResourceResponse;
|
|
|
750
1151
|
(function (ListTagsForResourceResponse) {
|
|
751
1152
|
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
752
1153
|
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
1154
|
+
var NotServiceResourceError = (function (_super) {
|
|
1155
|
+
__extends(NotServiceResourceError, _super);
|
|
1156
|
+
function NotServiceResourceError(opts) {
|
|
1157
|
+
var _this = _super.call(this, __assign({ name: "NotServiceResourceError", $fault: "client" }, opts)) || this;
|
|
1158
|
+
_this.name = "NotServiceResourceError";
|
|
1159
|
+
_this.$fault = "client";
|
|
1160
|
+
Object.setPrototypeOf(_this, NotServiceResourceError.prototype);
|
|
1161
|
+
_this.ResourceARN = opts.ResourceARN;
|
|
1162
|
+
_this.Message = opts.Message;
|
|
1163
|
+
return _this;
|
|
1164
|
+
}
|
|
1165
|
+
return NotServiceResourceError;
|
|
1166
|
+
}(__BaseException));
|
|
1167
|
+
export { NotServiceResourceError };
|
|
1168
|
+
var ResourceDoesNotSupportTagging = (function (_super) {
|
|
1169
|
+
__extends(ResourceDoesNotSupportTagging, _super);
|
|
1170
|
+
function ResourceDoesNotSupportTagging(opts) {
|
|
1171
|
+
var _this = _super.call(this, __assign({ name: "ResourceDoesNotSupportTagging", $fault: "client" }, opts)) || this;
|
|
1172
|
+
_this.name = "ResourceDoesNotSupportTagging";
|
|
1173
|
+
_this.$fault = "client";
|
|
1174
|
+
Object.setPrototypeOf(_this, ResourceDoesNotSupportTagging.prototype);
|
|
1175
|
+
_this.ResourceARN = opts.ResourceARN;
|
|
1176
|
+
_this.Message = opts.Message;
|
|
1177
|
+
return _this;
|
|
1178
|
+
}
|
|
1179
|
+
return ResourceDoesNotSupportTagging;
|
|
1180
|
+
}(__BaseException));
|
|
1181
|
+
export { ResourceDoesNotSupportTagging };
|
|
1182
|
+
var ResourceNotFound = (function (_super) {
|
|
1183
|
+
__extends(ResourceNotFound, _super);
|
|
1184
|
+
function ResourceNotFound(opts) {
|
|
1185
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFound", $fault: "client" }, opts)) || this;
|
|
1186
|
+
_this.name = "ResourceNotFound";
|
|
1187
|
+
_this.$fault = "client";
|
|
1188
|
+
Object.setPrototypeOf(_this, ResourceNotFound.prototype);
|
|
1189
|
+
_this.ResourceARN = opts.ResourceARN;
|
|
1190
|
+
_this.Message = opts.Message;
|
|
1191
|
+
return _this;
|
|
1192
|
+
}
|
|
1193
|
+
return ResourceNotFound;
|
|
1194
|
+
}(__BaseException));
|
|
1195
|
+
export { ResourceNotFound };
|
|
753
1196
|
export var ReleaseFileSystemNfsV3LocksRequest;
|
|
754
1197
|
(function (ReleaseFileSystemNfsV3LocksRequest) {
|
|
755
1198
|
ReleaseFileSystemNfsV3LocksRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|