@aws-sdk/client-fsx 3.830.0 → 3.837.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/README.md +24 -0
- package/dist-cjs/index.js +470 -66
- package/dist-es/FSx.js +6 -0
- package/dist-es/commands/CopyBackupCommand.js +1 -1
- package/dist-es/commands/CreateAndAttachS3AccessPointCommand.js +22 -0
- package/dist-es/commands/CreateBackupCommand.js +1 -1
- package/dist-es/commands/CreateFileSystemCommand.js +2 -1
- package/dist-es/commands/CreateSnapshotCommand.js +1 -1
- package/dist-es/commands/CreateVolumeCommand.js +1 -1
- package/dist-es/commands/CreateVolumeFromBackupCommand.js +1 -1
- package/dist-es/commands/DescribeBackupsCommand.js +1 -1
- package/dist-es/commands/DescribeFileSystemsCommand.js +1 -1
- package/dist-es/commands/DescribeS3AccessPointAttachmentsCommand.js +22 -0
- package/dist-es/commands/DescribeSnapshotsCommand.js +1 -1
- package/dist-es/commands/DescribeVolumesCommand.js +1 -1
- package/dist-es/commands/DetachAndDeleteS3AccessPointCommand.js +22 -0
- package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +1 -1
- package/dist-es/commands/StartMisconfiguredStateRecoveryCommand.js +1 -1
- package/dist-es/commands/UpdateFileSystemCommand.js +2 -1
- package/dist-es/commands/UpdateSnapshotCommand.js +1 -1
- package/dist-es/commands/UpdateVolumeCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +100 -61
- package/dist-es/models/models_1.js +58 -0
- package/dist-es/pagination/DescribeS3AccessPointAttachmentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +166 -4
- package/dist-types/FSx.d.ts +22 -0
- package/dist-types/FSxClient.d.ts +5 -2
- package/dist-types/commands/CopyBackupCommand.d.ts +2 -1
- package/dist-types/commands/CreateAndAttachS3AccessPointCommand.d.ts +196 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +2 -1
- package/dist-types/commands/CreateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/CreateSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +6 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeS3AccessPointAttachmentsCommand.d.ts +135 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVolumesCommand.d.ts +2 -1
- package/dist-types/commands/DetachAndDeleteS3AccessPointCommand.d.ts +104 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +2 -1
- package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/UpdateVolumeCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2132 -2044
- package/dist-types/models/models_1.d.ts +384 -0
- package/dist-types/pagination/DescribeS3AccessPointAttachmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/FSx.d.ts +52 -0
- package/dist-types/ts3.4/FSxClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CopyBackupCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateAndAttachS3AccessPointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateVolumeFromBackupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeS3AccessPointAttachmentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DetachAndDeleteS3AccessPointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartMisconfiguredStateRecoveryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateVolumeCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -120
- package/dist-types/ts3.4/models/models_1.d.ts +125 -0
- package/dist-types/ts3.4/pagination/DescribeS3AccessPointAttachmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +11 -11
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { FSxServiceException as __BaseException } from "./FSxServiceException";
|
|
3
|
+
export declare class AccessPointAlreadyOwnedByYou extends __BaseException {
|
|
4
|
+
readonly name: "AccessPointAlreadyOwnedByYou";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
ErrorCode?: string | undefined;
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessPointAlreadyOwnedByYou, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
3
12
|
export interface ActiveDirectoryBackupAttributes {
|
|
4
13
|
DomainName?: string | undefined;
|
|
5
14
|
ActiveDirectoryId?: string | undefined;
|
|
@@ -735,6 +744,104 @@ export interface CopySnapshotAndUpdateVolumeRequest {
|
|
|
735
744
|
CopyStrategy?: OpenZFSCopyStrategy | undefined;
|
|
736
745
|
Options?: UpdateOpenZFSVolumeOption[] | undefined;
|
|
737
746
|
}
|
|
747
|
+
export interface OpenZFSPosixFileSystemUser {
|
|
748
|
+
Uid: number | undefined;
|
|
749
|
+
Gid: number | undefined;
|
|
750
|
+
SecondaryGids?: number[] | undefined;
|
|
751
|
+
}
|
|
752
|
+
export declare const OpenZFSFileSystemUserType: {
|
|
753
|
+
readonly POSIX: "POSIX";
|
|
754
|
+
};
|
|
755
|
+
export type OpenZFSFileSystemUserType =
|
|
756
|
+
(typeof OpenZFSFileSystemUserType)[keyof typeof OpenZFSFileSystemUserType];
|
|
757
|
+
export interface OpenZFSFileSystemIdentity {
|
|
758
|
+
Type: OpenZFSFileSystemUserType | undefined;
|
|
759
|
+
PosixUser?: OpenZFSPosixFileSystemUser | undefined;
|
|
760
|
+
}
|
|
761
|
+
export interface CreateAndAttachS3AccessPointOpenZFSConfiguration {
|
|
762
|
+
VolumeId: string | undefined;
|
|
763
|
+
FileSystemIdentity: OpenZFSFileSystemIdentity | undefined;
|
|
764
|
+
}
|
|
765
|
+
export interface S3AccessPointVpcConfiguration {
|
|
766
|
+
VpcId?: string | undefined;
|
|
767
|
+
}
|
|
768
|
+
export interface CreateAndAttachS3AccessPointS3Configuration {
|
|
769
|
+
VpcConfiguration?: S3AccessPointVpcConfiguration | undefined;
|
|
770
|
+
Policy?: string | undefined;
|
|
771
|
+
}
|
|
772
|
+
export declare const S3AccessPointAttachmentType: {
|
|
773
|
+
readonly OPENZFS: "OPENZFS";
|
|
774
|
+
};
|
|
775
|
+
export type S3AccessPointAttachmentType =
|
|
776
|
+
(typeof S3AccessPointAttachmentType)[keyof typeof S3AccessPointAttachmentType];
|
|
777
|
+
export interface CreateAndAttachS3AccessPointRequest {
|
|
778
|
+
ClientRequestToken?: string | undefined;
|
|
779
|
+
Name: string | undefined;
|
|
780
|
+
Type: S3AccessPointAttachmentType | undefined;
|
|
781
|
+
OpenZFSConfiguration?:
|
|
782
|
+
| CreateAndAttachS3AccessPointOpenZFSConfiguration
|
|
783
|
+
| undefined;
|
|
784
|
+
S3AccessPoint?: CreateAndAttachS3AccessPointS3Configuration | undefined;
|
|
785
|
+
}
|
|
786
|
+
export declare const S3AccessPointAttachmentLifecycle: {
|
|
787
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
788
|
+
readonly CREATING: "CREATING";
|
|
789
|
+
readonly DELETING: "DELETING";
|
|
790
|
+
readonly FAILED: "FAILED";
|
|
791
|
+
readonly UPDATING: "UPDATING";
|
|
792
|
+
};
|
|
793
|
+
export type S3AccessPointAttachmentLifecycle =
|
|
794
|
+
(typeof S3AccessPointAttachmentLifecycle)[keyof typeof S3AccessPointAttachmentLifecycle];
|
|
795
|
+
export interface S3AccessPointOpenZFSConfiguration {
|
|
796
|
+
VolumeId?: string | undefined;
|
|
797
|
+
FileSystemIdentity?: OpenZFSFileSystemIdentity | undefined;
|
|
798
|
+
}
|
|
799
|
+
export interface S3AccessPoint {
|
|
800
|
+
ResourceARN?: string | undefined;
|
|
801
|
+
Alias?: string | undefined;
|
|
802
|
+
VpcConfiguration?: S3AccessPointVpcConfiguration | undefined;
|
|
803
|
+
}
|
|
804
|
+
export interface S3AccessPointAttachment {
|
|
805
|
+
Lifecycle?: S3AccessPointAttachmentLifecycle | undefined;
|
|
806
|
+
LifecycleTransitionReason?: LifecycleTransitionReason | undefined;
|
|
807
|
+
CreationTime?: Date | undefined;
|
|
808
|
+
Name?: string | undefined;
|
|
809
|
+
Type?: S3AccessPointAttachmentType | undefined;
|
|
810
|
+
OpenZFSConfiguration?: S3AccessPointOpenZFSConfiguration | undefined;
|
|
811
|
+
S3AccessPoint?: S3AccessPoint | undefined;
|
|
812
|
+
}
|
|
813
|
+
export interface CreateAndAttachS3AccessPointResponse {
|
|
814
|
+
S3AccessPointAttachment?: S3AccessPointAttachment | undefined;
|
|
815
|
+
}
|
|
816
|
+
export declare class InvalidAccessPoint extends __BaseException {
|
|
817
|
+
readonly name: "InvalidAccessPoint";
|
|
818
|
+
readonly $fault: "client";
|
|
819
|
+
ErrorCode?: string | undefined;
|
|
820
|
+
Message?: string | undefined;
|
|
821
|
+
constructor(opts: __ExceptionOptionType<InvalidAccessPoint, __BaseException>);
|
|
822
|
+
}
|
|
823
|
+
export declare class InvalidRequest extends __BaseException {
|
|
824
|
+
readonly name: "InvalidRequest";
|
|
825
|
+
readonly $fault: "client";
|
|
826
|
+
ErrorCode?: string | undefined;
|
|
827
|
+
Message?: string | undefined;
|
|
828
|
+
constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
|
|
829
|
+
}
|
|
830
|
+
export declare class TooManyAccessPoints extends __BaseException {
|
|
831
|
+
readonly name: "TooManyAccessPoints";
|
|
832
|
+
readonly $fault: "client";
|
|
833
|
+
ErrorCode?: string | undefined;
|
|
834
|
+
Message?: string | undefined;
|
|
835
|
+
constructor(
|
|
836
|
+
opts: __ExceptionOptionType<TooManyAccessPoints, __BaseException>
|
|
837
|
+
);
|
|
838
|
+
}
|
|
839
|
+
export declare class VolumeNotFound extends __BaseException {
|
|
840
|
+
readonly name: "VolumeNotFound";
|
|
841
|
+
readonly $fault: "client";
|
|
842
|
+
Message?: string | undefined;
|
|
843
|
+
constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
|
|
844
|
+
}
|
|
738
845
|
export declare class BackupInProgress extends __BaseException {
|
|
739
846
|
readonly name: "BackupInProgress";
|
|
740
847
|
readonly $fault: "client";
|
|
@@ -747,12 +854,6 @@ export interface CreateBackupRequest {
|
|
|
747
854
|
Tags?: Tag[] | undefined;
|
|
748
855
|
VolumeId?: string | undefined;
|
|
749
856
|
}
|
|
750
|
-
export declare class VolumeNotFound extends __BaseException {
|
|
751
|
-
readonly name: "VolumeNotFound";
|
|
752
|
-
readonly $fault: "client";
|
|
753
|
-
Message?: string | undefined;
|
|
754
|
-
constructor(opts: __ExceptionOptionType<VolumeNotFound, __BaseException>);
|
|
755
|
-
}
|
|
756
857
|
export interface S3DataRepositoryConfiguration {
|
|
757
858
|
AutoImportPolicy?: AutoImportPolicy | undefined;
|
|
758
859
|
AutoExportPolicy?: AutoExportPolicy | undefined;
|
|
@@ -1557,6 +1658,38 @@ export interface DescribeFileSystemsRequest {
|
|
|
1557
1658
|
MaxResults?: number | undefined;
|
|
1558
1659
|
NextToken?: string | undefined;
|
|
1559
1660
|
}
|
|
1661
|
+
export declare const S3AccessPointAttachmentsFilterName: {
|
|
1662
|
+
readonly FILE_SYSTEM_ID: "file-system-id";
|
|
1663
|
+
readonly TYPE: "type";
|
|
1664
|
+
readonly VOLUME_ID: "volume-id";
|
|
1665
|
+
};
|
|
1666
|
+
export type S3AccessPointAttachmentsFilterName =
|
|
1667
|
+
(typeof S3AccessPointAttachmentsFilterName)[keyof typeof S3AccessPointAttachmentsFilterName];
|
|
1668
|
+
export interface S3AccessPointAttachmentsFilter {
|
|
1669
|
+
Name?: S3AccessPointAttachmentsFilterName | undefined;
|
|
1670
|
+
Values?: string[] | undefined;
|
|
1671
|
+
}
|
|
1672
|
+
export interface DescribeS3AccessPointAttachmentsRequest {
|
|
1673
|
+
Names?: string[] | undefined;
|
|
1674
|
+
Filters?: S3AccessPointAttachmentsFilter[] | undefined;
|
|
1675
|
+
MaxResults?: number | undefined;
|
|
1676
|
+
NextToken?: string | undefined;
|
|
1677
|
+
}
|
|
1678
|
+
export interface DescribeS3AccessPointAttachmentsResponse {
|
|
1679
|
+
S3AccessPointAttachments?: S3AccessPointAttachment[] | undefined;
|
|
1680
|
+
NextToken?: string | undefined;
|
|
1681
|
+
}
|
|
1682
|
+
export declare class S3AccessPointAttachmentNotFound extends __BaseException {
|
|
1683
|
+
readonly name: "S3AccessPointAttachmentNotFound";
|
|
1684
|
+
readonly $fault: "client";
|
|
1685
|
+
Message?: string | undefined;
|
|
1686
|
+
constructor(
|
|
1687
|
+
opts: __ExceptionOptionType<
|
|
1688
|
+
S3AccessPointAttachmentNotFound,
|
|
1689
|
+
__BaseException
|
|
1690
|
+
>
|
|
1691
|
+
);
|
|
1692
|
+
}
|
|
1560
1693
|
export interface DescribeSharedVpcConfigurationRequest {}
|
|
1561
1694
|
export interface DescribeSharedVpcConfigurationResponse {
|
|
1562
1695
|
EnableFsxRouteTableUpdatesFromParticipantAccounts?: string | undefined;
|
|
@@ -1613,6 +1746,14 @@ export interface DescribeVolumesRequest {
|
|
|
1613
1746
|
MaxResults?: number | undefined;
|
|
1614
1747
|
NextToken?: string | undefined;
|
|
1615
1748
|
}
|
|
1749
|
+
export interface DetachAndDeleteS3AccessPointRequest {
|
|
1750
|
+
ClientRequestToken?: string | undefined;
|
|
1751
|
+
Name: string | undefined;
|
|
1752
|
+
}
|
|
1753
|
+
export interface DetachAndDeleteS3AccessPointResponse {
|
|
1754
|
+
Lifecycle?: S3AccessPointAttachmentLifecycle | undefined;
|
|
1755
|
+
Name?: string | undefined;
|
|
1756
|
+
}
|
|
1616
1757
|
export interface DisassociateFileSystemAliasesRequest {
|
|
1617
1758
|
ClientRequestToken?: string | undefined;
|
|
1618
1759
|
FileSystemId: string | undefined;
|
|
@@ -1914,74 +2055,6 @@ export interface RestoreVolumeFromSnapshotResponse {
|
|
|
1914
2055
|
export interface CreateFileSystemFromBackupResponse {
|
|
1915
2056
|
FileSystem?: FileSystem | undefined;
|
|
1916
2057
|
}
|
|
1917
|
-
export interface CreateFileSystemResponse {
|
|
1918
|
-
FileSystem?: FileSystem | undefined;
|
|
1919
|
-
}
|
|
1920
|
-
export interface CreateSnapshotResponse {
|
|
1921
|
-
Snapshot?: Snapshot | undefined;
|
|
1922
|
-
}
|
|
1923
|
-
export interface CreateVolumeFromBackupResponse {
|
|
1924
|
-
Volume?: Volume | undefined;
|
|
1925
|
-
}
|
|
1926
|
-
export interface CreateVolumeResponse {
|
|
1927
|
-
Volume?: Volume | undefined;
|
|
1928
|
-
}
|
|
1929
|
-
export interface ReleaseFileSystemNfsV3LocksResponse {
|
|
1930
|
-
FileSystem?: FileSystem | undefined;
|
|
1931
|
-
}
|
|
1932
|
-
export interface StartMisconfiguredStateRecoveryResponse {
|
|
1933
|
-
FileSystem?: FileSystem | undefined;
|
|
1934
|
-
}
|
|
1935
|
-
export interface UpdateFileSystemResponse {
|
|
1936
|
-
FileSystem?: FileSystem | undefined;
|
|
1937
|
-
}
|
|
1938
|
-
export interface UpdateSnapshotResponse {
|
|
1939
|
-
Snapshot?: Snapshot | undefined;
|
|
1940
|
-
}
|
|
1941
|
-
export interface UpdateVolumeResponse {
|
|
1942
|
-
Volume?: Volume | undefined;
|
|
1943
|
-
}
|
|
1944
|
-
export interface DescribeFileSystemsResponse {
|
|
1945
|
-
FileSystems?: FileSystem[] | undefined;
|
|
1946
|
-
NextToken?: string | undefined;
|
|
1947
|
-
}
|
|
1948
|
-
export interface DescribeSnapshotsResponse {
|
|
1949
|
-
Snapshots?: Snapshot[] | undefined;
|
|
1950
|
-
NextToken?: string | undefined;
|
|
1951
|
-
}
|
|
1952
|
-
export interface DescribeVolumesResponse {
|
|
1953
|
-
Volumes?: Volume[] | undefined;
|
|
1954
|
-
NextToken?: string | undefined;
|
|
1955
|
-
}
|
|
1956
|
-
export interface Backup {
|
|
1957
|
-
BackupId: string | undefined;
|
|
1958
|
-
Lifecycle: BackupLifecycle | undefined;
|
|
1959
|
-
FailureDetails?: BackupFailureDetails | undefined;
|
|
1960
|
-
Type: BackupType | undefined;
|
|
1961
|
-
ProgressPercent?: number | undefined;
|
|
1962
|
-
CreationTime: Date | undefined;
|
|
1963
|
-
KmsKeyId?: string | undefined;
|
|
1964
|
-
ResourceARN?: string | undefined;
|
|
1965
|
-
Tags?: Tag[] | undefined;
|
|
1966
|
-
FileSystem: FileSystem | undefined;
|
|
1967
|
-
DirectoryInformation?: ActiveDirectoryBackupAttributes | undefined;
|
|
1968
|
-
OwnerId?: string | undefined;
|
|
1969
|
-
SourceBackupId?: string | undefined;
|
|
1970
|
-
SourceBackupRegion?: string | undefined;
|
|
1971
|
-
ResourceType?: ResourceType | undefined;
|
|
1972
|
-
Volume?: Volume | undefined;
|
|
1973
|
-
SizeInBytes?: number | undefined;
|
|
1974
|
-
}
|
|
1975
|
-
export interface CopyBackupResponse {
|
|
1976
|
-
Backup?: Backup | undefined;
|
|
1977
|
-
}
|
|
1978
|
-
export interface CreateBackupResponse {
|
|
1979
|
-
Backup?: Backup | undefined;
|
|
1980
|
-
}
|
|
1981
|
-
export interface DescribeBackupsResponse {
|
|
1982
|
-
Backups?: Backup[] | undefined;
|
|
1983
|
-
NextToken?: string | undefined;
|
|
1984
|
-
}
|
|
1985
2058
|
export declare const OntapFileSystemConfigurationFilterSensitiveLog: (
|
|
1986
2059
|
obj: OntapFileSystemConfiguration
|
|
1987
2060
|
) => any;
|
|
@@ -2039,49 +2112,3 @@ export declare const RestoreVolumeFromSnapshotResponseFilterSensitiveLog: (
|
|
|
2039
2112
|
export declare const CreateFileSystemFromBackupResponseFilterSensitiveLog: (
|
|
2040
2113
|
obj: CreateFileSystemFromBackupResponse
|
|
2041
2114
|
) => any;
|
|
2042
|
-
export declare const CreateFileSystemResponseFilterSensitiveLog: (
|
|
2043
|
-
obj: CreateFileSystemResponse
|
|
2044
|
-
) => any;
|
|
2045
|
-
export declare const CreateSnapshotResponseFilterSensitiveLog: (
|
|
2046
|
-
obj: CreateSnapshotResponse
|
|
2047
|
-
) => any;
|
|
2048
|
-
export declare const CreateVolumeFromBackupResponseFilterSensitiveLog: (
|
|
2049
|
-
obj: CreateVolumeFromBackupResponse
|
|
2050
|
-
) => any;
|
|
2051
|
-
export declare const CreateVolumeResponseFilterSensitiveLog: (
|
|
2052
|
-
obj: CreateVolumeResponse
|
|
2053
|
-
) => any;
|
|
2054
|
-
export declare const ReleaseFileSystemNfsV3LocksResponseFilterSensitiveLog: (
|
|
2055
|
-
obj: ReleaseFileSystemNfsV3LocksResponse
|
|
2056
|
-
) => any;
|
|
2057
|
-
export declare const StartMisconfiguredStateRecoveryResponseFilterSensitiveLog: (
|
|
2058
|
-
obj: StartMisconfiguredStateRecoveryResponse
|
|
2059
|
-
) => any;
|
|
2060
|
-
export declare const UpdateFileSystemResponseFilterSensitiveLog: (
|
|
2061
|
-
obj: UpdateFileSystemResponse
|
|
2062
|
-
) => any;
|
|
2063
|
-
export declare const UpdateSnapshotResponseFilterSensitiveLog: (
|
|
2064
|
-
obj: UpdateSnapshotResponse
|
|
2065
|
-
) => any;
|
|
2066
|
-
export declare const UpdateVolumeResponseFilterSensitiveLog: (
|
|
2067
|
-
obj: UpdateVolumeResponse
|
|
2068
|
-
) => any;
|
|
2069
|
-
export declare const DescribeFileSystemsResponseFilterSensitiveLog: (
|
|
2070
|
-
obj: DescribeFileSystemsResponse
|
|
2071
|
-
) => any;
|
|
2072
|
-
export declare const DescribeSnapshotsResponseFilterSensitiveLog: (
|
|
2073
|
-
obj: DescribeSnapshotsResponse
|
|
2074
|
-
) => any;
|
|
2075
|
-
export declare const DescribeVolumesResponseFilterSensitiveLog: (
|
|
2076
|
-
obj: DescribeVolumesResponse
|
|
2077
|
-
) => any;
|
|
2078
|
-
export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
|
|
2079
|
-
export declare const CopyBackupResponseFilterSensitiveLog: (
|
|
2080
|
-
obj: CopyBackupResponse
|
|
2081
|
-
) => any;
|
|
2082
|
-
export declare const CreateBackupResponseFilterSensitiveLog: (
|
|
2083
|
-
obj: CreateBackupResponse
|
|
2084
|
-
) => any;
|
|
2085
|
-
export declare const DescribeBackupsResponseFilterSensitiveLog: (
|
|
2086
|
-
obj: DescribeBackupsResponse
|
|
2087
|
-
) => any;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ActiveDirectoryBackupAttributes,
|
|
3
|
+
BackupFailureDetails,
|
|
4
|
+
BackupLifecycle,
|
|
5
|
+
BackupType,
|
|
6
|
+
FileSystem,
|
|
7
|
+
ResourceType,
|
|
8
|
+
Snapshot,
|
|
9
|
+
Tag,
|
|
10
|
+
Volume,
|
|
11
|
+
} from "./models_0";
|
|
12
|
+
export interface CreateFileSystemResponse {
|
|
13
|
+
FileSystem?: FileSystem | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface CreateSnapshotResponse {
|
|
16
|
+
Snapshot?: Snapshot | undefined;
|
|
17
|
+
}
|
|
18
|
+
export interface CreateVolumeFromBackupResponse {
|
|
19
|
+
Volume?: Volume | undefined;
|
|
20
|
+
}
|
|
21
|
+
export interface CreateVolumeResponse {
|
|
22
|
+
Volume?: Volume | undefined;
|
|
23
|
+
}
|
|
24
|
+
export interface ReleaseFileSystemNfsV3LocksResponse {
|
|
25
|
+
FileSystem?: FileSystem | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface StartMisconfiguredStateRecoveryResponse {
|
|
28
|
+
FileSystem?: FileSystem | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface UpdateFileSystemResponse {
|
|
31
|
+
FileSystem?: FileSystem | undefined;
|
|
32
|
+
}
|
|
33
|
+
export interface UpdateSnapshotResponse {
|
|
34
|
+
Snapshot?: Snapshot | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface UpdateVolumeResponse {
|
|
37
|
+
Volume?: Volume | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface DescribeFileSystemsResponse {
|
|
40
|
+
FileSystems?: FileSystem[] | undefined;
|
|
41
|
+
NextToken?: string | undefined;
|
|
42
|
+
}
|
|
43
|
+
export interface DescribeSnapshotsResponse {
|
|
44
|
+
Snapshots?: Snapshot[] | undefined;
|
|
45
|
+
NextToken?: string | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface DescribeVolumesResponse {
|
|
48
|
+
Volumes?: Volume[] | undefined;
|
|
49
|
+
NextToken?: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface Backup {
|
|
52
|
+
BackupId: string | undefined;
|
|
53
|
+
Lifecycle: BackupLifecycle | undefined;
|
|
54
|
+
FailureDetails?: BackupFailureDetails | undefined;
|
|
55
|
+
Type: BackupType | undefined;
|
|
56
|
+
ProgressPercent?: number | undefined;
|
|
57
|
+
CreationTime: Date | undefined;
|
|
58
|
+
KmsKeyId?: string | undefined;
|
|
59
|
+
ResourceARN?: string | undefined;
|
|
60
|
+
Tags?: Tag[] | undefined;
|
|
61
|
+
FileSystem: FileSystem | undefined;
|
|
62
|
+
DirectoryInformation?: ActiveDirectoryBackupAttributes | undefined;
|
|
63
|
+
OwnerId?: string | undefined;
|
|
64
|
+
SourceBackupId?: string | undefined;
|
|
65
|
+
SourceBackupRegion?: string | undefined;
|
|
66
|
+
ResourceType?: ResourceType | undefined;
|
|
67
|
+
Volume?: Volume | undefined;
|
|
68
|
+
SizeInBytes?: number | undefined;
|
|
69
|
+
}
|
|
70
|
+
export interface CopyBackupResponse {
|
|
71
|
+
Backup?: Backup | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface CreateBackupResponse {
|
|
74
|
+
Backup?: Backup | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface DescribeBackupsResponse {
|
|
77
|
+
Backups?: Backup[] | undefined;
|
|
78
|
+
NextToken?: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
export declare const CreateFileSystemResponseFilterSensitiveLog: (
|
|
81
|
+
obj: CreateFileSystemResponse
|
|
82
|
+
) => any;
|
|
83
|
+
export declare const CreateSnapshotResponseFilterSensitiveLog: (
|
|
84
|
+
obj: CreateSnapshotResponse
|
|
85
|
+
) => any;
|
|
86
|
+
export declare const CreateVolumeFromBackupResponseFilterSensitiveLog: (
|
|
87
|
+
obj: CreateVolumeFromBackupResponse
|
|
88
|
+
) => any;
|
|
89
|
+
export declare const CreateVolumeResponseFilterSensitiveLog: (
|
|
90
|
+
obj: CreateVolumeResponse
|
|
91
|
+
) => any;
|
|
92
|
+
export declare const ReleaseFileSystemNfsV3LocksResponseFilterSensitiveLog: (
|
|
93
|
+
obj: ReleaseFileSystemNfsV3LocksResponse
|
|
94
|
+
) => any;
|
|
95
|
+
export declare const StartMisconfiguredStateRecoveryResponseFilterSensitiveLog: (
|
|
96
|
+
obj: StartMisconfiguredStateRecoveryResponse
|
|
97
|
+
) => any;
|
|
98
|
+
export declare const UpdateFileSystemResponseFilterSensitiveLog: (
|
|
99
|
+
obj: UpdateFileSystemResponse
|
|
100
|
+
) => any;
|
|
101
|
+
export declare const UpdateSnapshotResponseFilterSensitiveLog: (
|
|
102
|
+
obj: UpdateSnapshotResponse
|
|
103
|
+
) => any;
|
|
104
|
+
export declare const UpdateVolumeResponseFilterSensitiveLog: (
|
|
105
|
+
obj: UpdateVolumeResponse
|
|
106
|
+
) => any;
|
|
107
|
+
export declare const DescribeFileSystemsResponseFilterSensitiveLog: (
|
|
108
|
+
obj: DescribeFileSystemsResponse
|
|
109
|
+
) => any;
|
|
110
|
+
export declare const DescribeSnapshotsResponseFilterSensitiveLog: (
|
|
111
|
+
obj: DescribeSnapshotsResponse
|
|
112
|
+
) => any;
|
|
113
|
+
export declare const DescribeVolumesResponseFilterSensitiveLog: (
|
|
114
|
+
obj: DescribeVolumesResponse
|
|
115
|
+
) => any;
|
|
116
|
+
export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
|
|
117
|
+
export declare const CopyBackupResponseFilterSensitiveLog: (
|
|
118
|
+
obj: CopyBackupResponse
|
|
119
|
+
) => any;
|
|
120
|
+
export declare const CreateBackupResponseFilterSensitiveLog: (
|
|
121
|
+
obj: CreateBackupResponse
|
|
122
|
+
) => any;
|
|
123
|
+
export declare const DescribeBackupsResponseFilterSensitiveLog: (
|
|
124
|
+
obj: DescribeBackupsResponse
|
|
125
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeS3AccessPointAttachmentsCommandInput,
|
|
4
|
+
DescribeS3AccessPointAttachmentsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeS3AccessPointAttachmentsCommand";
|
|
6
|
+
import { FSxPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeS3AccessPointAttachments: (
|
|
8
|
+
config: FSxPaginationConfiguration,
|
|
9
|
+
input: DescribeS3AccessPointAttachmentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeS3AccessPointAttachmentsCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./DescribeDataRepositoryTasksPaginator";
|
|
|
4
4
|
export * from "./DescribeFileCachesPaginator";
|
|
5
5
|
export * from "./DescribeFileSystemAliasesPaginator";
|
|
6
6
|
export * from "./DescribeFileSystemsPaginator";
|
|
7
|
+
export * from "./DescribeS3AccessPointAttachmentsPaginator";
|
|
7
8
|
export * from "./DescribeSnapshotsPaginator";
|
|
8
9
|
export * from "./DescribeStorageVirtualMachinesPaginator";
|
|
9
10
|
export * from "./DescribeVolumesPaginator";
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CopySnapshotAndUpdateVolumeCommandInput,
|
|
20
20
|
CopySnapshotAndUpdateVolumeCommandOutput,
|
|
21
21
|
} from "../commands/CopySnapshotAndUpdateVolumeCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateAndAttachS3AccessPointCommandInput,
|
|
24
|
+
CreateAndAttachS3AccessPointCommandOutput,
|
|
25
|
+
} from "../commands/CreateAndAttachS3AccessPointCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateBackupCommandInput,
|
|
24
28
|
CreateBackupCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
DescribeFileSystemsCommandInput,
|
|
112
116
|
DescribeFileSystemsCommandOutput,
|
|
113
117
|
} from "../commands/DescribeFileSystemsCommand";
|
|
118
|
+
import {
|
|
119
|
+
DescribeS3AccessPointAttachmentsCommandInput,
|
|
120
|
+
DescribeS3AccessPointAttachmentsCommandOutput,
|
|
121
|
+
} from "../commands/DescribeS3AccessPointAttachmentsCommand";
|
|
114
122
|
import {
|
|
115
123
|
DescribeSharedVpcConfigurationCommandInput,
|
|
116
124
|
DescribeSharedVpcConfigurationCommandOutput,
|
|
@@ -127,6 +135,10 @@ import {
|
|
|
127
135
|
DescribeVolumesCommandInput,
|
|
128
136
|
DescribeVolumesCommandOutput,
|
|
129
137
|
} from "../commands/DescribeVolumesCommand";
|
|
138
|
+
import {
|
|
139
|
+
DetachAndDeleteS3AccessPointCommandInput,
|
|
140
|
+
DetachAndDeleteS3AccessPointCommandOutput,
|
|
141
|
+
} from "../commands/DetachAndDeleteS3AccessPointCommand";
|
|
130
142
|
import {
|
|
131
143
|
DisassociateFileSystemAliasesCommandInput,
|
|
132
144
|
DisassociateFileSystemAliasesCommandOutput,
|
|
@@ -199,6 +211,10 @@ export declare const se_CopySnapshotAndUpdateVolumeCommand: (
|
|
|
199
211
|
input: CopySnapshotAndUpdateVolumeCommandInput,
|
|
200
212
|
context: __SerdeContext
|
|
201
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_CreateAndAttachS3AccessPointCommand: (
|
|
215
|
+
input: CreateAndAttachS3AccessPointCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
202
218
|
export declare const se_CreateBackupCommand: (
|
|
203
219
|
input: CreateBackupCommandInput,
|
|
204
220
|
context: __SerdeContext
|
|
@@ -291,6 +307,10 @@ export declare const se_DescribeFileSystemsCommand: (
|
|
|
291
307
|
input: DescribeFileSystemsCommandInput,
|
|
292
308
|
context: __SerdeContext
|
|
293
309
|
) => Promise<__HttpRequest>;
|
|
310
|
+
export declare const se_DescribeS3AccessPointAttachmentsCommand: (
|
|
311
|
+
input: DescribeS3AccessPointAttachmentsCommandInput,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<__HttpRequest>;
|
|
294
314
|
export declare const se_DescribeSharedVpcConfigurationCommand: (
|
|
295
315
|
input: DescribeSharedVpcConfigurationCommandInput,
|
|
296
316
|
context: __SerdeContext
|
|
@@ -307,6 +327,10 @@ export declare const se_DescribeVolumesCommand: (
|
|
|
307
327
|
input: DescribeVolumesCommandInput,
|
|
308
328
|
context: __SerdeContext
|
|
309
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_DetachAndDeleteS3AccessPointCommand: (
|
|
331
|
+
input: DetachAndDeleteS3AccessPointCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
310
334
|
export declare const se_DisassociateFileSystemAliasesCommand: (
|
|
311
335
|
input: DisassociateFileSystemAliasesCommandInput,
|
|
312
336
|
context: __SerdeContext
|
|
@@ -379,6 +403,10 @@ export declare const de_CopySnapshotAndUpdateVolumeCommand: (
|
|
|
379
403
|
output: __HttpResponse,
|
|
380
404
|
context: __SerdeContext
|
|
381
405
|
) => Promise<CopySnapshotAndUpdateVolumeCommandOutput>;
|
|
406
|
+
export declare const de_CreateAndAttachS3AccessPointCommand: (
|
|
407
|
+
output: __HttpResponse,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<CreateAndAttachS3AccessPointCommandOutput>;
|
|
382
410
|
export declare const de_CreateBackupCommand: (
|
|
383
411
|
output: __HttpResponse,
|
|
384
412
|
context: __SerdeContext
|
|
@@ -471,6 +499,10 @@ export declare const de_DescribeFileSystemsCommand: (
|
|
|
471
499
|
output: __HttpResponse,
|
|
472
500
|
context: __SerdeContext
|
|
473
501
|
) => Promise<DescribeFileSystemsCommandOutput>;
|
|
502
|
+
export declare const de_DescribeS3AccessPointAttachmentsCommand: (
|
|
503
|
+
output: __HttpResponse,
|
|
504
|
+
context: __SerdeContext
|
|
505
|
+
) => Promise<DescribeS3AccessPointAttachmentsCommandOutput>;
|
|
474
506
|
export declare const de_DescribeSharedVpcConfigurationCommand: (
|
|
475
507
|
output: __HttpResponse,
|
|
476
508
|
context: __SerdeContext
|
|
@@ -487,6 +519,10 @@ export declare const de_DescribeVolumesCommand: (
|
|
|
487
519
|
output: __HttpResponse,
|
|
488
520
|
context: __SerdeContext
|
|
489
521
|
) => Promise<DescribeVolumesCommandOutput>;
|
|
522
|
+
export declare const de_DetachAndDeleteS3AccessPointCommand: (
|
|
523
|
+
output: __HttpResponse,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<DetachAndDeleteS3AccessPointCommandOutput>;
|
|
490
526
|
export declare const de_DisassociateFileSystemAliasesCommand: (
|
|
491
527
|
output: __HttpResponse,
|
|
492
528
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fsx",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.837.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-fsx",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.835.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.835.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.835.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.835.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.5.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.13",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.4",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.20",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.20",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
57
|
+
"@smithy/util-retry": "^4.0.6",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|