@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,396 @@
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ } from "@smithy/types";
6
+ import {
7
+ CreateAccessPointCommandInput,
8
+ CreateAccessPointCommandOutput,
9
+ } from "./commands/CreateAccessPointCommand";
10
+ import {
11
+ CreateFileSystemCommandInput,
12
+ CreateFileSystemCommandOutput,
13
+ } from "./commands/CreateFileSystemCommand";
14
+ import {
15
+ CreateMountTargetCommandInput,
16
+ CreateMountTargetCommandOutput,
17
+ } from "./commands/CreateMountTargetCommand";
18
+ import {
19
+ DeleteAccessPointCommandInput,
20
+ DeleteAccessPointCommandOutput,
21
+ } from "./commands/DeleteAccessPointCommand";
22
+ import {
23
+ DeleteFileSystemCommandInput,
24
+ DeleteFileSystemCommandOutput,
25
+ } from "./commands/DeleteFileSystemCommand";
26
+ import {
27
+ DeleteFileSystemPolicyCommandInput,
28
+ DeleteFileSystemPolicyCommandOutput,
29
+ } from "./commands/DeleteFileSystemPolicyCommand";
30
+ import {
31
+ DeleteMountTargetCommandInput,
32
+ DeleteMountTargetCommandOutput,
33
+ } from "./commands/DeleteMountTargetCommand";
34
+ import {
35
+ GetAccessPointCommandInput,
36
+ GetAccessPointCommandOutput,
37
+ } from "./commands/GetAccessPointCommand";
38
+ import {
39
+ GetFileSystemCommandInput,
40
+ GetFileSystemCommandOutput,
41
+ } from "./commands/GetFileSystemCommand";
42
+ import {
43
+ GetFileSystemPolicyCommandInput,
44
+ GetFileSystemPolicyCommandOutput,
45
+ } from "./commands/GetFileSystemPolicyCommand";
46
+ import {
47
+ GetMountTargetCommandInput,
48
+ GetMountTargetCommandOutput,
49
+ } from "./commands/GetMountTargetCommand";
50
+ import {
51
+ GetSynchronizationConfigurationCommandInput,
52
+ GetSynchronizationConfigurationCommandOutput,
53
+ } from "./commands/GetSynchronizationConfigurationCommand";
54
+ import {
55
+ ListAccessPointsCommandInput,
56
+ ListAccessPointsCommandOutput,
57
+ } from "./commands/ListAccessPointsCommand";
58
+ import {
59
+ ListFileSystemsCommandInput,
60
+ ListFileSystemsCommandOutput,
61
+ } from "./commands/ListFileSystemsCommand";
62
+ import {
63
+ ListMountTargetsCommandInput,
64
+ ListMountTargetsCommandOutput,
65
+ } from "./commands/ListMountTargetsCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "./commands/ListTagsForResourceCommand";
70
+ import {
71
+ PutFileSystemPolicyCommandInput,
72
+ PutFileSystemPolicyCommandOutput,
73
+ } from "./commands/PutFileSystemPolicyCommand";
74
+ import {
75
+ PutSynchronizationConfigurationCommandInput,
76
+ PutSynchronizationConfigurationCommandOutput,
77
+ } from "./commands/PutSynchronizationConfigurationCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "./commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "./commands/UntagResourceCommand";
86
+ import {
87
+ UpdateMountTargetCommandInput,
88
+ UpdateMountTargetCommandOutput,
89
+ } from "./commands/UpdateMountTargetCommand";
90
+ import { S3FilesClient } from "./S3FilesClient";
91
+ export interface S3Files {
92
+ createAccessPoint(
93
+ args: CreateAccessPointCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<CreateAccessPointCommandOutput>;
96
+ createAccessPoint(
97
+ args: CreateAccessPointCommandInput,
98
+ cb: (err: any, data?: CreateAccessPointCommandOutput) => void
99
+ ): void;
100
+ createAccessPoint(
101
+ args: CreateAccessPointCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: CreateAccessPointCommandOutput) => void
104
+ ): void;
105
+ createFileSystem(
106
+ args: CreateFileSystemCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<CreateFileSystemCommandOutput>;
109
+ createFileSystem(
110
+ args: CreateFileSystemCommandInput,
111
+ cb: (err: any, data?: CreateFileSystemCommandOutput) => void
112
+ ): void;
113
+ createFileSystem(
114
+ args: CreateFileSystemCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: CreateFileSystemCommandOutput) => void
117
+ ): void;
118
+ createMountTarget(
119
+ args: CreateMountTargetCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<CreateMountTargetCommandOutput>;
122
+ createMountTarget(
123
+ args: CreateMountTargetCommandInput,
124
+ cb: (err: any, data?: CreateMountTargetCommandOutput) => void
125
+ ): void;
126
+ createMountTarget(
127
+ args: CreateMountTargetCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: CreateMountTargetCommandOutput) => void
130
+ ): void;
131
+ deleteAccessPoint(
132
+ args: DeleteAccessPointCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<DeleteAccessPointCommandOutput>;
135
+ deleteAccessPoint(
136
+ args: DeleteAccessPointCommandInput,
137
+ cb: (err: any, data?: DeleteAccessPointCommandOutput) => void
138
+ ): void;
139
+ deleteAccessPoint(
140
+ args: DeleteAccessPointCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: DeleteAccessPointCommandOutput) => void
143
+ ): void;
144
+ deleteFileSystem(
145
+ args: DeleteFileSystemCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<DeleteFileSystemCommandOutput>;
148
+ deleteFileSystem(
149
+ args: DeleteFileSystemCommandInput,
150
+ cb: (err: any, data?: DeleteFileSystemCommandOutput) => void
151
+ ): void;
152
+ deleteFileSystem(
153
+ args: DeleteFileSystemCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: DeleteFileSystemCommandOutput) => void
156
+ ): void;
157
+ deleteFileSystemPolicy(
158
+ args: DeleteFileSystemPolicyCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<DeleteFileSystemPolicyCommandOutput>;
161
+ deleteFileSystemPolicy(
162
+ args: DeleteFileSystemPolicyCommandInput,
163
+ cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void
164
+ ): void;
165
+ deleteFileSystemPolicy(
166
+ args: DeleteFileSystemPolicyCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void
169
+ ): void;
170
+ deleteMountTarget(
171
+ args: DeleteMountTargetCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<DeleteMountTargetCommandOutput>;
174
+ deleteMountTarget(
175
+ args: DeleteMountTargetCommandInput,
176
+ cb: (err: any, data?: DeleteMountTargetCommandOutput) => void
177
+ ): void;
178
+ deleteMountTarget(
179
+ args: DeleteMountTargetCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: DeleteMountTargetCommandOutput) => void
182
+ ): void;
183
+ getAccessPoint(
184
+ args: GetAccessPointCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<GetAccessPointCommandOutput>;
187
+ getAccessPoint(
188
+ args: GetAccessPointCommandInput,
189
+ cb: (err: any, data?: GetAccessPointCommandOutput) => void
190
+ ): void;
191
+ getAccessPoint(
192
+ args: GetAccessPointCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: GetAccessPointCommandOutput) => void
195
+ ): void;
196
+ getFileSystem(
197
+ args: GetFileSystemCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<GetFileSystemCommandOutput>;
200
+ getFileSystem(
201
+ args: GetFileSystemCommandInput,
202
+ cb: (err: any, data?: GetFileSystemCommandOutput) => void
203
+ ): void;
204
+ getFileSystem(
205
+ args: GetFileSystemCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: GetFileSystemCommandOutput) => void
208
+ ): void;
209
+ getFileSystemPolicy(
210
+ args: GetFileSystemPolicyCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<GetFileSystemPolicyCommandOutput>;
213
+ getFileSystemPolicy(
214
+ args: GetFileSystemPolicyCommandInput,
215
+ cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void
216
+ ): void;
217
+ getFileSystemPolicy(
218
+ args: GetFileSystemPolicyCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void
221
+ ): void;
222
+ getMountTarget(
223
+ args: GetMountTargetCommandInput,
224
+ options?: __HttpHandlerOptions
225
+ ): Promise<GetMountTargetCommandOutput>;
226
+ getMountTarget(
227
+ args: GetMountTargetCommandInput,
228
+ cb: (err: any, data?: GetMountTargetCommandOutput) => void
229
+ ): void;
230
+ getMountTarget(
231
+ args: GetMountTargetCommandInput,
232
+ options: __HttpHandlerOptions,
233
+ cb: (err: any, data?: GetMountTargetCommandOutput) => void
234
+ ): void;
235
+ getSynchronizationConfiguration(
236
+ args: GetSynchronizationConfigurationCommandInput,
237
+ options?: __HttpHandlerOptions
238
+ ): Promise<GetSynchronizationConfigurationCommandOutput>;
239
+ getSynchronizationConfiguration(
240
+ args: GetSynchronizationConfigurationCommandInput,
241
+ cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void
242
+ ): void;
243
+ getSynchronizationConfiguration(
244
+ args: GetSynchronizationConfigurationCommandInput,
245
+ options: __HttpHandlerOptions,
246
+ cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void
247
+ ): void;
248
+ listAccessPoints(
249
+ args: ListAccessPointsCommandInput,
250
+ options?: __HttpHandlerOptions
251
+ ): Promise<ListAccessPointsCommandOutput>;
252
+ listAccessPoints(
253
+ args: ListAccessPointsCommandInput,
254
+ cb: (err: any, data?: ListAccessPointsCommandOutput) => void
255
+ ): void;
256
+ listAccessPoints(
257
+ args: ListAccessPointsCommandInput,
258
+ options: __HttpHandlerOptions,
259
+ cb: (err: any, data?: ListAccessPointsCommandOutput) => void
260
+ ): void;
261
+ listFileSystems(): Promise<ListFileSystemsCommandOutput>;
262
+ listFileSystems(
263
+ args: ListFileSystemsCommandInput,
264
+ options?: __HttpHandlerOptions
265
+ ): Promise<ListFileSystemsCommandOutput>;
266
+ listFileSystems(
267
+ args: ListFileSystemsCommandInput,
268
+ cb: (err: any, data?: ListFileSystemsCommandOutput) => void
269
+ ): void;
270
+ listFileSystems(
271
+ args: ListFileSystemsCommandInput,
272
+ options: __HttpHandlerOptions,
273
+ cb: (err: any, data?: ListFileSystemsCommandOutput) => void
274
+ ): void;
275
+ listMountTargets(): Promise<ListMountTargetsCommandOutput>;
276
+ listMountTargets(
277
+ args: ListMountTargetsCommandInput,
278
+ options?: __HttpHandlerOptions
279
+ ): Promise<ListMountTargetsCommandOutput>;
280
+ listMountTargets(
281
+ args: ListMountTargetsCommandInput,
282
+ cb: (err: any, data?: ListMountTargetsCommandOutput) => void
283
+ ): void;
284
+ listMountTargets(
285
+ args: ListMountTargetsCommandInput,
286
+ options: __HttpHandlerOptions,
287
+ cb: (err: any, data?: ListMountTargetsCommandOutput) => void
288
+ ): void;
289
+ listTagsForResource(
290
+ args: ListTagsForResourceCommandInput,
291
+ options?: __HttpHandlerOptions
292
+ ): Promise<ListTagsForResourceCommandOutput>;
293
+ listTagsForResource(
294
+ args: ListTagsForResourceCommandInput,
295
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
296
+ ): void;
297
+ listTagsForResource(
298
+ args: ListTagsForResourceCommandInput,
299
+ options: __HttpHandlerOptions,
300
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
301
+ ): void;
302
+ putFileSystemPolicy(
303
+ args: PutFileSystemPolicyCommandInput,
304
+ options?: __HttpHandlerOptions
305
+ ): Promise<PutFileSystemPolicyCommandOutput>;
306
+ putFileSystemPolicy(
307
+ args: PutFileSystemPolicyCommandInput,
308
+ cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void
309
+ ): void;
310
+ putFileSystemPolicy(
311
+ args: PutFileSystemPolicyCommandInput,
312
+ options: __HttpHandlerOptions,
313
+ cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void
314
+ ): void;
315
+ putSynchronizationConfiguration(
316
+ args: PutSynchronizationConfigurationCommandInput,
317
+ options?: __HttpHandlerOptions
318
+ ): Promise<PutSynchronizationConfigurationCommandOutput>;
319
+ putSynchronizationConfiguration(
320
+ args: PutSynchronizationConfigurationCommandInput,
321
+ cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void
322
+ ): void;
323
+ putSynchronizationConfiguration(
324
+ args: PutSynchronizationConfigurationCommandInput,
325
+ options: __HttpHandlerOptions,
326
+ cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void
327
+ ): void;
328
+ tagResource(
329
+ args: TagResourceCommandInput,
330
+ options?: __HttpHandlerOptions
331
+ ): Promise<TagResourceCommandOutput>;
332
+ tagResource(
333
+ args: TagResourceCommandInput,
334
+ cb: (err: any, data?: TagResourceCommandOutput) => void
335
+ ): void;
336
+ tagResource(
337
+ args: TagResourceCommandInput,
338
+ options: __HttpHandlerOptions,
339
+ cb: (err: any, data?: TagResourceCommandOutput) => void
340
+ ): void;
341
+ untagResource(
342
+ args: UntagResourceCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<UntagResourceCommandOutput>;
345
+ untagResource(
346
+ args: UntagResourceCommandInput,
347
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
348
+ ): void;
349
+ untagResource(
350
+ args: UntagResourceCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
353
+ ): void;
354
+ updateMountTarget(
355
+ args: UpdateMountTargetCommandInput,
356
+ options?: __HttpHandlerOptions
357
+ ): Promise<UpdateMountTargetCommandOutput>;
358
+ updateMountTarget(
359
+ args: UpdateMountTargetCommandInput,
360
+ cb: (err: any, data?: UpdateMountTargetCommandOutput) => void
361
+ ): void;
362
+ updateMountTarget(
363
+ args: UpdateMountTargetCommandInput,
364
+ options: __HttpHandlerOptions,
365
+ cb: (err: any, data?: UpdateMountTargetCommandOutput) => void
366
+ ): void;
367
+ paginateListAccessPoints(
368
+ args: ListAccessPointsCommandInput,
369
+ paginationConfig?: Pick<
370
+ PaginationConfiguration,
371
+ Exclude<keyof PaginationConfiguration, "client">
372
+ >
373
+ ): Paginator<ListAccessPointsCommandOutput>;
374
+ paginateListFileSystems(
375
+ args?: ListFileSystemsCommandInput,
376
+ paginationConfig?: Pick<
377
+ PaginationConfiguration,
378
+ Exclude<keyof PaginationConfiguration, "client">
379
+ >
380
+ ): Paginator<ListFileSystemsCommandOutput>;
381
+ paginateListMountTargets(
382
+ args?: ListMountTargetsCommandInput,
383
+ paginationConfig?: Pick<
384
+ PaginationConfiguration,
385
+ Exclude<keyof PaginationConfiguration, "client">
386
+ >
387
+ ): Paginator<ListMountTargetsCommandOutput>;
388
+ paginateListTagsForResource(
389
+ args: ListTagsForResourceCommandInput,
390
+ paginationConfig?: Pick<
391
+ PaginationConfiguration,
392
+ Exclude<keyof PaginationConfiguration, "client">
393
+ >
394
+ ): Paginator<ListTagsForResourceCommandOutput>;
395
+ }
396
+ export declare class S3Files extends S3FilesClient implements S3Files {}
@@ -0,0 +1,244 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ DefaultsMode as __DefaultsMode,
24
+ SmithyConfiguration as __SmithyConfiguration,
25
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
+ Client as __Client,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ StreamCollector as __StreamCollector,
40
+ UrlParser as __UrlParser,
41
+ UserAgent as __UserAgent,
42
+ } from "@smithy/types";
43
+ import {
44
+ HttpAuthSchemeInputConfig,
45
+ HttpAuthSchemeResolvedConfig,
46
+ } from "./auth/httpAuthSchemeProvider";
47
+ import {
48
+ CreateAccessPointCommandInput,
49
+ CreateAccessPointCommandOutput,
50
+ } from "./commands/CreateAccessPointCommand";
51
+ import {
52
+ CreateFileSystemCommandInput,
53
+ CreateFileSystemCommandOutput,
54
+ } from "./commands/CreateFileSystemCommand";
55
+ import {
56
+ CreateMountTargetCommandInput,
57
+ CreateMountTargetCommandOutput,
58
+ } from "./commands/CreateMountTargetCommand";
59
+ import {
60
+ DeleteAccessPointCommandInput,
61
+ DeleteAccessPointCommandOutput,
62
+ } from "./commands/DeleteAccessPointCommand";
63
+ import {
64
+ DeleteFileSystemCommandInput,
65
+ DeleteFileSystemCommandOutput,
66
+ } from "./commands/DeleteFileSystemCommand";
67
+ import {
68
+ DeleteFileSystemPolicyCommandInput,
69
+ DeleteFileSystemPolicyCommandOutput,
70
+ } from "./commands/DeleteFileSystemPolicyCommand";
71
+ import {
72
+ DeleteMountTargetCommandInput,
73
+ DeleteMountTargetCommandOutput,
74
+ } from "./commands/DeleteMountTargetCommand";
75
+ import {
76
+ GetAccessPointCommandInput,
77
+ GetAccessPointCommandOutput,
78
+ } from "./commands/GetAccessPointCommand";
79
+ import {
80
+ GetFileSystemCommandInput,
81
+ GetFileSystemCommandOutput,
82
+ } from "./commands/GetFileSystemCommand";
83
+ import {
84
+ GetFileSystemPolicyCommandInput,
85
+ GetFileSystemPolicyCommandOutput,
86
+ } from "./commands/GetFileSystemPolicyCommand";
87
+ import {
88
+ GetMountTargetCommandInput,
89
+ GetMountTargetCommandOutput,
90
+ } from "./commands/GetMountTargetCommand";
91
+ import {
92
+ GetSynchronizationConfigurationCommandInput,
93
+ GetSynchronizationConfigurationCommandOutput,
94
+ } from "./commands/GetSynchronizationConfigurationCommand";
95
+ import {
96
+ ListAccessPointsCommandInput,
97
+ ListAccessPointsCommandOutput,
98
+ } from "./commands/ListAccessPointsCommand";
99
+ import {
100
+ ListFileSystemsCommandInput,
101
+ ListFileSystemsCommandOutput,
102
+ } from "./commands/ListFileSystemsCommand";
103
+ import {
104
+ ListMountTargetsCommandInput,
105
+ ListMountTargetsCommandOutput,
106
+ } from "./commands/ListMountTargetsCommand";
107
+ import {
108
+ ListTagsForResourceCommandInput,
109
+ ListTagsForResourceCommandOutput,
110
+ } from "./commands/ListTagsForResourceCommand";
111
+ import {
112
+ PutFileSystemPolicyCommandInput,
113
+ PutFileSystemPolicyCommandOutput,
114
+ } from "./commands/PutFileSystemPolicyCommand";
115
+ import {
116
+ PutSynchronizationConfigurationCommandInput,
117
+ PutSynchronizationConfigurationCommandOutput,
118
+ } from "./commands/PutSynchronizationConfigurationCommand";
119
+ import {
120
+ TagResourceCommandInput,
121
+ TagResourceCommandOutput,
122
+ } from "./commands/TagResourceCommand";
123
+ import {
124
+ UntagResourceCommandInput,
125
+ UntagResourceCommandOutput,
126
+ } from "./commands/UntagResourceCommand";
127
+ import {
128
+ UpdateMountTargetCommandInput,
129
+ UpdateMountTargetCommandOutput,
130
+ } from "./commands/UpdateMountTargetCommand";
131
+ import {
132
+ ClientInputEndpointParameters,
133
+ ClientResolvedEndpointParameters,
134
+ EndpointParameters,
135
+ } from "./endpoint/EndpointParameters";
136
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
137
+ export { __Client };
138
+ export type ServiceInputTypes =
139
+ | CreateAccessPointCommandInput
140
+ | CreateFileSystemCommandInput
141
+ | CreateMountTargetCommandInput
142
+ | DeleteAccessPointCommandInput
143
+ | DeleteFileSystemCommandInput
144
+ | DeleteFileSystemPolicyCommandInput
145
+ | DeleteMountTargetCommandInput
146
+ | GetAccessPointCommandInput
147
+ | GetFileSystemCommandInput
148
+ | GetFileSystemPolicyCommandInput
149
+ | GetMountTargetCommandInput
150
+ | GetSynchronizationConfigurationCommandInput
151
+ | ListAccessPointsCommandInput
152
+ | ListFileSystemsCommandInput
153
+ | ListMountTargetsCommandInput
154
+ | ListTagsForResourceCommandInput
155
+ | PutFileSystemPolicyCommandInput
156
+ | PutSynchronizationConfigurationCommandInput
157
+ | TagResourceCommandInput
158
+ | UntagResourceCommandInput
159
+ | UpdateMountTargetCommandInput;
160
+ export type ServiceOutputTypes =
161
+ | CreateAccessPointCommandOutput
162
+ | CreateFileSystemCommandOutput
163
+ | CreateMountTargetCommandOutput
164
+ | DeleteAccessPointCommandOutput
165
+ | DeleteFileSystemCommandOutput
166
+ | DeleteFileSystemPolicyCommandOutput
167
+ | DeleteMountTargetCommandOutput
168
+ | GetAccessPointCommandOutput
169
+ | GetFileSystemCommandOutput
170
+ | GetFileSystemPolicyCommandOutput
171
+ | GetMountTargetCommandOutput
172
+ | GetSynchronizationConfigurationCommandOutput
173
+ | ListAccessPointsCommandOutput
174
+ | ListFileSystemsCommandOutput
175
+ | ListMountTargetsCommandOutput
176
+ | ListTagsForResourceCommandOutput
177
+ | PutFileSystemPolicyCommandOutput
178
+ | PutSynchronizationConfigurationCommandOutput
179
+ | TagResourceCommandOutput
180
+ | UntagResourceCommandOutput
181
+ | UpdateMountTargetCommandOutput;
182
+ export interface ClientDefaults
183
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
184
+ requestHandler?: __HttpHandlerUserInput;
185
+ sha256?: __ChecksumConstructor | __HashConstructor;
186
+ urlParser?: __UrlParser;
187
+ bodyLengthChecker?: __BodyLengthCalculator;
188
+ streamCollector?: __StreamCollector;
189
+ base64Decoder?: __Decoder;
190
+ base64Encoder?: __Encoder;
191
+ utf8Decoder?: __Decoder;
192
+ utf8Encoder?: __Encoder;
193
+ runtime?: string;
194
+ disableHostPrefix?: boolean;
195
+ serviceId?: string;
196
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
197
+ useFipsEndpoint?: boolean | __Provider<boolean>;
198
+ region?: string | __Provider<string>;
199
+ profile?: string;
200
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
201
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
202
+ maxAttempts?: number | __Provider<number>;
203
+ retryMode?: string | __Provider<string>;
204
+ logger?: __Logger;
205
+ extensions?: RuntimeExtension[];
206
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
207
+ }
208
+ export type S3FilesClientConfigType = Partial<
209
+ __SmithyConfiguration<__HttpHandlerOptions>
210
+ > &
211
+ ClientDefaults &
212
+ UserAgentInputConfig &
213
+ RetryInputConfig &
214
+ RegionInputConfig &
215
+ HostHeaderInputConfig &
216
+ EndpointInputConfig<EndpointParameters> &
217
+ HttpAuthSchemeInputConfig &
218
+ ClientInputEndpointParameters;
219
+ export interface S3FilesClientConfig extends S3FilesClientConfigType {}
220
+ export type S3FilesClientResolvedConfigType =
221
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
222
+ Required<ClientDefaults> &
223
+ RuntimeExtensionsConfig &
224
+ UserAgentResolvedConfig &
225
+ RetryResolvedConfig &
226
+ RegionResolvedConfig &
227
+ HostHeaderResolvedConfig &
228
+ EndpointResolvedConfig<EndpointParameters> &
229
+ HttpAuthSchemeResolvedConfig &
230
+ ClientResolvedEndpointParameters;
231
+ export interface S3FilesClientResolvedConfig
232
+ extends S3FilesClientResolvedConfigType {}
233
+ export declare class S3FilesClient extends __Client<
234
+ __HttpHandlerOptions,
235
+ ServiceInputTypes,
236
+ ServiceOutputTypes,
237
+ S3FilesClientResolvedConfig
238
+ > {
239
+ readonly config: S3FilesClientResolvedConfig;
240
+ constructor(
241
+ ...[configuration]: __CheckOptionalClientConfig<S3FilesClientConfig>
242
+ );
243
+ destroy(): void;
244
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { S3FilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): S3FilesHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;