@aws-sdk/client-s3files 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/S3Files.d.ts +68 -71
- package/dist-types/ts3.4/S3FilesClient.d.ts +16 -29
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/GetAccessPointCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetFileSystemCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetFileSystemPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetMountTargetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSynchronizationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAccessPointsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListFileSystemsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListMountTargetsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSynchronizationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateMountTargetCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateMountTargetRequest,
|
|
4
|
-
CreateMountTargetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateMountTargetRequest, CreateMountTargetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateMountTargetCommandInput
|
|
8
|
-
extends CreateMountTargetRequest {}
|
|
4
|
+
export interface CreateMountTargetCommandInput extends CreateMountTargetRequest {}
|
|
9
5
|
export interface CreateMountTargetCommandOutput
|
|
10
|
-
extends CreateMountTargetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateMountTargetResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateMountTargetCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateMountTargetCommandInput
|
|
9
|
+
input: CreateMountTargetCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateMountTargetCommandInput,
|
|
17
12
|
CreateMountTargetCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateMountTargetCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateMountTargetCommandInput
|
|
18
|
+
input: CreateMountTargetCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateMountTargetCommandInput,
|
|
26
21
|
CreateMountTargetCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteAccessPointRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteAccessPointCommandInput
|
|
5
|
-
extends DeleteAccessPointRequest {}
|
|
4
|
+
export interface DeleteAccessPointCommandInput extends DeleteAccessPointRequest {}
|
|
6
5
|
export interface DeleteAccessPointCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteAccessPointCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteAccessPointCommandInput
|
|
8
|
+
input: DeleteAccessPointCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteAccessPointCommandInput,
|
|
12
11
|
DeleteAccessPointCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteAccessPointCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteAccessPointCommandInput
|
|
17
|
+
input: DeleteAccessPointCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteAccessPointCommandInput,
|
|
21
20
|
DeleteAccessPointCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {}
|
|
|
5
5
|
export interface DeleteFileSystemCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeleteFileSystemCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeleteFileSystemCommandInput
|
|
8
|
+
input: DeleteFileSystemCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteFileSystemCommandInput,
|
|
11
11
|
DeleteFileSystemCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeleteFileSystemCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeleteFileSystemCommandInput
|
|
17
|
+
input: DeleteFileSystemCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteFileSystemCommandInput,
|
|
20
20
|
DeleteFileSystemCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteFileSystemPolicyRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteFileSystemPolicyCommandInput
|
|
5
|
-
extends DeleteFileSystemPolicyRequest {}
|
|
4
|
+
export interface DeleteFileSystemPolicyCommandInput extends DeleteFileSystemPolicyRequest {}
|
|
6
5
|
export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteFileSystemPolicyCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteFileSystemPolicyCommandInput
|
|
8
|
+
input: DeleteFileSystemPolicyCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteFileSystemPolicyCommandInput,
|
|
12
11
|
DeleteFileSystemPolicyCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteFileSystemPolicyCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteFileSystemPolicyCommandInput
|
|
17
|
+
input: DeleteFileSystemPolicyCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteFileSystemPolicyCommandInput,
|
|
21
20
|
DeleteFileSystemPolicyCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteMountTargetRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteMountTargetCommandInput
|
|
5
|
-
extends DeleteMountTargetRequest {}
|
|
4
|
+
export interface DeleteMountTargetCommandInput extends DeleteMountTargetRequest {}
|
|
6
5
|
export interface DeleteMountTargetCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteMountTargetCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteMountTargetCommandInput
|
|
8
|
+
input: DeleteMountTargetCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteMountTargetCommandInput,
|
|
12
11
|
DeleteMountTargetCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteMountTargetCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteMountTargetCommandInput
|
|
17
|
+
input: DeleteMountTargetCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteMountTargetCommandInput,
|
|
21
20
|
DeleteMountTargetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAccessPointRequest,
|
|
4
|
-
GetAccessPointResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAccessPointRequest, GetAccessPointResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetAccessPointCommandInput extends GetAccessPointRequest {}
|
|
8
|
-
export interface GetAccessPointCommandOutput
|
|
9
|
-
extends GetAccessPointResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAccessPointCommandOutput extends GetAccessPointResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetAccessPointCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetAccessPointCommandInput
|
|
8
|
+
input: GetAccessPointCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetAccessPointCommandInput,
|
|
16
11
|
GetAccessPointCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetAccessPointCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetAccessPointCommandInput
|
|
17
|
+
input: GetAccessPointCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetAccessPointCommandInput,
|
|
25
20
|
GetAccessPointCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetFileSystemRequest,
|
|
4
|
-
GetFileSystemResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetFileSystemRequest, GetFileSystemResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetFileSystemCommandInput extends GetFileSystemRequest {}
|
|
8
|
-
export interface GetFileSystemCommandOutput
|
|
9
|
-
extends GetFileSystemResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetFileSystemCommandOutput extends GetFileSystemResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetFileSystemCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetFileSystemCommandInput
|
|
8
|
+
input: GetFileSystemCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetFileSystemCommandInput,
|
|
16
11
|
GetFileSystemCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetFileSystemCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetFileSystemCommandInput
|
|
17
|
+
input: GetFileSystemCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetFileSystemCommandInput,
|
|
25
20
|
GetFileSystemCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetFileSystemPolicyRequest,
|
|
4
|
-
GetFileSystemPolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetFileSystemPolicyRequest, GetFileSystemPolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetFileSystemPolicyCommandInput
|
|
8
|
-
extends GetFileSystemPolicyRequest {}
|
|
4
|
+
export interface GetFileSystemPolicyCommandInput extends GetFileSystemPolicyRequest {}
|
|
9
5
|
export interface GetFileSystemPolicyCommandOutput
|
|
10
|
-
extends GetFileSystemPolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetFileSystemPolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetFileSystemPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetFileSystemPolicyCommandInput
|
|
9
|
+
input: GetFileSystemPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetFileSystemPolicyCommandInput,
|
|
17
12
|
GetFileSystemPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetFileSystemPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetFileSystemPolicyCommandInput
|
|
18
|
+
input: GetFileSystemPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetFileSystemPolicyCommandInput,
|
|
26
21
|
GetFileSystemPolicyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetMountTargetRequest,
|
|
4
|
-
GetMountTargetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetMountTargetRequest, GetMountTargetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetMountTargetCommandInput extends GetMountTargetRequest {}
|
|
8
|
-
export interface GetMountTargetCommandOutput
|
|
9
|
-
extends GetMountTargetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetMountTargetCommandOutput extends GetMountTargetResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetMountTargetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetMountTargetCommandInput
|
|
8
|
+
input: GetMountTargetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetMountTargetCommandInput,
|
|
16
11
|
GetMountTargetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetMountTargetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetMountTargetCommandInput
|
|
17
|
+
input: GetMountTargetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetMountTargetCommandInput,
|
|
25
20
|
GetMountTargetCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetSynchronizationConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSynchronizationConfigurationCommandInput
|
|
8
|
-
extends GetSynchronizationConfigurationRequest {}
|
|
7
|
+
export interface GetSynchronizationConfigurationCommandInput extends GetSynchronizationConfigurationRequest {}
|
|
9
8
|
export interface GetSynchronizationConfigurationCommandOutput
|
|
10
|
-
extends GetSynchronizationConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetSynchronizationConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetSynchronizationConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetSynchronizationConfigurationCommandInput
|
|
12
|
+
input: GetSynchronizationConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetSynchronizationConfigurationCommandInput,
|
|
17
15
|
GetSynchronizationConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetSynchronizationConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetSynchronizationConfigurationCommandInput
|
|
21
|
+
input: GetSynchronizationConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetSynchronizationConfigurationCommandInput,
|
|
26
24
|
GetSynchronizationConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAccessPointsRequest,
|
|
4
|
-
ListAccessPointsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAccessPointsRequest, ListAccessPointsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAccessPointsCommandInput extends ListAccessPointsRequest {}
|
|
8
|
-
export interface ListAccessPointsCommandOutput
|
|
9
|
-
extends ListAccessPointsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAccessPointsCommandOutput extends ListAccessPointsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAccessPointsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAccessPointsCommandInput
|
|
8
|
+
input: ListAccessPointsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAccessPointsCommandInput,
|
|
16
11
|
ListAccessPointsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListAccessPointsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListAccessPointsCommandInput
|
|
17
|
+
input: ListAccessPointsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListAccessPointsCommandInput,
|
|
25
20
|
ListAccessPointsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListFileSystemsRequest,
|
|
4
|
-
ListFileSystemsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListFileSystemsRequest, ListFileSystemsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListFileSystemsCommandInput extends ListFileSystemsRequest {}
|
|
8
|
-
export interface ListFileSystemsCommandOutput
|
|
9
|
-
extends ListFileSystemsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListFileSystemsCommandOutput extends ListFileSystemsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListFileSystemsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListFileSystemsCommandInput
|
|
8
|
+
input: ListFileSystemsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListFileSystemsCommandInput,
|
|
16
11
|
ListFileSystemsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListMountTargetsRequest,
|
|
4
|
-
ListMountTargetsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListMountTargetsRequest, ListMountTargetsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListMountTargetsCommandInput extends ListMountTargetsRequest {}
|
|
8
|
-
export interface ListMountTargetsCommandOutput
|
|
9
|
-
extends ListMountTargetsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListMountTargetsCommandOutput extends ListMountTargetsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListMountTargetsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListMountTargetsCommandInput
|
|
8
|
+
input: ListMountTargetsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListMountTargetsCommandInput,
|
|
16
11
|
ListMountTargetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutFileSystemPolicyRequest,
|
|
4
|
-
PutFileSystemPolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutFileSystemPolicyRequest, PutFileSystemPolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutFileSystemPolicyCommandInput
|
|
8
|
-
extends PutFileSystemPolicyRequest {}
|
|
4
|
+
export interface PutFileSystemPolicyCommandInput extends PutFileSystemPolicyRequest {}
|
|
9
5
|
export interface PutFileSystemPolicyCommandOutput
|
|
10
|
-
extends PutFileSystemPolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutFileSystemPolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutFileSystemPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutFileSystemPolicyCommandInput
|
|
9
|
+
input: PutFileSystemPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutFileSystemPolicyCommandInput,
|
|
17
12
|
PutFileSystemPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutFileSystemPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutFileSystemPolicyCommandInput
|
|
18
|
+
input: PutFileSystemPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutFileSystemPolicyCommandInput,
|
|
26
21
|
PutFileSystemPolicyCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutSynchronizationConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutSynchronizationConfigurationCommandInput
|
|
8
|
-
extends PutSynchronizationConfigurationRequest {}
|
|
7
|
+
export interface PutSynchronizationConfigurationCommandInput extends PutSynchronizationConfigurationRequest {}
|
|
9
8
|
export interface PutSynchronizationConfigurationCommandOutput
|
|
10
|
-
extends PutSynchronizationConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutSynchronizationConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutSynchronizationConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutSynchronizationConfigurationCommandInput
|
|
12
|
+
input: PutSynchronizationConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutSynchronizationConfigurationCommandInput,
|
|
17
15
|
PutSynchronizationConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutSynchronizationConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutSynchronizationConfigurationCommandInput
|
|
21
|
+
input: PutSynchronizationConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutSynchronizationConfigurationCommandInput,
|
|
26
24
|
PutSynchronizationConfigurationCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateMountTargetRequest,
|
|
4
|
-
UpdateMountTargetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateMountTargetRequest, UpdateMountTargetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateMountTargetCommandInput
|
|
8
|
-
extends UpdateMountTargetRequest {}
|
|
4
|
+
export interface UpdateMountTargetCommandInput extends UpdateMountTargetRequest {}
|
|
9
5
|
export interface UpdateMountTargetCommandOutput
|
|
10
|
-
extends UpdateMountTargetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateMountTargetResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateMountTargetCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateMountTargetCommandInput
|
|
9
|
+
input: UpdateMountTargetCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateMountTargetCommandInput,
|
|
17
12
|
UpdateMountTargetCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateMountTargetCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateMountTargetCommandInput
|
|
18
|
+
input: UpdateMountTargetCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateMountTargetCommandInput,
|
|
26
21
|
UpdateMountTargetCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface S3FilesExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -6,8 +6,7 @@ export declare const LifeCycleState: {
|
|
|
6
6
|
readonly error: "error";
|
|
7
7
|
readonly updating: "updating";
|
|
8
8
|
};
|
|
9
|
-
export type LifeCycleState =
|
|
10
|
-
(typeof LifeCycleState)[keyof typeof LifeCycleState];
|
|
9
|
+
export type LifeCycleState = (typeof LifeCycleState)[keyof typeof LifeCycleState];
|
|
11
10
|
export declare const IpAddressType: {
|
|
12
11
|
readonly DUAL_STACK: "DUAL_STACK";
|
|
13
12
|
readonly IPV4_ONLY: "IPV4_ONLY";
|
|
@@ -12,39 +12,29 @@ export declare class InternalServerException extends __BaseException {
|
|
|
12
12
|
readonly name: "InternalServerException";
|
|
13
13
|
readonly $fault: "server";
|
|
14
14
|
errorCode: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
17
|
-
);
|
|
15
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
18
16
|
}
|
|
19
17
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
20
18
|
readonly name: "ResourceNotFoundException";
|
|
21
19
|
readonly $fault: "client";
|
|
22
20
|
errorCode: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
25
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
26
22
|
}
|
|
27
23
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
28
24
|
readonly name: "ServiceQuotaExceededException";
|
|
29
25
|
readonly $fault: "client";
|
|
30
26
|
errorCode: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
34
28
|
}
|
|
35
29
|
export declare class ThrottlingException extends __BaseException {
|
|
36
30
|
readonly name: "ThrottlingException";
|
|
37
31
|
readonly $fault: "client";
|
|
38
32
|
errorCode: string | undefined;
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
41
|
-
);
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
42
34
|
}
|
|
43
35
|
export declare class ValidationException extends __BaseException {
|
|
44
36
|
readonly name: "ValidationException";
|
|
45
37
|
readonly $fault: "client";
|
|
46
38
|
errorCode: string | undefined;
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
49
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
50
40
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { S3FilesClient } from "../S3FilesClient";
|
|
3
|
-
export interface S3FilesPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface S3FilesPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: S3FilesClient;
|
|
6
5
|
}
|