@aws-sdk/client-fsx 3.52.0 → 3.54.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FSxServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +492 -10
- package/dist-cjs/protocols/Aws_json1_1.js +508 -1721
- package/dist-es/index.js +1 -0
- package/dist-es/models/FSxServiceException.js +12 -0
- package/dist-es/models/models_0.js +453 -5
- package/dist-es/protocols/Aws_json1_1.js +1003 -1812
- package/dist-types/FSx.d.ts +9 -10
- package/dist-types/FSxClient.d.ts +2 -2
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +2 -2
- package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
- package/dist-types/commands/CreateVolumeCommand.d.ts +1 -2
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
- 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 +426 -181
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/FSxClient.d.ts +2 -2
- 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 +192 -109
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FSxClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FSxClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FSxClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput } from "./commands/AssociateFileSystemAliasesCommand";
|
|
10
10
|
import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "./commands/CancelDataRepositoryTaskCommand";
|
|
11
11
|
import { CopyBackupCommandInput, CopyBackupCommandOutput } from "./commands/CopyBackupCommand";
|
|
@@ -53,7 +53,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
53
53
|
|
|
54
54
|
urlParser?: __UrlParser;
|
|
55
55
|
|
|
56
|
-
bodyLengthChecker?:
|
|
56
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
57
57
|
|
|
58
58
|
streamCollector?: __StreamCollector;
|
|
59
59
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { FSxServiceException as __BaseException } from "./FSxServiceException";
|
|
2
3
|
|
|
3
4
|
export interface ActiveDirectoryBackupAttributes {
|
|
4
5
|
|
|
@@ -19,15 +20,17 @@ export declare enum ActiveDirectoryErrorType {
|
|
|
19
20
|
WRONG_VPC = "WRONG_VPC"
|
|
20
21
|
}
|
|
21
22
|
|
|
22
|
-
export
|
|
23
|
-
name: "ActiveDirectoryError";
|
|
24
|
-
$fault: "client";
|
|
23
|
+
export declare class ActiveDirectoryError extends __BaseException {
|
|
24
|
+
readonly name: "ActiveDirectoryError";
|
|
25
|
+
readonly $fault: "client";
|
|
25
26
|
|
|
26
27
|
ActiveDirectoryId: string | undefined;
|
|
27
28
|
|
|
28
29
|
Type?: ActiveDirectoryErrorType | string;
|
|
29
30
|
|
|
30
31
|
Message?: string;
|
|
32
|
+
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>);
|
|
31
34
|
}
|
|
32
35
|
export declare enum AdministrativeActionType {
|
|
33
36
|
FILE_SYSTEM_ALIAS_ASSOCIATION = "FILE_SYSTEM_ALIAS_ASSOCIATION",
|
|
@@ -393,15 +396,6 @@ export declare enum SnapshotLifecycle {
|
|
|
393
396
|
DELETING = "DELETING",
|
|
394
397
|
PENDING = "PENDING"
|
|
395
398
|
}
|
|
396
|
-
export declare enum VolumeLifecycle {
|
|
397
|
-
AVAILABLE = "AVAILABLE",
|
|
398
|
-
CREATED = "CREATED",
|
|
399
|
-
CREATING = "CREATING",
|
|
400
|
-
DELETING = "DELETING",
|
|
401
|
-
FAILED = "FAILED",
|
|
402
|
-
MISCONFIGURED = "MISCONFIGURED",
|
|
403
|
-
PENDING = "PENDING"
|
|
404
|
-
}
|
|
405
399
|
|
|
406
400
|
export interface LifecycleTransitionReason {
|
|
407
401
|
|
|
@@ -411,6 +405,15 @@ export declare namespace LifecycleTransitionReason {
|
|
|
411
405
|
|
|
412
406
|
const filterSensitiveLog: (obj: LifecycleTransitionReason) => any;
|
|
413
407
|
}
|
|
408
|
+
export declare enum VolumeLifecycle {
|
|
409
|
+
AVAILABLE = "AVAILABLE",
|
|
410
|
+
CREATED = "CREATED",
|
|
411
|
+
CREATING = "CREATING",
|
|
412
|
+
DELETING = "DELETING",
|
|
413
|
+
FAILED = "FAILED",
|
|
414
|
+
MISCONFIGURED = "MISCONFIGURED",
|
|
415
|
+
PENDING = "PENDING"
|
|
416
|
+
}
|
|
414
417
|
export declare enum FlexCacheEndpointType {
|
|
415
418
|
CACHE = "CACHE",
|
|
416
419
|
NONE = "NONE",
|
|
@@ -471,6 +474,7 @@ export declare namespace OntapVolumeConfiguration {
|
|
|
471
474
|
const filterSensitiveLog: (obj: OntapVolumeConfiguration) => any;
|
|
472
475
|
}
|
|
473
476
|
export declare enum OpenZFSDataCompressionType {
|
|
477
|
+
LZ4 = "LZ4",
|
|
474
478
|
NONE = "NONE",
|
|
475
479
|
ZSTD = "ZSTD"
|
|
476
480
|
}
|
|
@@ -537,6 +541,8 @@ export interface OpenZFSVolumeConfiguration {
|
|
|
537
541
|
|
|
538
542
|
StorageCapacityQuotaGiB?: number;
|
|
539
543
|
|
|
544
|
+
RecordSizeKiB?: number;
|
|
545
|
+
|
|
540
546
|
DataCompressionType?: OpenZFSDataCompressionType | string;
|
|
541
547
|
|
|
542
548
|
CopyTagsToSnapshots?: boolean;
|
|
@@ -580,25 +586,31 @@ export declare namespace AssociateFileSystemAliasesResponse {
|
|
|
580
586
|
const filterSensitiveLog: (obj: AssociateFileSystemAliasesResponse) => any;
|
|
581
587
|
}
|
|
582
588
|
|
|
583
|
-
export
|
|
584
|
-
name: "BadRequest";
|
|
585
|
-
$fault: "client";
|
|
589
|
+
export declare class BadRequest extends __BaseException {
|
|
590
|
+
readonly name: "BadRequest";
|
|
591
|
+
readonly $fault: "client";
|
|
586
592
|
|
|
587
593
|
Message?: string;
|
|
594
|
+
|
|
595
|
+
constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
|
|
588
596
|
}
|
|
589
597
|
|
|
590
|
-
export
|
|
591
|
-
name: "FileSystemNotFound";
|
|
592
|
-
$fault: "client";
|
|
598
|
+
export declare class FileSystemNotFound extends __BaseException {
|
|
599
|
+
readonly name: "FileSystemNotFound";
|
|
600
|
+
readonly $fault: "client";
|
|
593
601
|
|
|
594
602
|
Message?: string;
|
|
603
|
+
|
|
604
|
+
constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
|
|
595
605
|
}
|
|
596
606
|
|
|
597
|
-
export
|
|
598
|
-
name: "InternalServerError";
|
|
599
|
-
$fault: "server";
|
|
607
|
+
export declare class InternalServerError extends __BaseException {
|
|
608
|
+
readonly name: "InternalServerError";
|
|
609
|
+
readonly $fault: "server";
|
|
600
610
|
|
|
601
611
|
Message?: string;
|
|
612
|
+
|
|
613
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
602
614
|
}
|
|
603
615
|
export declare enum EventType {
|
|
604
616
|
CHANGED = "CHANGED",
|
|
@@ -651,32 +663,40 @@ export declare namespace CancelDataRepositoryTaskResponse {
|
|
|
651
663
|
const filterSensitiveLog: (obj: CancelDataRepositoryTaskResponse) => any;
|
|
652
664
|
}
|
|
653
665
|
|
|
654
|
-
export
|
|
655
|
-
name: "DataRepositoryTaskEnded";
|
|
656
|
-
$fault: "client";
|
|
666
|
+
export declare class DataRepositoryTaskEnded extends __BaseException {
|
|
667
|
+
readonly name: "DataRepositoryTaskEnded";
|
|
668
|
+
readonly $fault: "client";
|
|
657
669
|
|
|
658
670
|
Message?: string;
|
|
671
|
+
|
|
672
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskEnded, __BaseException>);
|
|
659
673
|
}
|
|
660
674
|
|
|
661
|
-
export
|
|
662
|
-
name: "DataRepositoryTaskNotFound";
|
|
663
|
-
$fault: "client";
|
|
675
|
+
export declare class DataRepositoryTaskNotFound extends __BaseException {
|
|
676
|
+
readonly name: "DataRepositoryTaskNotFound";
|
|
677
|
+
readonly $fault: "client";
|
|
664
678
|
|
|
665
679
|
Message?: string;
|
|
680
|
+
|
|
681
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskNotFound, __BaseException>);
|
|
666
682
|
}
|
|
667
683
|
|
|
668
|
-
export
|
|
669
|
-
name: "UnsupportedOperation";
|
|
670
|
-
$fault: "client";
|
|
684
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
685
|
+
readonly name: "UnsupportedOperation";
|
|
686
|
+
readonly $fault: "client";
|
|
671
687
|
|
|
672
688
|
Message?: string;
|
|
689
|
+
|
|
690
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>);
|
|
673
691
|
}
|
|
674
692
|
|
|
675
|
-
export
|
|
676
|
-
name: "BackupNotFound";
|
|
677
|
-
$fault: "client";
|
|
693
|
+
export declare class BackupNotFound extends __BaseException {
|
|
694
|
+
readonly name: "BackupNotFound";
|
|
695
|
+
readonly $fault: "client";
|
|
678
696
|
|
|
679
697
|
Message?: string;
|
|
698
|
+
|
|
699
|
+
constructor(opts: __ExceptionOptionType<BackupNotFound, __BaseException>);
|
|
680
700
|
}
|
|
681
701
|
export interface CopyBackupRequest {
|
|
682
702
|
|
|
@@ -724,41 +744,51 @@ export declare enum BackupType {
|
|
|
724
744
|
USER_INITIATED = "USER_INITIATED"
|
|
725
745
|
}
|
|
726
746
|
|
|
727
|
-
export
|
|
728
|
-
name: "IncompatibleParameterError";
|
|
729
|
-
$fault: "client";
|
|
747
|
+
export declare class IncompatibleParameterError extends __BaseException {
|
|
748
|
+
readonly name: "IncompatibleParameterError";
|
|
749
|
+
readonly $fault: "client";
|
|
730
750
|
|
|
731
751
|
Parameter: string | undefined;
|
|
732
752
|
|
|
733
753
|
Message?: string;
|
|
754
|
+
|
|
755
|
+
constructor(opts: __ExceptionOptionType<IncompatibleParameterError, __BaseException>);
|
|
734
756
|
}
|
|
735
757
|
|
|
736
|
-
export
|
|
737
|
-
name: "IncompatibleRegionForMultiAZ";
|
|
738
|
-
$fault: "client";
|
|
758
|
+
export declare class IncompatibleRegionForMultiAZ extends __BaseException {
|
|
759
|
+
readonly name: "IncompatibleRegionForMultiAZ";
|
|
760
|
+
readonly $fault: "client";
|
|
739
761
|
|
|
740
762
|
Message?: string;
|
|
763
|
+
|
|
764
|
+
constructor(opts: __ExceptionOptionType<IncompatibleRegionForMultiAZ, __BaseException>);
|
|
741
765
|
}
|
|
742
766
|
|
|
743
|
-
export
|
|
744
|
-
name: "InvalidDestinationKmsKey";
|
|
745
|
-
$fault: "client";
|
|
767
|
+
export declare class InvalidDestinationKmsKey extends __BaseException {
|
|
768
|
+
readonly name: "InvalidDestinationKmsKey";
|
|
769
|
+
readonly $fault: "client";
|
|
746
770
|
|
|
747
771
|
Message?: string;
|
|
772
|
+
|
|
773
|
+
constructor(opts: __ExceptionOptionType<InvalidDestinationKmsKey, __BaseException>);
|
|
748
774
|
}
|
|
749
775
|
|
|
750
|
-
export
|
|
751
|
-
name: "InvalidRegion";
|
|
752
|
-
$fault: "client";
|
|
776
|
+
export declare class InvalidRegion extends __BaseException {
|
|
777
|
+
readonly name: "InvalidRegion";
|
|
778
|
+
readonly $fault: "client";
|
|
753
779
|
|
|
754
780
|
Message?: string;
|
|
781
|
+
|
|
782
|
+
constructor(opts: __ExceptionOptionType<InvalidRegion, __BaseException>);
|
|
755
783
|
}
|
|
756
784
|
|
|
757
|
-
export
|
|
758
|
-
name: "InvalidSourceKmsKey";
|
|
759
|
-
$fault: "client";
|
|
785
|
+
export declare class InvalidSourceKmsKey extends __BaseException {
|
|
786
|
+
readonly name: "InvalidSourceKmsKey";
|
|
787
|
+
readonly $fault: "client";
|
|
760
788
|
|
|
761
789
|
Message?: string;
|
|
790
|
+
|
|
791
|
+
constructor(opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>);
|
|
762
792
|
}
|
|
763
793
|
export declare enum ServiceLimit {
|
|
764
794
|
FILE_SYSTEM_COUNT = "FILE_SYSTEM_COUNT",
|
|
@@ -772,29 +802,35 @@ export declare enum ServiceLimit {
|
|
|
772
802
|
VOLUMES_PER_FILE_SYSTEM = "VOLUMES_PER_FILE_SYSTEM"
|
|
773
803
|
}
|
|
774
804
|
|
|
775
|
-
export
|
|
776
|
-
name: "ServiceLimitExceeded";
|
|
777
|
-
$fault: "client";
|
|
805
|
+
export declare class ServiceLimitExceeded extends __BaseException {
|
|
806
|
+
readonly name: "ServiceLimitExceeded";
|
|
807
|
+
readonly $fault: "client";
|
|
778
808
|
|
|
779
809
|
Limit: ServiceLimit | string | undefined;
|
|
780
810
|
|
|
781
811
|
Message?: string;
|
|
812
|
+
|
|
813
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceeded, __BaseException>);
|
|
782
814
|
}
|
|
783
815
|
|
|
784
|
-
export
|
|
785
|
-
name: "SourceBackupUnavailable";
|
|
786
|
-
$fault: "client";
|
|
816
|
+
export declare class SourceBackupUnavailable extends __BaseException {
|
|
817
|
+
readonly name: "SourceBackupUnavailable";
|
|
818
|
+
readonly $fault: "client";
|
|
787
819
|
|
|
788
820
|
Message?: string;
|
|
789
821
|
|
|
790
822
|
BackupId?: string;
|
|
823
|
+
|
|
824
|
+
constructor(opts: __ExceptionOptionType<SourceBackupUnavailable, __BaseException>);
|
|
791
825
|
}
|
|
792
826
|
|
|
793
|
-
export
|
|
794
|
-
name: "BackupInProgress";
|
|
795
|
-
$fault: "client";
|
|
827
|
+
export declare class BackupInProgress extends __BaseException {
|
|
828
|
+
readonly name: "BackupInProgress";
|
|
829
|
+
readonly $fault: "client";
|
|
796
830
|
|
|
797
831
|
Message?: string;
|
|
832
|
+
|
|
833
|
+
constructor(opts: __ExceptionOptionType<BackupInProgress, __BaseException>);
|
|
798
834
|
}
|
|
799
835
|
|
|
800
836
|
export interface CreateBackupRequest {
|
|
@@ -812,11 +848,13 @@ export declare namespace CreateBackupRequest {
|
|
|
812
848
|
const filterSensitiveLog: (obj: CreateBackupRequest) => any;
|
|
813
849
|
}
|
|
814
850
|
|
|
815
|
-
export
|
|
816
|
-
name: "VolumeNotFound";
|
|
817
|
-
$fault: "client";
|
|
851
|
+
export declare class VolumeNotFound extends __BaseException {
|
|
852
|
+
readonly name: "VolumeNotFound";
|
|
853
|
+
readonly $fault: "client";
|
|
818
854
|
|
|
819
855
|
Message?: string;
|
|
856
|
+
|
|
857
|
+
constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
|
|
820
858
|
}
|
|
821
859
|
|
|
822
860
|
export interface S3DataRepositoryConfiguration {
|
|
@@ -999,11 +1037,13 @@ export declare namespace CreateDataRepositoryTaskResponse {
|
|
|
999
1037
|
const filterSensitiveLog: (obj: CreateDataRepositoryTaskResponse) => any;
|
|
1000
1038
|
}
|
|
1001
1039
|
|
|
1002
|
-
export
|
|
1003
|
-
name: "DataRepositoryTaskExecuting";
|
|
1004
|
-
$fault: "client";
|
|
1040
|
+
export declare class DataRepositoryTaskExecuting extends __BaseException {
|
|
1041
|
+
readonly name: "DataRepositoryTaskExecuting";
|
|
1042
|
+
readonly $fault: "client";
|
|
1005
1043
|
|
|
1006
1044
|
Message?: string;
|
|
1045
|
+
|
|
1046
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryTaskExecuting, __BaseException>);
|
|
1007
1047
|
}
|
|
1008
1048
|
|
|
1009
1049
|
export interface LustreLogCreateConfiguration {
|
|
@@ -1079,6 +1119,8 @@ export declare namespace CreateFileSystemOntapConfiguration {
|
|
|
1079
1119
|
|
|
1080
1120
|
export interface OpenZFSCreateRootVolumeConfiguration {
|
|
1081
1121
|
|
|
1122
|
+
RecordSizeKiB?: number;
|
|
1123
|
+
|
|
1082
1124
|
DataCompressionType?: OpenZFSDataCompressionType | string;
|
|
1083
1125
|
|
|
1084
1126
|
NfsExports?: OpenZFSNfsExport[];
|
|
@@ -1213,23 +1255,27 @@ export declare namespace CreateFileSystemRequest {
|
|
|
1213
1255
|
const filterSensitiveLog: (obj: CreateFileSystemRequest) => any;
|
|
1214
1256
|
}
|
|
1215
1257
|
|
|
1216
|
-
export
|
|
1217
|
-
name: "InvalidExportPath";
|
|
1218
|
-
$fault: "client";
|
|
1258
|
+
export declare class InvalidExportPath extends __BaseException {
|
|
1259
|
+
readonly name: "InvalidExportPath";
|
|
1260
|
+
readonly $fault: "client";
|
|
1219
1261
|
|
|
1220
1262
|
Message?: string;
|
|
1263
|
+
|
|
1264
|
+
constructor(opts: __ExceptionOptionType<InvalidExportPath, __BaseException>);
|
|
1221
1265
|
}
|
|
1222
1266
|
|
|
1223
|
-
export
|
|
1224
|
-
name: "InvalidImportPath";
|
|
1225
|
-
$fault: "client";
|
|
1267
|
+
export declare class InvalidImportPath extends __BaseException {
|
|
1268
|
+
readonly name: "InvalidImportPath";
|
|
1269
|
+
readonly $fault: "client";
|
|
1226
1270
|
|
|
1227
1271
|
Message?: string;
|
|
1272
|
+
|
|
1273
|
+
constructor(opts: __ExceptionOptionType<InvalidImportPath, __BaseException>);
|
|
1228
1274
|
}
|
|
1229
1275
|
|
|
1230
|
-
export
|
|
1231
|
-
name: "InvalidNetworkSettings";
|
|
1232
|
-
$fault: "client";
|
|
1276
|
+
export declare class InvalidNetworkSettings extends __BaseException {
|
|
1277
|
+
readonly name: "InvalidNetworkSettings";
|
|
1278
|
+
readonly $fault: "client";
|
|
1233
1279
|
|
|
1234
1280
|
Message?: string;
|
|
1235
1281
|
|
|
@@ -1238,20 +1284,26 @@ export interface InvalidNetworkSettings extends __SmithyException, $MetadataBear
|
|
|
1238
1284
|
InvalidSecurityGroupId?: string;
|
|
1239
1285
|
|
|
1240
1286
|
InvalidRouteTableId?: string;
|
|
1287
|
+
|
|
1288
|
+
constructor(opts: __ExceptionOptionType<InvalidNetworkSettings, __BaseException>);
|
|
1241
1289
|
}
|
|
1242
1290
|
|
|
1243
|
-
export
|
|
1244
|
-
name: "InvalidPerUnitStorageThroughput";
|
|
1245
|
-
$fault: "client";
|
|
1291
|
+
export declare class InvalidPerUnitStorageThroughput extends __BaseException {
|
|
1292
|
+
readonly name: "InvalidPerUnitStorageThroughput";
|
|
1293
|
+
readonly $fault: "client";
|
|
1246
1294
|
|
|
1247
1295
|
Message?: string;
|
|
1296
|
+
|
|
1297
|
+
constructor(opts: __ExceptionOptionType<InvalidPerUnitStorageThroughput, __BaseException>);
|
|
1248
1298
|
}
|
|
1249
1299
|
|
|
1250
|
-
export
|
|
1251
|
-
name: "MissingFileSystemConfiguration";
|
|
1252
|
-
$fault: "client";
|
|
1300
|
+
export declare class MissingFileSystemConfiguration extends __BaseException {
|
|
1301
|
+
readonly name: "MissingFileSystemConfiguration";
|
|
1302
|
+
readonly $fault: "client";
|
|
1253
1303
|
|
|
1254
1304
|
Message?: string;
|
|
1305
|
+
|
|
1306
|
+
constructor(opts: __ExceptionOptionType<MissingFileSystemConfiguration, __BaseException>);
|
|
1255
1307
|
}
|
|
1256
1308
|
|
|
1257
1309
|
export interface CreateFileSystemFromBackupRequest {
|
|
@@ -1463,6 +1515,8 @@ export interface CreateOpenZFSVolumeConfiguration {
|
|
|
1463
1515
|
|
|
1464
1516
|
StorageCapacityQuotaGiB?: number;
|
|
1465
1517
|
|
|
1518
|
+
RecordSizeKiB?: number;
|
|
1519
|
+
|
|
1466
1520
|
DataCompressionType?: OpenZFSDataCompressionType | string;
|
|
1467
1521
|
|
|
1468
1522
|
CopyTagsToSnapshots?: boolean;
|
|
@@ -1498,18 +1552,22 @@ export declare namespace CreateVolumeRequest {
|
|
|
1498
1552
|
const filterSensitiveLog: (obj: CreateVolumeRequest) => any;
|
|
1499
1553
|
}
|
|
1500
1554
|
|
|
1501
|
-
export
|
|
1502
|
-
name: "MissingVolumeConfiguration";
|
|
1503
|
-
$fault: "client";
|
|
1555
|
+
export declare class MissingVolumeConfiguration extends __BaseException {
|
|
1556
|
+
readonly name: "MissingVolumeConfiguration";
|
|
1557
|
+
readonly $fault: "client";
|
|
1504
1558
|
|
|
1505
1559
|
Message?: string;
|
|
1560
|
+
|
|
1561
|
+
constructor(opts: __ExceptionOptionType<MissingVolumeConfiguration, __BaseException>);
|
|
1506
1562
|
}
|
|
1507
1563
|
|
|
1508
|
-
export
|
|
1509
|
-
name: "StorageVirtualMachineNotFound";
|
|
1510
|
-
$fault: "client";
|
|
1564
|
+
export declare class StorageVirtualMachineNotFound extends __BaseException {
|
|
1565
|
+
readonly name: "StorageVirtualMachineNotFound";
|
|
1566
|
+
readonly $fault: "client";
|
|
1511
1567
|
|
|
1512
1568
|
Message?: string;
|
|
1569
|
+
|
|
1570
|
+
constructor(opts: __ExceptionOptionType<StorageVirtualMachineNotFound, __BaseException>);
|
|
1513
1571
|
}
|
|
1514
1572
|
export interface CreateVolumeFromBackupRequest {
|
|
1515
1573
|
|
|
@@ -1528,22 +1586,26 @@ export declare namespace CreateVolumeFromBackupRequest {
|
|
|
1528
1586
|
const filterSensitiveLog: (obj: CreateVolumeFromBackupRequest) => any;
|
|
1529
1587
|
}
|
|
1530
1588
|
|
|
1531
|
-
export
|
|
1532
|
-
name: "BackupBeingCopied";
|
|
1533
|
-
$fault: "client";
|
|
1589
|
+
export declare class BackupBeingCopied extends __BaseException {
|
|
1590
|
+
readonly name: "BackupBeingCopied";
|
|
1591
|
+
readonly $fault: "client";
|
|
1534
1592
|
|
|
1535
1593
|
Message?: string;
|
|
1536
1594
|
|
|
1537
1595
|
BackupId?: string;
|
|
1596
|
+
|
|
1597
|
+
constructor(opts: __ExceptionOptionType<BackupBeingCopied, __BaseException>);
|
|
1538
1598
|
}
|
|
1539
1599
|
|
|
1540
|
-
export
|
|
1541
|
-
name: "BackupRestoring";
|
|
1542
|
-
$fault: "client";
|
|
1600
|
+
export declare class BackupRestoring extends __BaseException {
|
|
1601
|
+
readonly name: "BackupRestoring";
|
|
1602
|
+
readonly $fault: "client";
|
|
1543
1603
|
|
|
1544
1604
|
Message?: string;
|
|
1545
1605
|
|
|
1546
1606
|
FileSystemId?: string;
|
|
1607
|
+
|
|
1608
|
+
constructor(opts: __ExceptionOptionType<BackupRestoring, __BaseException>);
|
|
1547
1609
|
}
|
|
1548
1610
|
|
|
1549
1611
|
export interface DeleteBackupRequest {
|
|
@@ -1568,11 +1630,13 @@ export declare namespace DeleteBackupResponse {
|
|
|
1568
1630
|
const filterSensitiveLog: (obj: DeleteBackupResponse) => any;
|
|
1569
1631
|
}
|
|
1570
1632
|
|
|
1571
|
-
export
|
|
1572
|
-
name: "DataRepositoryAssociationNotFound";
|
|
1573
|
-
$fault: "client";
|
|
1633
|
+
export declare class DataRepositoryAssociationNotFound extends __BaseException {
|
|
1634
|
+
readonly name: "DataRepositoryAssociationNotFound";
|
|
1635
|
+
readonly $fault: "client";
|
|
1574
1636
|
|
|
1575
1637
|
Message?: string;
|
|
1638
|
+
|
|
1639
|
+
constructor(opts: __ExceptionOptionType<DataRepositoryAssociationNotFound, __BaseException>);
|
|
1576
1640
|
}
|
|
1577
1641
|
export interface DeleteDataRepositoryAssociationRequest {
|
|
1578
1642
|
|
|
@@ -1609,12 +1673,17 @@ export declare namespace DeleteFileSystemLustreConfiguration {
|
|
|
1609
1673
|
|
|
1610
1674
|
const filterSensitiveLog: (obj: DeleteFileSystemLustreConfiguration) => any;
|
|
1611
1675
|
}
|
|
1676
|
+
export declare enum DeleteFileSystemOpenZFSOption {
|
|
1677
|
+
DELETE_CHILD_VOLUMES_AND_SNAPSHOTS = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"
|
|
1678
|
+
}
|
|
1612
1679
|
|
|
1613
1680
|
export interface DeleteFileSystemOpenZFSConfiguration {
|
|
1614
1681
|
|
|
1615
1682
|
SkipFinalBackup?: boolean;
|
|
1616
1683
|
|
|
1617
1684
|
FinalBackupTags?: Tag[];
|
|
1685
|
+
|
|
1686
|
+
Options?: (DeleteFileSystemOpenZFSOption | string)[];
|
|
1618
1687
|
}
|
|
1619
1688
|
export declare namespace DeleteFileSystemOpenZFSConfiguration {
|
|
1620
1689
|
|
|
@@ -1719,11 +1788,13 @@ export declare namespace DeleteSnapshotResponse {
|
|
|
1719
1788
|
const filterSensitiveLog: (obj: DeleteSnapshotResponse) => any;
|
|
1720
1789
|
}
|
|
1721
1790
|
|
|
1722
|
-
export
|
|
1723
|
-
name: "SnapshotNotFound";
|
|
1724
|
-
$fault: "client";
|
|
1791
|
+
export declare class SnapshotNotFound extends __BaseException {
|
|
1792
|
+
readonly name: "SnapshotNotFound";
|
|
1793
|
+
readonly $fault: "client";
|
|
1725
1794
|
|
|
1726
1795
|
Message?: string;
|
|
1796
|
+
|
|
1797
|
+
constructor(opts: __ExceptionOptionType<SnapshotNotFound, __BaseException>);
|
|
1727
1798
|
}
|
|
1728
1799
|
export interface DeleteStorageVirtualMachineRequest {
|
|
1729
1800
|
|
|
@@ -1863,11 +1934,13 @@ export declare namespace DescribeDataRepositoryAssociationsResponse {
|
|
|
1863
1934
|
const filterSensitiveLog: (obj: DescribeDataRepositoryAssociationsResponse) => any;
|
|
1864
1935
|
}
|
|
1865
1936
|
|
|
1866
|
-
export
|
|
1867
|
-
name: "InvalidDataRepositoryType";
|
|
1868
|
-
$fault: "client";
|
|
1937
|
+
export declare class InvalidDataRepositoryType extends __BaseException {
|
|
1938
|
+
readonly name: "InvalidDataRepositoryType";
|
|
1939
|
+
readonly $fault: "client";
|
|
1869
1940
|
|
|
1870
1941
|
Message?: string;
|
|
1942
|
+
|
|
1943
|
+
constructor(opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>);
|
|
1871
1944
|
}
|
|
1872
1945
|
export declare enum DataRepositoryTaskFilterName {
|
|
1873
1946
|
DATA_REPO_ASSOCIATION_ID = "data-repository-association-id",
|
|
@@ -2091,31 +2164,37 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
2091
2164
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2092
2165
|
}
|
|
2093
2166
|
|
|
2094
|
-
export
|
|
2095
|
-
name: "NotServiceResourceError";
|
|
2096
|
-
$fault: "client";
|
|
2167
|
+
export declare class NotServiceResourceError extends __BaseException {
|
|
2168
|
+
readonly name: "NotServiceResourceError";
|
|
2169
|
+
readonly $fault: "client";
|
|
2097
2170
|
|
|
2098
2171
|
ResourceARN: string | undefined;
|
|
2099
2172
|
|
|
2100
2173
|
Message?: string;
|
|
2174
|
+
|
|
2175
|
+
constructor(opts: __ExceptionOptionType<NotServiceResourceError, __BaseException>);
|
|
2101
2176
|
}
|
|
2102
2177
|
|
|
2103
|
-
export
|
|
2104
|
-
name: "ResourceDoesNotSupportTagging";
|
|
2105
|
-
$fault: "client";
|
|
2178
|
+
export declare class ResourceDoesNotSupportTagging extends __BaseException {
|
|
2179
|
+
readonly name: "ResourceDoesNotSupportTagging";
|
|
2180
|
+
readonly $fault: "client";
|
|
2106
2181
|
|
|
2107
2182
|
ResourceARN: string | undefined;
|
|
2108
2183
|
|
|
2109
2184
|
Message?: string;
|
|
2185
|
+
|
|
2186
|
+
constructor(opts: __ExceptionOptionType<ResourceDoesNotSupportTagging, __BaseException>);
|
|
2110
2187
|
}
|
|
2111
2188
|
|
|
2112
|
-
export
|
|
2113
|
-
name: "ResourceNotFound";
|
|
2114
|
-
$fault: "client";
|
|
2189
|
+
export declare class ResourceNotFound extends __BaseException {
|
|
2190
|
+
readonly name: "ResourceNotFound";
|
|
2191
|
+
readonly $fault: "client";
|
|
2115
2192
|
|
|
2116
2193
|
ResourceARN: string | undefined;
|
|
2117
2194
|
|
|
2118
2195
|
Message?: string;
|
|
2196
|
+
|
|
2197
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
|
|
2119
2198
|
}
|
|
2120
2199
|
export interface ReleaseFileSystemNfsV3LocksRequest {
|
|
2121
2200
|
|
|
@@ -2390,6 +2469,8 @@ export interface UpdateOpenZFSVolumeConfiguration {
|
|
|
2390
2469
|
|
|
2391
2470
|
StorageCapacityQuotaGiB?: number;
|
|
2392
2471
|
|
|
2472
|
+
RecordSizeKiB?: number;
|
|
2473
|
+
|
|
2393
2474
|
DataCompressionType?: OpenZFSDataCompressionType | string;
|
|
2394
2475
|
|
|
2395
2476
|
NfsExports?: OpenZFSNfsExport[];
|
|
@@ -2505,6 +2586,8 @@ export interface Snapshot {
|
|
|
2505
2586
|
|
|
2506
2587
|
Lifecycle?: SnapshotLifecycle | string;
|
|
2507
2588
|
|
|
2589
|
+
LifecycleTransitionReason?: LifecycleTransitionReason;
|
|
2590
|
+
|
|
2508
2591
|
Tags?: Tag[];
|
|
2509
2592
|
|
|
2510
2593
|
AdministrativeActions?: AdministrativeAction[];
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FSxClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|