@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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
FSxClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../FSxClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAndAttachS3AccessPointRequest,
|
|
10
|
+
CreateAndAttachS3AccessPointResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAndAttachS3AccessPointCommandInput
|
|
15
|
+
extends CreateAndAttachS3AccessPointRequest {}
|
|
16
|
+
export interface CreateAndAttachS3AccessPointCommandOutput
|
|
17
|
+
extends CreateAndAttachS3AccessPointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAndAttachS3AccessPointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAndAttachS3AccessPointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAndAttachS3AccessPointCommandInput,
|
|
24
|
+
CreateAndAttachS3AccessPointCommandOutput,
|
|
25
|
+
FSxClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateAndAttachS3AccessPointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAndAttachS3AccessPointCommandInput,
|
|
33
|
+
CreateAndAttachS3AccessPointCommandOutput,
|
|
34
|
+
FSxClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAndAttachS3AccessPointCommand extends CreateAndAttachS3AccessPointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAndAttachS3AccessPointRequest;
|
|
44
|
+
output: CreateAndAttachS3AccessPointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAndAttachS3AccessPointCommandInput;
|
|
48
|
+
output: CreateAndAttachS3AccessPointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import { CreateBackupRequest
|
|
8
|
+
import { CreateBackupRequest } from "../models/models_0";
|
|
9
|
+
import { CreateBackupResponse } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface CreateBackupCommandInput extends CreateBackupRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateFileSystemResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateFileSystemRequest } from "../models/models_0";
|
|
9
|
+
import { CreateFileSystemResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateFileSystemCommandInput extends CreateFileSystemRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateSnapshotResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateSnapshotRequest } from "../models/models_0";
|
|
9
|
+
import { CreateSnapshotResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateSnapshotCommandInput extends CreateSnapshotRequest {}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import { CreateVolumeRequest
|
|
8
|
+
import { CreateVolumeRequest } from "../models/models_0";
|
|
9
|
+
import { CreateVolumeResponse } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface CreateVolumeCommandInput extends CreateVolumeRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateVolumeFromBackupResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateVolumeFromBackupRequest } from "../models/models_0";
|
|
9
|
+
import { CreateVolumeFromBackupResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateVolumeFromBackupCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeBackupsResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DescribeBackupsRequest } from "../models/models_0";
|
|
9
|
+
import { DescribeBackupsResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeFileSystemsResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DescribeFileSystemsRequest } from "../models/models_0";
|
|
9
|
+
import { DescribeFileSystemsResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeFileSystemsCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
FSxClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../FSxClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeS3AccessPointAttachmentsRequest,
|
|
10
|
+
DescribeS3AccessPointAttachmentsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeS3AccessPointAttachmentsCommandInput
|
|
15
|
+
extends DescribeS3AccessPointAttachmentsRequest {}
|
|
16
|
+
export interface DescribeS3AccessPointAttachmentsCommandOutput
|
|
17
|
+
extends DescribeS3AccessPointAttachmentsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeS3AccessPointAttachmentsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeS3AccessPointAttachmentsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeS3AccessPointAttachmentsCommandInput,
|
|
24
|
+
DescribeS3AccessPointAttachmentsCommandOutput,
|
|
25
|
+
FSxClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeS3AccessPointAttachmentsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeS3AccessPointAttachmentsCommandInput,
|
|
33
|
+
DescribeS3AccessPointAttachmentsCommandOutput,
|
|
34
|
+
FSxClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeS3AccessPointAttachmentsCommand extends DescribeS3AccessPointAttachmentsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeS3AccessPointAttachmentsRequest;
|
|
44
|
+
output: DescribeS3AccessPointAttachmentsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeS3AccessPointAttachmentsCommandInput;
|
|
48
|
+
output: DescribeS3AccessPointAttachmentsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeSnapshotsResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DescribeSnapshotsRequest } from "../models/models_0";
|
|
9
|
+
import { DescribeSnapshotsResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeSnapshotsCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DescribeVolumesResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DescribeVolumesRequest } from "../models/models_0";
|
|
9
|
+
import { DescribeVolumesResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DescribeVolumesCommandInput extends DescribeVolumesRequest {}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
FSxClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../FSxClient";
|
|
8
|
+
import {
|
|
9
|
+
DetachAndDeleteS3AccessPointRequest,
|
|
10
|
+
DetachAndDeleteS3AccessPointResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DetachAndDeleteS3AccessPointCommandInput
|
|
15
|
+
extends DetachAndDeleteS3AccessPointRequest {}
|
|
16
|
+
export interface DetachAndDeleteS3AccessPointCommandOutput
|
|
17
|
+
extends DetachAndDeleteS3AccessPointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DetachAndDeleteS3AccessPointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DetachAndDeleteS3AccessPointCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DetachAndDeleteS3AccessPointCommandInput,
|
|
24
|
+
DetachAndDeleteS3AccessPointCommandOutput,
|
|
25
|
+
FSxClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DetachAndDeleteS3AccessPointCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DetachAndDeleteS3AccessPointCommandInput,
|
|
33
|
+
DetachAndDeleteS3AccessPointCommandOutput,
|
|
34
|
+
FSxClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DetachAndDeleteS3AccessPointCommand extends DetachAndDeleteS3AccessPointCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DetachAndDeleteS3AccessPointRequest;
|
|
44
|
+
output: DetachAndDeleteS3AccessPointResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DetachAndDeleteS3AccessPointCommandInput;
|
|
48
|
+
output: DetachAndDeleteS3AccessPointCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ReleaseFileSystemNfsV3LocksResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { ReleaseFileSystemNfsV3LocksRequest } from "../models/models_0";
|
|
9
|
+
import { ReleaseFileSystemNfsV3LocksResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ReleaseFileSystemNfsV3LocksCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
StartMisconfiguredStateRecoveryResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { StartMisconfiguredStateRecoveryRequest } from "../models/models_0";
|
|
9
|
+
import { StartMisconfiguredStateRecoveryResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface StartMisconfiguredStateRecoveryCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
UpdateFileSystemResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { UpdateFileSystemRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateFileSystemResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface UpdateFileSystemCommandInput extends UpdateFileSystemRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
UpdateSnapshotResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { UpdateSnapshotRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateSnapshotResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface UpdateSnapshotCommandInput extends UpdateSnapshotRequest {}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../FSxClient";
|
|
8
|
-
import { UpdateVolumeRequest
|
|
8
|
+
import { UpdateVolumeRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateVolumeResponse } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface UpdateVolumeCommandInput extends UpdateVolumeRequest {}
|
|
@@ -2,6 +2,7 @@ export * from "./AssociateFileSystemAliasesCommand";
|
|
|
2
2
|
export * from "./CancelDataRepositoryTaskCommand";
|
|
3
3
|
export * from "./CopyBackupCommand";
|
|
4
4
|
export * from "./CopySnapshotAndUpdateVolumeCommand";
|
|
5
|
+
export * from "./CreateAndAttachS3AccessPointCommand";
|
|
5
6
|
export * from "./CreateBackupCommand";
|
|
6
7
|
export * from "./CreateDataRepositoryAssociationCommand";
|
|
7
8
|
export * from "./CreateDataRepositoryTaskCommand";
|
|
@@ -25,10 +26,12 @@ export * from "./DescribeDataRepositoryTasksCommand";
|
|
|
25
26
|
export * from "./DescribeFileCachesCommand";
|
|
26
27
|
export * from "./DescribeFileSystemAliasesCommand";
|
|
27
28
|
export * from "./DescribeFileSystemsCommand";
|
|
29
|
+
export * from "./DescribeS3AccessPointAttachmentsCommand";
|
|
28
30
|
export * from "./DescribeSharedVpcConfigurationCommand";
|
|
29
31
|
export * from "./DescribeSnapshotsCommand";
|
|
30
32
|
export * from "./DescribeStorageVirtualMachinesCommand";
|
|
31
33
|
export * from "./DescribeVolumesCommand";
|
|
34
|
+
export * from "./DetachAndDeleteS3AccessPointCommand";
|
|
32
35
|
export * from "./DisassociateFileSystemAliasesCommand";
|
|
33
36
|
export * from "./ListTagsForResourceCommand";
|
|
34
37
|
export * from "./ReleaseFileSystemNfsV3LocksCommand";
|
|
@@ -16,7 +16,10 @@ export interface ClientInputEndpointParameters {
|
|
|
16
16
|
| EndpointV2
|
|
17
17
|
| Provider<EndpointV2>;
|
|
18
18
|
}
|
|
19
|
-
export type ClientResolvedEndpointParameters =
|
|
19
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
20
|
+
ClientInputEndpointParameters,
|
|
21
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
22
|
+
> & {
|
|
20
23
|
defaultSigningName: string;
|
|
21
24
|
};
|
|
22
25
|
export declare const resolveClientEndpointParameters: <T>(
|