@aws-sdk/client-s3files 3.1026.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.
Files changed (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +328 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +477 -0
  7. package/dist-cjs/models/S3FilesServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +98 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +54 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +44 -0
  13. package/dist-cjs/schemas/schemas_0.js +507 -0
  14. package/dist-es/S3Files.js +59 -0
  15. package/dist-es/S3FilesClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/CreateAccessPointCommand.js +16 -0
  19. package/dist-es/commands/CreateFileSystemCommand.js +16 -0
  20. package/dist-es/commands/CreateMountTargetCommand.js +16 -0
  21. package/dist-es/commands/DeleteAccessPointCommand.js +16 -0
  22. package/dist-es/commands/DeleteFileSystemCommand.js +16 -0
  23. package/dist-es/commands/DeleteFileSystemPolicyCommand.js +16 -0
  24. package/dist-es/commands/DeleteMountTargetCommand.js +16 -0
  25. package/dist-es/commands/GetAccessPointCommand.js +16 -0
  26. package/dist-es/commands/GetFileSystemCommand.js +16 -0
  27. package/dist-es/commands/GetFileSystemPolicyCommand.js +16 -0
  28. package/dist-es/commands/GetMountTargetCommand.js +16 -0
  29. package/dist-es/commands/GetSynchronizationConfigurationCommand.js +16 -0
  30. package/dist-es/commands/ListAccessPointsCommand.js +16 -0
  31. package/dist-es/commands/ListFileSystemsCommand.js +16 -0
  32. package/dist-es/commands/ListMountTargetsCommand.js +16 -0
  33. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  34. package/dist-es/commands/PutFileSystemPolicyCommand.js +16 -0
  35. package/dist-es/commands/PutSynchronizationConfigurationCommand.js +16 -0
  36. package/dist-es/commands/TagResourceCommand.js +16 -0
  37. package/dist-es/commands/UntagResourceCommand.js +16 -0
  38. package/dist-es/commands/UpdateMountTargetCommand.js +16 -0
  39. package/dist-es/commands/index.js +21 -0
  40. package/dist-es/endpoint/EndpointParameters.js +11 -0
  41. package/dist-es/endpoint/endpointResolver.js +14 -0
  42. package/dist-es/endpoint/ruleset.js +4 -0
  43. package/dist-es/extensionConfiguration.js +1 -0
  44. package/dist-es/index.js +9 -0
  45. package/dist-es/models/S3FilesServiceException.js +8 -0
  46. package/dist-es/models/enums.js +17 -0
  47. package/dist-es/models/errors.js +89 -0
  48. package/dist-es/models/models_0.js +1 -0
  49. package/dist-es/pagination/Interfaces.js +1 -0
  50. package/dist-es/pagination/ListAccessPointsPaginator.js +4 -0
  51. package/dist-es/pagination/ListFileSystemsPaginator.js +4 -0
  52. package/dist-es/pagination/ListMountTargetsPaginator.js +4 -0
  53. package/dist-es/pagination/ListTagsForResourcePaginator.js +4 -0
  54. package/dist-es/pagination/index.js +5 -0
  55. package/dist-es/runtimeConfig.browser.js +33 -0
  56. package/dist-es/runtimeConfig.js +49 -0
  57. package/dist-es/runtimeConfig.native.js +11 -0
  58. package/dist-es/runtimeConfig.shared.js +40 -0
  59. package/dist-es/runtimeExtensions.js +9 -0
  60. package/dist-es/schemas/schemas_0.js +503 -0
  61. package/dist-types/S3Files.d.ts +187 -0
  62. package/dist-types/S3FilesClient.d.ts +208 -0
  63. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  64. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  65. package/dist-types/commands/CreateAccessPointCommand.d.ts +141 -0
  66. package/dist-types/commands/CreateFileSystemCommand.d.ts +120 -0
  67. package/dist-types/commands/CreateMountTargetCommand.d.ts +112 -0
  68. package/dist-types/commands/DeleteAccessPointCommand.d.ts +87 -0
  69. package/dist-types/commands/DeleteFileSystemCommand.d.ts +88 -0
  70. package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +84 -0
  71. package/dist-types/commands/DeleteMountTargetCommand.d.ts +87 -0
  72. package/dist-types/commands/GetAccessPointCommand.d.ts +113 -0
  73. package/dist-types/commands/GetFileSystemCommand.d.ts +103 -0
  74. package/dist-types/commands/GetFileSystemPolicyCommand.d.ts +87 -0
  75. package/dist-types/commands/GetMountTargetCommand.d.ts +99 -0
  76. package/dist-types/commands/GetSynchronizationConfigurationCommand.d.ts +98 -0
  77. package/dist-types/commands/ListAccessPointsCommand.d.ts +113 -0
  78. package/dist-types/commands/ListFileSystemsCommand.d.ts +98 -0
  79. package/dist-types/commands/ListMountTargetsCommand.d.ts +104 -0
  80. package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
  81. package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +85 -0
  82. package/dist-types/commands/PutSynchronizationConfigurationCommand.d.ts +100 -0
  83. package/dist-types/commands/TagResourceCommand.d.ts +90 -0
  84. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  85. package/dist-types/commands/UpdateMountTargetCommand.d.ts +102 -0
  86. package/dist-types/commands/index.d.ts +21 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +17 -0
  92. package/dist-types/models/S3FilesServiceException.d.ts +14 -0
  93. package/dist-types/models/enums.d.ts +41 -0
  94. package/dist-types/models/errors.d.ts +114 -0
  95. package/dist-types/models/models_0.d.ts +1185 -0
  96. package/dist-types/pagination/Interfaces.d.ts +8 -0
  97. package/dist-types/pagination/ListAccessPointsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/ListFileSystemsPaginator.d.ts +7 -0
  99. package/dist-types/pagination/ListMountTargetsPaginator.d.ts +7 -0
  100. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +7 -0
  101. package/dist-types/pagination/index.d.ts +5 -0
  102. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  103. package/dist-types/runtimeConfig.d.ts +55 -0
  104. package/dist-types/runtimeConfig.native.d.ts +54 -0
  105. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  106. package/dist-types/runtimeExtensions.d.ts +17 -0
  107. package/dist-types/schemas/schemas_0.d.ts +81 -0
  108. package/dist-types/ts3.4/S3Files.d.ts +396 -0
  109. package/dist-types/ts3.4/S3FilesClient.d.ts +244 -0
  110. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  111. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +51 -0
  113. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +50 -0
  114. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +46 -0
  116. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +45 -0
  117. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +46 -0
  118. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +46 -0
  119. package/dist-types/ts3.4/commands/GetAccessPointCommand.d.ts +50 -0
  120. package/dist-types/ts3.4/commands/GetFileSystemCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetFileSystemPolicyCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/GetMountTargetCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/GetSynchronizationConfigurationCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListAccessPointsCommand.d.ts +50 -0
  125. package/dist-types/ts3.4/commands/ListFileSystemsCommand.d.ts +50 -0
  126. package/dist-types/ts3.4/commands/ListMountTargetsCommand.d.ts +50 -0
  127. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/PutSynchronizationConfigurationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  131. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  132. package/dist-types/ts3.4/commands/UpdateMountTargetCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  134. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  135. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  136. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  137. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  138. package/dist-types/ts3.4/index.d.ts +12 -0
  139. package/dist-types/ts3.4/models/S3FilesServiceException.d.ts +9 -0
  140. package/dist-types/ts3.4/models/enums.d.ts +21 -0
  141. package/dist-types/ts3.4/models/errors.d.ts +50 -0
  142. package/dist-types/ts3.4/models/models_0.d.ts +279 -0
  143. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  144. package/dist-types/ts3.4/pagination/ListAccessPointsPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListFileSystemsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListMountTargetsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  149. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  150. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  151. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  152. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  153. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  154. package/dist-types/ts3.4/schemas/schemas_0.d.ts +80 -0
  155. package/package.json +100 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListAccessPointsRequest,
5
+ ListAccessPointsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAccessPointsCommandInput extends ListAccessPointsRequest {}
15
+ export interface ListAccessPointsCommandOutput
16
+ extends ListAccessPointsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAccessPointsCommand_base: {
19
+ new (
20
+ input: ListAccessPointsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListAccessPointsCommandInput,
23
+ ListAccessPointsCommandOutput,
24
+ S3FilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListAccessPointsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListAccessPointsCommandInput,
32
+ ListAccessPointsCommandOutput,
33
+ S3FilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListAccessPointsCommand extends ListAccessPointsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListAccessPointsRequest;
43
+ output: ListAccessPointsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListAccessPointsCommandInput;
47
+ output: ListAccessPointsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListFileSystemsRequest,
5
+ ListFileSystemsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListFileSystemsCommandInput extends ListFileSystemsRequest {}
15
+ export interface ListFileSystemsCommandOutput
16
+ extends ListFileSystemsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListFileSystemsCommand_base: {
19
+ new (
20
+ input: ListFileSystemsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListFileSystemsCommandInput,
23
+ ListFileSystemsCommandOutput,
24
+ S3FilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListFileSystemsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListFileSystemsCommandInput,
32
+ ListFileSystemsCommandOutput,
33
+ S3FilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListFileSystemsCommand extends ListFileSystemsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListFileSystemsRequest;
43
+ output: ListFileSystemsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListFileSystemsCommandInput;
47
+ output: ListFileSystemsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListMountTargetsRequest,
5
+ ListMountTargetsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListMountTargetsCommandInput extends ListMountTargetsRequest {}
15
+ export interface ListMountTargetsCommandOutput
16
+ extends ListMountTargetsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListMountTargetsCommand_base: {
19
+ new (
20
+ input: ListMountTargetsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListMountTargetsCommandInput,
23
+ ListMountTargetsCommandOutput,
24
+ S3FilesClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListMountTargetsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListMountTargetsCommandInput,
32
+ ListMountTargetsCommandOutput,
33
+ S3FilesClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListMountTargetsCommand extends ListMountTargetsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListMountTargetsRequest;
43
+ output: ListMountTargetsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListMountTargetsCommandInput;
47
+ output: ListMountTargetsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ S3FilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ S3FilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutFileSystemPolicyRequest,
5
+ PutFileSystemPolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutFileSystemPolicyCommandInput
15
+ extends PutFileSystemPolicyRequest {}
16
+ export interface PutFileSystemPolicyCommandOutput
17
+ extends PutFileSystemPolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const PutFileSystemPolicyCommand_base: {
20
+ new (
21
+ input: PutFileSystemPolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutFileSystemPolicyCommandInput,
24
+ PutFileSystemPolicyCommandOutput,
25
+ S3FilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: PutFileSystemPolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutFileSystemPolicyCommandInput,
33
+ PutFileSystemPolicyCommandOutput,
34
+ S3FilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutFileSystemPolicyCommand extends PutFileSystemPolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutFileSystemPolicyRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: PutFileSystemPolicyCommandInput;
48
+ output: PutFileSystemPolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutSynchronizationConfigurationRequest,
5
+ PutSynchronizationConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutSynchronizationConfigurationCommandInput
15
+ extends PutSynchronizationConfigurationRequest {}
16
+ export interface PutSynchronizationConfigurationCommandOutput
17
+ extends PutSynchronizationConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const PutSynchronizationConfigurationCommand_base: {
20
+ new (
21
+ input: PutSynchronizationConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutSynchronizationConfigurationCommandInput,
24
+ PutSynchronizationConfigurationCommandOutput,
25
+ S3FilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: PutSynchronizationConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutSynchronizationConfigurationCommandInput,
33
+ PutSynchronizationConfigurationCommandOutput,
34
+ S3FilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutSynchronizationConfigurationCommand extends PutSynchronizationConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutSynchronizationConfigurationRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: PutSynchronizationConfigurationCommandInput;
48
+ output: PutSynchronizationConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest } from "../models/models_0";
4
+ import {
5
+ S3FilesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3FilesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const TagResourceCommand_base: {
14
+ new (
15
+ input: TagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ S3FilesClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: TagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ TagResourceCommandInput,
27
+ TagResourceCommandOutput,
28
+ S3FilesClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class TagResourceCommand extends TagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: TagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: TagResourceCommandInput;
42
+ output: TagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UntagResourceRequest } from "../models/models_0";
4
+ import {
5
+ S3FilesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3FilesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
12
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const UntagResourceCommand_base: {
14
+ new (
15
+ input: UntagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ S3FilesClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: UntagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UntagResourceCommandInput,
27
+ UntagResourceCommandOutput,
28
+ S3FilesClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: UntagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: UntagResourceCommandInput;
42
+ output: UntagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateMountTargetRequest,
5
+ UpdateMountTargetResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3FilesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3FilesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateMountTargetCommandInput
15
+ extends UpdateMountTargetRequest {}
16
+ export interface UpdateMountTargetCommandOutput
17
+ extends UpdateMountTargetResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateMountTargetCommand_base: {
20
+ new (
21
+ input: UpdateMountTargetCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateMountTargetCommandInput,
24
+ UpdateMountTargetCommandOutput,
25
+ S3FilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateMountTargetCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateMountTargetCommandInput,
33
+ UpdateMountTargetCommandOutput,
34
+ S3FilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateMountTargetCommand extends UpdateMountTargetCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateMountTargetRequest;
44
+ output: UpdateMountTargetResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateMountTargetCommandInput;
48
+ output: UpdateMountTargetCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,21 @@
1
+ export * from "./CreateAccessPointCommand";
2
+ export * from "./CreateFileSystemCommand";
3
+ export * from "./CreateMountTargetCommand";
4
+ export * from "./DeleteAccessPointCommand";
5
+ export * from "./DeleteFileSystemCommand";
6
+ export * from "./DeleteFileSystemPolicyCommand";
7
+ export * from "./DeleteMountTargetCommand";
8
+ export * from "./GetAccessPointCommand";
9
+ export * from "./GetFileSystemCommand";
10
+ export * from "./GetFileSystemPolicyCommand";
11
+ export * from "./GetMountTargetCommand";
12
+ export * from "./GetSynchronizationConfigurationCommand";
13
+ export * from "./ListAccessPointsCommand";
14
+ export * from "./ListFileSystemsCommand";
15
+ export * from "./ListMountTargetsCommand";
16
+ export * from "./ListTagsForResourceCommand";
17
+ export * from "./PutFileSystemPolicyCommand";
18
+ export * from "./PutSynchronizationConfigurationCommand";
19
+ export * from "./TagResourceCommand";
20
+ export * from "./UntagResourceCommand";
21
+ export * from "./UpdateMountTargetCommand";
@@ -0,0 +1,45 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ endpoint?:
10
+ | string
11
+ | Provider<string>
12
+ | Endpoint
13
+ | Provider<Endpoint>
14
+ | EndpointV2
15
+ | Provider<EndpointV2>;
16
+ region?: string | undefined | Provider<string | undefined>;
17
+ }
18
+ export type ClientResolvedEndpointParameters = Pick<
19
+ ClientInputEndpointParameters,
20
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
21
+ > & {
22
+ defaultSigningName: string;
23
+ };
24
+ export declare const resolveClientEndpointParameters: <T>(
25
+ options: T & ClientInputEndpointParameters
26
+ ) => T & ClientResolvedEndpointParameters;
27
+ export declare const commonParams: {
28
+ readonly UseFIPS: {
29
+ readonly type: "builtInParams";
30
+ readonly name: "useFipsEndpoint";
31
+ };
32
+ readonly Endpoint: {
33
+ readonly type: "builtInParams";
34
+ readonly name: "endpoint";
35
+ };
36
+ readonly Region: {
37
+ readonly type: "builtInParams";
38
+ readonly name: "region";
39
+ };
40
+ };
41
+ export interface EndpointParameters extends __EndpointParameters {
42
+ UseFIPS?: boolean | undefined;
43
+ Endpoint?: string | undefined;
44
+ Region?: string | undefined;
45
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface S3FilesExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,12 @@
1
+ export * from "./S3FilesClient";
2
+ export * from "./S3Files";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { S3FilesExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./schemas/schemas_0";
8
+ export * from "./pagination";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
12
+ export { S3FilesServiceException } from "./models/S3FilesServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceExceptionOptions as __ServiceExceptionOptions,
3
+ ServiceException as __ServiceException,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class S3FilesServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1,21 @@
1
+ export declare const LifeCycleState: {
2
+ readonly available: "available";
3
+ readonly creating: "creating";
4
+ readonly deleted: "deleted";
5
+ readonly deleting: "deleting";
6
+ readonly error: "error";
7
+ readonly updating: "updating";
8
+ };
9
+ export type LifeCycleState =
10
+ (typeof LifeCycleState)[keyof typeof LifeCycleState];
11
+ export declare const IpAddressType: {
12
+ readonly DUAL_STACK: "DUAL_STACK";
13
+ readonly IPV4_ONLY: "IPV4_ONLY";
14
+ readonly IPV6_ONLY: "IPV6_ONLY";
15
+ };
16
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
17
+ export declare const ImportTrigger: {
18
+ readonly ON_DIRECTORY_FIRST_ACCESS: "ON_DIRECTORY_FIRST_ACCESS";
19
+ readonly ON_FILE_ACCESS: "ON_FILE_ACCESS";
20
+ };
21
+ export type ImportTrigger = (typeof ImportTrigger)[keyof typeof ImportTrigger];
@@ -0,0 +1,50 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { S3FilesServiceException as __BaseException } from "./S3FilesServiceException";
3
+ export declare class ConflictException extends __BaseException {
4
+ readonly name: "ConflictException";
5
+ readonly $fault: "client";
6
+ errorCode: string | undefined;
7
+ resourceId?: string | undefined;
8
+ resourceType?: string | undefined;
9
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
10
+ }
11
+ export declare class InternalServerException extends __BaseException {
12
+ readonly name: "InternalServerException";
13
+ readonly $fault: "server";
14
+ errorCode: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
17
+ );
18
+ }
19
+ export declare class ResourceNotFoundException extends __BaseException {
20
+ readonly name: "ResourceNotFoundException";
21
+ readonly $fault: "client";
22
+ errorCode: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ServiceQuotaExceededException extends __BaseException {
28
+ readonly name: "ServiceQuotaExceededException";
29
+ readonly $fault: "client";
30
+ errorCode: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ThrottlingException extends __BaseException {
36
+ readonly name: "ThrottlingException";
37
+ readonly $fault: "client";
38
+ errorCode: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
41
+ );
42
+ }
43
+ export declare class ValidationException extends __BaseException {
44
+ readonly name: "ValidationException";
45
+ readonly $fault: "client";
46
+ errorCode: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
49
+ );
50
+ }