@aws-sdk/client-s3files 3.1077.0 → 3.1079.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 +29 -213
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateAccessPointCommand.js +2 -14
- package/dist-es/commands/CreateFileSystemCommand.js +2 -14
- package/dist-es/commands/CreateMountTargetCommand.js +2 -14
- package/dist-es/commands/DeleteAccessPointCommand.js +2 -14
- package/dist-es/commands/DeleteFileSystemCommand.js +2 -14
- package/dist-es/commands/DeleteFileSystemPolicyCommand.js +2 -14
- package/dist-es/commands/DeleteMountTargetCommand.js +2 -14
- package/dist-es/commands/GetAccessPointCommand.js +2 -14
- package/dist-es/commands/GetFileSystemCommand.js +2 -14
- package/dist-es/commands/GetFileSystemPolicyCommand.js +2 -14
- package/dist-es/commands/GetMountTargetCommand.js +2 -14
- package/dist-es/commands/GetSynchronizationConfigurationCommand.js +2 -14
- package/dist-es/commands/ListAccessPointsCommand.js +2 -14
- package/dist-es/commands/ListFileSystemsCommand.js +2 -14
- package/dist-es/commands/ListMountTargetsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/PutFileSystemPolicyCommand.js +2 -14
- package/dist-es/commands/PutSynchronizationConfigurationCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateMountTargetCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateAccessPointCommand.d.ts +3 -8
- package/dist-types/commands/CreateFileSystemCommand.d.ts +3 -8
- package/dist-types/commands/CreateMountTargetCommand.d.ts +3 -8
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +3 -8
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +3 -8
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +3 -8
- package/dist-types/commands/GetAccessPointCommand.d.ts +3 -8
- package/dist-types/commands/GetFileSystemCommand.d.ts +3 -8
- package/dist-types/commands/GetFileSystemPolicyCommand.d.ts +3 -8
- package/dist-types/commands/GetMountTargetCommand.d.ts +3 -8
- package/dist-types/commands/GetSynchronizationConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/ListAccessPointsCommand.d.ts +3 -8
- package/dist-types/commands/ListFileSystemsCommand.d.ts +3 -8
- package/dist-types/commands/ListMountTargetsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +3 -8
- package/dist-types/commands/PutSynchronizationConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateMountTargetCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccessPointCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetFileSystemCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetFileSystemPolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetMountTargetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetSynchronizationConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAccessPointsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListFileSystemsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListMountTargetsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutSynchronizationConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateMountTargetCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { PutSynchronizationConfigurationRequest, PutSynchronizationConfigurationResponse } from "../models/models_0";
|
|
4
|
-
import type { S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3FilesClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface PutSynchronizationConfigurationCommandInput extends PutSynchron
|
|
|
22
19
|
export interface PutSynchronizationConfigurationCommandOutput extends PutSynchronizationConfigurationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const PutSynchronizationConfigurationCommand_base: {
|
|
25
|
-
new (input: PutSynchronizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSynchronizationConfigurationCommandInput, PutSynchronizationConfigurationCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: PutSynchronizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSynchronizationConfigurationCommandInput, PutSynchronizationConfigurationCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: PutSynchronizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSynchronizationConfigurationCommandInput, PutSynchronizationConfigurationCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: PutSynchronizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSynchronizationConfigurationCommandInput, PutSynchronizationConfigurationCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates or updates the synchronization configuration for the specified S3 File System, including import data rules and expiration data rules.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { TagResourceRequest } from "../models/models_0";
|
|
4
|
-
import type { S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3FilesClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
19
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates tags for S3 Files resources using standard Amazon Web Services tagging APIs.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UntagResourceRequest } from "../models/models_0";
|
|
4
|
-
import type { S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3FilesClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
19
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes tags from S3 Files resources.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateMountTargetRequest, UpdateMountTargetResponse } from "../models/models_0";
|
|
4
|
-
import type { S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3FilesClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateMountTargetCommandInput extends UpdateMountTargetRequest
|
|
|
22
19
|
export interface UpdateMountTargetCommandOutput extends UpdateMountTargetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateMountTargetCommand_base: {
|
|
25
|
-
new (input: UpdateMountTargetCommandInput): import("@smithy/core/client").CommandImpl<UpdateMountTargetCommandInput, UpdateMountTargetCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateMountTargetCommandInput): import("@smithy/core/client").CommandImpl<UpdateMountTargetCommandInput, UpdateMountTargetCommandOutput, S3FilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateMountTargetCommandInput): import("@smithy/core/client").CommandImpl<UpdateMountTargetCommandInput, UpdateMountTargetCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateMountTargetCommandInput): import("@smithy/core/client").CommandImpl<UpdateMountTargetCommandInput, UpdateMountTargetCommandOutput, import("..").S3FilesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates the mount target resource, specifically security group configurations.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { S3FilesExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
S3FilesClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./S3FilesClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
S3FilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
S3FilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateAccessPointRequest,
|
|
5
4
|
CreateAccessPointResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateAccessPointCommandInput
|
|
15
8
|
extends CreateAccessPointRequest {}
|
|
16
9
|
export interface CreateAccessPointCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateAccessPointCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateAccessPointCommandInput,
|
|
24
17
|
CreateAccessPointCommandOutput,
|
|
25
|
-
S3FilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").S3FilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateAccessPointCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateAccessPointCommandInput,
|
|
33
26
|
CreateAccessPointCommandOutput,
|
|
34
|
-
S3FilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").S3FilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateAccessPointCommand extends CreateAccessPointCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateFileSystemRequest,
|
|
5
4
|
CreateFileSystemResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateFileSystemCommandInput extends CreateFileSystemRequest {}
|
|
15
8
|
export interface CreateFileSystemCommandOutput
|
|
16
9
|
extends CreateFileSystemResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateFileSystemCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateFileSystemCommandInput,
|
|
23
16
|
CreateFileSystemCommandOutput,
|
|
24
|
-
S3FilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").S3FilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: CreateFileSystemCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateFileSystemCommandInput,
|
|
32
25
|
CreateFileSystemCommandOutput,
|
|
33
|
-
S3FilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").S3FilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class CreateFileSystemCommand extends CreateFileSystemCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateMountTargetRequest,
|
|
5
4
|
CreateMountTargetResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateMountTargetCommandInput
|
|
15
8
|
extends CreateMountTargetRequest {}
|
|
16
9
|
export interface CreateMountTargetCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateMountTargetCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateMountTargetCommandInput,
|
|
24
17
|
CreateMountTargetCommandOutput,
|
|
25
|
-
S3FilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").S3FilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateMountTargetCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateMountTargetCommandInput,
|
|
33
26
|
CreateMountTargetCommandOutput,
|
|
34
|
-
S3FilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").S3FilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateMountTargetCommand extends CreateMountTargetCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteAccessPointRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
S3FilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../S3FilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteAccessPointCommandInput
|
|
12
5
|
extends DeleteAccessPointRequest {}
|
|
13
6
|
export interface DeleteAccessPointCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const DeleteAccessPointCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
DeleteAccessPointCommandInput,
|
|
19
12
|
DeleteAccessPointCommandOutput,
|
|
20
|
-
S3FilesClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").S3FilesClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: DeleteAccessPointCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
DeleteAccessPointCommandInput,
|
|
28
21
|
DeleteAccessPointCommandOutput,
|
|
29
|
-
S3FilesClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").S3FilesClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class DeleteAccessPointCommand extends DeleteAccessPointCommand_base {
|
|
38
29
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteFileSystemRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
S3FilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../S3FilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {}
|
|
12
5
|
export interface DeleteFileSystemCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const DeleteFileSystemCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const DeleteFileSystemCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
DeleteFileSystemCommandInput,
|
|
18
11
|
DeleteFileSystemCommandOutput,
|
|
19
|
-
S3FilesClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").S3FilesClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: DeleteFileSystemCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
DeleteFileSystemCommandInput,
|
|
27
20
|
DeleteFileSystemCommandOutput,
|
|
28
|
-
S3FilesClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").S3FilesClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class DeleteFileSystemCommand extends DeleteFileSystemCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteFileSystemPolicyRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
S3FilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../S3FilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteFileSystemPolicyCommandInput
|
|
12
5
|
extends DeleteFileSystemPolicyRequest {}
|
|
13
6
|
export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const DeleteFileSystemPolicyCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
DeleteFileSystemPolicyCommandInput,
|
|
19
12
|
DeleteFileSystemPolicyCommandOutput,
|
|
20
|
-
S3FilesClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").S3FilesClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: DeleteFileSystemPolicyCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
DeleteFileSystemPolicyCommandInput,
|
|
28
21
|
DeleteFileSystemPolicyCommandOutput,
|
|
29
|
-
S3FilesClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").S3FilesClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class DeleteFileSystemPolicyCommand extends DeleteFileSystemPolicyCommand_base {
|
|
38
29
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteMountTargetRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
S3FilesClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../S3FilesClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteMountTargetCommandInput
|
|
12
5
|
extends DeleteMountTargetRequest {}
|
|
13
6
|
export interface DeleteMountTargetCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const DeleteMountTargetCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
DeleteMountTargetCommandInput,
|
|
19
12
|
DeleteMountTargetCommandOutput,
|
|
20
|
-
S3FilesClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").S3FilesClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: DeleteMountTargetCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
DeleteMountTargetCommandInput,
|
|
28
21
|
DeleteMountTargetCommandOutput,
|
|
29
|
-
S3FilesClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").S3FilesClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class DeleteMountTargetCommand extends DeleteMountTargetCommand_base {
|
|
38
29
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetAccessPointRequest,
|
|
5
4
|
GetAccessPointResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAccessPointCommandInput extends GetAccessPointRequest {}
|
|
15
8
|
export interface GetAccessPointCommandOutput
|
|
16
9
|
extends GetAccessPointResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetAccessPointCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetAccessPointCommandInput,
|
|
23
16
|
GetAccessPointCommandOutput,
|
|
24
|
-
S3FilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").S3FilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetAccessPointCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetAccessPointCommandInput,
|
|
32
25
|
GetAccessPointCommandOutput,
|
|
33
|
-
S3FilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").S3FilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetAccessPointCommand extends GetAccessPointCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetFileSystemRequest,
|
|
5
4
|
GetFileSystemResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetFileSystemCommandInput extends GetFileSystemRequest {}
|
|
15
8
|
export interface GetFileSystemCommandOutput
|
|
16
9
|
extends GetFileSystemResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetFileSystemCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetFileSystemCommandInput,
|
|
23
16
|
GetFileSystemCommandOutput,
|
|
24
|
-
S3FilesClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").S3FilesClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetFileSystemCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetFileSystemCommandInput,
|
|
32
25
|
GetFileSystemCommandOutput,
|
|
33
|
-
S3FilesClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").S3FilesClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetFileSystemCommand extends GetFileSystemCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetFileSystemPolicyRequest,
|
|
5
4
|
GetFileSystemPolicyResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
S3FilesClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../S3FilesClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetFileSystemPolicyCommandInput
|
|
15
8
|
extends GetFileSystemPolicyRequest {}
|
|
16
9
|
export interface GetFileSystemPolicyCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetFileSystemPolicyCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetFileSystemPolicyCommandInput,
|
|
24
17
|
GetFileSystemPolicyCommandOutput,
|
|
25
|
-
S3FilesClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").S3FilesClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetFileSystemPolicyCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetFileSystemPolicyCommandInput,
|
|
33
26
|
GetFileSystemPolicyCommandOutput,
|
|
34
|
-
S3FilesClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").S3FilesClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetFileSystemPolicyCommand extends GetFileSystemPolicyCommand_base {
|
|
43
34
|
protected static __types: {
|