@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,279 @@
1
+ import { ImportTrigger, IpAddressType, LifeCycleState } from "./enums";
2
+ export interface PosixUser {
3
+ uid: number | undefined;
4
+ gid: number | undefined;
5
+ secondaryGids?: number[] | undefined;
6
+ }
7
+ export interface CreationPermissions {
8
+ ownerUid: number | undefined;
9
+ ownerGid: number | undefined;
10
+ permissions: string | undefined;
11
+ }
12
+ export interface RootDirectory {
13
+ path?: string | undefined;
14
+ creationPermissions?: CreationPermissions | undefined;
15
+ }
16
+ export interface ListAccessPointsDescription {
17
+ accessPointArn: string | undefined;
18
+ accessPointId: string | undefined;
19
+ fileSystemId: string | undefined;
20
+ status: LifeCycleState | undefined;
21
+ ownerId: string | undefined;
22
+ posixUser?: PosixUser | undefined;
23
+ rootDirectory?: RootDirectory | undefined;
24
+ name?: string | undefined;
25
+ }
26
+ export interface Tag {
27
+ key: string | undefined;
28
+ value: string | undefined;
29
+ }
30
+ export interface CreateAccessPointRequest {
31
+ clientToken?: string | undefined;
32
+ tags?: Tag[] | undefined;
33
+ fileSystemId: string | undefined;
34
+ posixUser?: PosixUser | undefined;
35
+ rootDirectory?: RootDirectory | undefined;
36
+ }
37
+ export interface CreateAccessPointResponse {
38
+ accessPointArn: string | undefined;
39
+ accessPointId: string | undefined;
40
+ clientToken: string | undefined;
41
+ fileSystemId: string | undefined;
42
+ status: LifeCycleState | undefined;
43
+ ownerId: string | undefined;
44
+ posixUser?: PosixUser | undefined;
45
+ rootDirectory?: RootDirectory | undefined;
46
+ tags?: Tag[] | undefined;
47
+ name?: string | undefined;
48
+ }
49
+ export interface CreateFileSystemRequest {
50
+ bucket: string | undefined;
51
+ prefix?: string | undefined;
52
+ clientToken?: string | undefined;
53
+ kmsKeyId?: string | undefined;
54
+ roleArn: string | undefined;
55
+ tags?: Tag[] | undefined;
56
+ acceptBucketWarning?: boolean | undefined;
57
+ }
58
+ export interface CreateFileSystemResponse {
59
+ creationTime?: Date | undefined;
60
+ fileSystemArn?: string | undefined;
61
+ fileSystemId?: string | undefined;
62
+ bucket?: string | undefined;
63
+ prefix?: string | undefined;
64
+ clientToken?: string | undefined;
65
+ kmsKeyId?: string | undefined;
66
+ status?: LifeCycleState | undefined;
67
+ statusMessage?: string | undefined;
68
+ roleArn?: string | undefined;
69
+ ownerId?: string | undefined;
70
+ tags?: Tag[] | undefined;
71
+ name?: string | undefined;
72
+ }
73
+ export interface CreateMountTargetRequest {
74
+ fileSystemId: string | undefined;
75
+ subnetId: string | undefined;
76
+ ipv4Address?: string | undefined;
77
+ ipv6Address?: string | undefined;
78
+ ipAddressType?: IpAddressType | undefined;
79
+ securityGroups?: string[] | undefined;
80
+ }
81
+ export interface CreateMountTargetResponse {
82
+ availabilityZoneId?: string | undefined;
83
+ ownerId: string | undefined;
84
+ mountTargetId: string | undefined;
85
+ fileSystemId?: string | undefined;
86
+ subnetId: string | undefined;
87
+ ipv4Address?: string | undefined;
88
+ ipv6Address?: string | undefined;
89
+ networkInterfaceId?: string | undefined;
90
+ vpcId?: string | undefined;
91
+ securityGroups?: string[] | undefined;
92
+ status?: LifeCycleState | undefined;
93
+ statusMessage?: string | undefined;
94
+ }
95
+ export interface DeleteAccessPointRequest {
96
+ accessPointId: string | undefined;
97
+ }
98
+ export interface DeleteFileSystemRequest {
99
+ fileSystemId: string | undefined;
100
+ forceDelete?: boolean | undefined;
101
+ }
102
+ export interface DeleteFileSystemPolicyRequest {
103
+ fileSystemId: string | undefined;
104
+ }
105
+ export interface DeleteMountTargetRequest {
106
+ mountTargetId: string | undefined;
107
+ }
108
+ export interface ExpirationDataRule {
109
+ daysAfterLastAccess: number | undefined;
110
+ }
111
+ export interface ListFileSystemsDescription {
112
+ creationTime: Date | undefined;
113
+ fileSystemArn: string | undefined;
114
+ fileSystemId: string | undefined;
115
+ name?: string | undefined;
116
+ bucket: string | undefined;
117
+ status: LifeCycleState | undefined;
118
+ statusMessage?: string | undefined;
119
+ roleArn: string | undefined;
120
+ ownerId: string | undefined;
121
+ }
122
+ export interface GetAccessPointRequest {
123
+ accessPointId: string | undefined;
124
+ }
125
+ export interface GetAccessPointResponse {
126
+ accessPointArn: string | undefined;
127
+ accessPointId: string | undefined;
128
+ clientToken: string | undefined;
129
+ fileSystemId: string | undefined;
130
+ status: LifeCycleState | undefined;
131
+ ownerId: string | undefined;
132
+ posixUser?: PosixUser | undefined;
133
+ rootDirectory?: RootDirectory | undefined;
134
+ tags?: Tag[] | undefined;
135
+ name?: string | undefined;
136
+ }
137
+ export interface GetFileSystemRequest {
138
+ fileSystemId: string | undefined;
139
+ }
140
+ export interface GetFileSystemResponse {
141
+ creationTime?: Date | undefined;
142
+ fileSystemArn?: string | undefined;
143
+ fileSystemId?: string | undefined;
144
+ bucket?: string | undefined;
145
+ prefix?: string | undefined;
146
+ clientToken?: string | undefined;
147
+ kmsKeyId?: string | undefined;
148
+ status?: LifeCycleState | undefined;
149
+ statusMessage?: string | undefined;
150
+ roleArn?: string | undefined;
151
+ ownerId?: string | undefined;
152
+ tags?: Tag[] | undefined;
153
+ name?: string | undefined;
154
+ }
155
+ export interface GetFileSystemPolicyRequest {
156
+ fileSystemId: string | undefined;
157
+ }
158
+ export interface GetFileSystemPolicyResponse {
159
+ fileSystemId: string | undefined;
160
+ policy: string | undefined;
161
+ }
162
+ export interface GetMountTargetRequest {
163
+ mountTargetId: string | undefined;
164
+ }
165
+ export interface GetMountTargetResponse {
166
+ availabilityZoneId?: string | undefined;
167
+ ownerId: string | undefined;
168
+ mountTargetId: string | undefined;
169
+ fileSystemId?: string | undefined;
170
+ subnetId: string | undefined;
171
+ ipv4Address?: string | undefined;
172
+ ipv6Address?: string | undefined;
173
+ networkInterfaceId?: string | undefined;
174
+ vpcId?: string | undefined;
175
+ securityGroups?: string[] | undefined;
176
+ status?: LifeCycleState | undefined;
177
+ statusMessage?: string | undefined;
178
+ }
179
+ export interface GetSynchronizationConfigurationRequest {
180
+ fileSystemId: string | undefined;
181
+ }
182
+ export interface ImportDataRule {
183
+ prefix: string | undefined;
184
+ trigger: ImportTrigger | undefined;
185
+ sizeLessThan: number | undefined;
186
+ }
187
+ export interface GetSynchronizationConfigurationResponse {
188
+ latestVersionNumber?: number | undefined;
189
+ importDataRules: ImportDataRule[] | undefined;
190
+ expirationDataRules: ExpirationDataRule[] | undefined;
191
+ }
192
+ export interface ListAccessPointsRequest {
193
+ fileSystemId: string | undefined;
194
+ maxResults?: number | undefined;
195
+ nextToken?: string | undefined;
196
+ }
197
+ export interface ListAccessPointsResponse {
198
+ nextToken?: string | undefined;
199
+ accessPoints: ListAccessPointsDescription[] | undefined;
200
+ }
201
+ export interface ListFileSystemsRequest {
202
+ bucket?: string | undefined;
203
+ maxResults?: number | undefined;
204
+ nextToken?: string | undefined;
205
+ }
206
+ export interface ListFileSystemsResponse {
207
+ nextToken?: string | undefined;
208
+ fileSystems: ListFileSystemsDescription[] | undefined;
209
+ }
210
+ export interface ListMountTargetsRequest {
211
+ fileSystemId?: string | undefined;
212
+ accessPointId?: string | undefined;
213
+ maxResults?: number | undefined;
214
+ nextToken?: string | undefined;
215
+ }
216
+ export interface ListMountTargetsDescription {
217
+ availabilityZoneId?: string | undefined;
218
+ fileSystemId?: string | undefined;
219
+ ipv4Address?: string | undefined;
220
+ ipv6Address?: string | undefined;
221
+ status?: LifeCycleState | undefined;
222
+ statusMessage?: string | undefined;
223
+ mountTargetId: string | undefined;
224
+ networkInterfaceId?: string | undefined;
225
+ ownerId: string | undefined;
226
+ subnetId: string | undefined;
227
+ vpcId?: string | undefined;
228
+ }
229
+ export interface ListMountTargetsResponse {
230
+ nextToken?: string | undefined;
231
+ mountTargets: ListMountTargetsDescription[] | undefined;
232
+ }
233
+ export interface ListTagsForResourceRequest {
234
+ resourceId: string | undefined;
235
+ maxResults?: number | undefined;
236
+ nextToken?: string | undefined;
237
+ }
238
+ export interface ListTagsForResourceResponse {
239
+ tags?: Tag[] | undefined;
240
+ nextToken?: string | undefined;
241
+ }
242
+ export interface PutFileSystemPolicyRequest {
243
+ fileSystemId: string | undefined;
244
+ policy: string | undefined;
245
+ }
246
+ export interface PutFileSystemPolicyResponse {}
247
+ export interface PutSynchronizationConfigurationRequest {
248
+ fileSystemId: string | undefined;
249
+ latestVersionNumber?: number | undefined;
250
+ importDataRules: ImportDataRule[] | undefined;
251
+ expirationDataRules: ExpirationDataRule[] | undefined;
252
+ }
253
+ export interface PutSynchronizationConfigurationResponse {}
254
+ export interface TagResourceRequest {
255
+ resourceId: string | undefined;
256
+ tags: Tag[] | undefined;
257
+ }
258
+ export interface UntagResourceRequest {
259
+ resourceId: string | undefined;
260
+ tagKeys: string[] | undefined;
261
+ }
262
+ export interface UpdateMountTargetRequest {
263
+ mountTargetId: string | undefined;
264
+ securityGroups: string[] | undefined;
265
+ }
266
+ export interface UpdateMountTargetResponse {
267
+ availabilityZoneId?: string | undefined;
268
+ ownerId: string | undefined;
269
+ mountTargetId: string | undefined;
270
+ fileSystemId?: string | undefined;
271
+ subnetId: string | undefined;
272
+ ipv4Address?: string | undefined;
273
+ ipv6Address?: string | undefined;
274
+ networkInterfaceId?: string | undefined;
275
+ vpcId?: string | undefined;
276
+ securityGroups?: string[] | undefined;
277
+ status?: LifeCycleState | undefined;
278
+ statusMessage?: string | undefined;
279
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { S3FilesClient } from "../S3FilesClient";
3
+ export interface S3FilesPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: S3FilesClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAccessPointsCommandInput,
4
+ ListAccessPointsCommandOutput,
5
+ } from "../commands/ListAccessPointsCommand";
6
+ import { S3FilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListAccessPoints: (
8
+ config: S3FilesPaginationConfiguration,
9
+ input: ListAccessPointsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListAccessPointsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListFileSystemsCommandInput,
4
+ ListFileSystemsCommandOutput,
5
+ } from "../commands/ListFileSystemsCommand";
6
+ import { S3FilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListFileSystems: (
8
+ config: S3FilesPaginationConfiguration,
9
+ input: ListFileSystemsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListFileSystemsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMountTargetsCommandInput,
4
+ ListMountTargetsCommandOutput,
5
+ } from "../commands/ListMountTargetsCommand";
6
+ import { S3FilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListMountTargets: (
8
+ config: S3FilesPaginationConfiguration,
9
+ input: ListMountTargetsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListMountTargetsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListTagsForResourceCommandInput,
4
+ ListTagsForResourceCommandOutput,
5
+ } from "../commands/ListTagsForResourceCommand";
6
+ import { S3FilesPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListTagsForResource: (
8
+ config: S3FilesPaginationConfiguration,
9
+ input: ListTagsForResourceCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListTagsForResourceCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAccessPointsPaginator";
3
+ export * from "./ListFileSystemsPaginator";
4
+ export * from "./ListMountTargetsPaginator";
5
+ export * from "./ListTagsForResourcePaginator";
@@ -0,0 +1,100 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { S3FilesClientConfig } from "./S3FilesClient";
3
+ export declare const getRuntimeConfig: (config: S3FilesClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
28
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
+ cacheMiddleware?: boolean | undefined;
30
+ protocol:
31
+ | import("@smithy/types").ClientProtocol<any, any>
32
+ | import("@smithy/types").ClientProtocolCtor<any, any>
33
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
34
+ protocolSettings: {
35
+ defaultNamespace?: string;
36
+ [setting: string]: unknown;
37
+ };
38
+ apiVersion: string;
39
+ urlParser: import("@smithy/types").UrlParser;
40
+ base64Decoder: import("@smithy/types").Decoder;
41
+ base64Encoder: (_input: Uint8Array | string) => string;
42
+ utf8Decoder: import("@smithy/types").Decoder;
43
+ utf8Encoder: (input: Uint8Array | string) => string;
44
+ disableHostPrefix: boolean;
45
+ serviceId: string;
46
+ profile?: string;
47
+ logger: import("@smithy/types").Logger;
48
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
49
+ customUserAgent?: string | import("@smithy/types").UserAgent;
50
+ userAgentAppId?:
51
+ | string
52
+ | undefined
53
+ | import("@smithy/types").Provider<string | undefined>;
54
+ retryStrategy?:
55
+ | import("@smithy/types").RetryStrategy
56
+ | import("@smithy/types").RetryStrategyV2;
57
+ endpoint?:
58
+ | ((
59
+ | string
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ) &
65
+ (
66
+ | string
67
+ | import("@smithy/types").Provider<string>
68
+ | import("@smithy/types").Endpoint
69
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
70
+ | import("@smithy/types").EndpointV2
71
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
72
+ ))
73
+ | undefined;
74
+ endpointProvider: (
75
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
76
+ context?: {
77
+ logger?: import("@smithy/types").Logger;
78
+ }
79
+ ) => import("@smithy/types").EndpointV2;
80
+ tls?: boolean;
81
+ serviceConfiguredEndpoint?: never;
82
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
83
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
84
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3FilesHttpAuthSchemeProvider;
85
+ credentials?:
86
+ | import("@smithy/types").AwsCredentialIdentity
87
+ | import("@smithy/types").AwsCredentialIdentityProvider;
88
+ signer?:
89
+ | import("@smithy/types").RequestSigner
90
+ | ((
91
+ authScheme?: import("@smithy/types").AuthScheme
92
+ ) => Promise<import("@smithy/types").RequestSigner>);
93
+ signingEscapePath?: boolean;
94
+ systemClockOffset?: number;
95
+ signingRegion?: string;
96
+ signerConstructor?: new (
97
+ options: import("@smithy/signature-v4").SignatureV4Init &
98
+ import("@smithy/signature-v4").SignatureV4CryptoInit
99
+ ) => import("@smithy/types").RequestSigner;
100
+ };
@@ -0,0 +1,95 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { S3FilesClientConfig } from "./S3FilesClient";
3
+ export declare const getRuntimeConfig: (config: S3FilesClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ ) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
+ defaultUserAgentProvider: (
16
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
17
+ ) => Promise<import("@smithy/types").UserAgent>;
18
+ maxAttempts: number | import("@smithy/types").Provider<number>;
19
+ region: string | import("@smithy/types").Provider<string>;
20
+ requestHandler:
21
+ | RequestHandler
22
+ | import("@smithy/protocol-http").HttpHandler<any>;
23
+ retryMode: string | import("@smithy/types").Provider<string>;
24
+ sha256: import("@smithy/types").HashConstructor;
25
+ streamCollector: import("@smithy/types").StreamCollector;
26
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
29
+ cacheMiddleware?: boolean | undefined;
30
+ protocol:
31
+ | import("@smithy/types").ClientProtocol<any, any>
32
+ | import("@smithy/types").ClientProtocolCtor<any, any>
33
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
34
+ protocolSettings: {
35
+ defaultNamespace?: string;
36
+ [setting: string]: unknown;
37
+ };
38
+ apiVersion: string;
39
+ urlParser: import("@smithy/types").UrlParser;
40
+ base64Decoder: import("@smithy/types").Decoder;
41
+ base64Encoder: (_input: Uint8Array | string) => string;
42
+ utf8Decoder: import("@smithy/types").Decoder;
43
+ utf8Encoder: (input: Uint8Array | string) => string;
44
+ disableHostPrefix: boolean;
45
+ serviceId: string;
46
+ profile?: string;
47
+ logger: import("@smithy/types").Logger;
48
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
49
+ customUserAgent?: string | import("@smithy/types").UserAgent;
50
+ retryStrategy?:
51
+ | import("@smithy/types").RetryStrategy
52
+ | import("@smithy/types").RetryStrategyV2;
53
+ endpoint?:
54
+ | ((
55
+ | string
56
+ | import("@smithy/types").Endpoint
57
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
+ | import("@smithy/types").EndpointV2
59
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
60
+ ) &
61
+ (
62
+ | string
63
+ | import("@smithy/types").Provider<string>
64
+ | import("@smithy/types").Endpoint
65
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
+ | import("@smithy/types").EndpointV2
67
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
68
+ ))
69
+ | undefined;
70
+ endpointProvider: (
71
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
72
+ context?: {
73
+ logger?: import("@smithy/types").Logger;
74
+ }
75
+ ) => import("@smithy/types").EndpointV2;
76
+ tls?: boolean;
77
+ serviceConfiguredEndpoint?: never;
78
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
79
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3FilesHttpAuthSchemeProvider;
80
+ credentials?:
81
+ | import("@smithy/types").AwsCredentialIdentity
82
+ | import("@smithy/types").AwsCredentialIdentityProvider;
83
+ signer?:
84
+ | import("@smithy/types").RequestSigner
85
+ | ((
86
+ authScheme?: import("@smithy/types").AuthScheme
87
+ ) => Promise<import("@smithy/types").RequestSigner>);
88
+ signingEscapePath?: boolean;
89
+ systemClockOffset?: number;
90
+ signingRegion?: string;
91
+ signerConstructor?: new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner;
95
+ };
@@ -0,0 +1,104 @@
1
+ import { S3FilesClientConfig } from "./S3FilesClient";
2
+ export declare const getRuntimeConfig: (config: S3FilesClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ cacheMiddleware?: boolean;
12
+ protocol:
13
+ | import("@smithy/types").ClientProtocol<any, any>
14
+ | import("@smithy/types").ClientProtocolCtor<any, any>
15
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
16
+ protocolSettings: {
17
+ defaultNamespace?: string;
18
+ [setting: string]: unknown;
19
+ };
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
+ streamCollector: import("@smithy/types").StreamCollector;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
32
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
+ region: string | import("@smithy/types").Provider<any>;
35
+ profile?: string;
36
+ defaultUserAgentProvider: (
37
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
38
+ ) => Promise<import("@smithy/types").UserAgent>;
39
+ credentialDefaultProvider:
40
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
41
+ | ((
42
+ _: unknown
43
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
44
+ maxAttempts: number | import("@smithy/types").Provider<number>;
45
+ retryMode: string | import("@smithy/types").Provider<string>;
46
+ logger: import("@smithy/types").Logger;
47
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
48
+ defaultsMode:
49
+ | import("@smithy/smithy-client").DefaultsMode
50
+ | import("@smithy/types").Provider<
51
+ import("@smithy/smithy-client").DefaultsMode
52
+ >;
53
+ customUserAgent?: string | import("@smithy/types").UserAgent;
54
+ userAgentAppId?:
55
+ | string
56
+ | undefined
57
+ | import("@smithy/types").Provider<string | undefined>;
58
+ retryStrategy?:
59
+ | import("@smithy/types").RetryStrategy
60
+ | import("@smithy/types").RetryStrategyV2;
61
+ endpoint?:
62
+ | ((
63
+ | string
64
+ | import("@smithy/types").Endpoint
65
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
+ | import("@smithy/types").EndpointV2
67
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
68
+ ) &
69
+ (
70
+ | string
71
+ | import("@smithy/types").Provider<string>
72
+ | import("@smithy/types").Endpoint
73
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
74
+ | import("@smithy/types").EndpointV2
75
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
76
+ ))
77
+ | undefined;
78
+ endpointProvider: (
79
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
80
+ context?: {
81
+ logger?: import("@smithy/types").Logger;
82
+ }
83
+ ) => import("@smithy/types").EndpointV2;
84
+ tls?: boolean;
85
+ serviceConfiguredEndpoint?: never;
86
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
87
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
88
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3FilesHttpAuthSchemeProvider;
89
+ credentials?:
90
+ | import("@smithy/types").AwsCredentialIdentity
91
+ | import("@smithy/types").AwsCredentialIdentityProvider;
92
+ signer?:
93
+ | import("@smithy/types").RequestSigner
94
+ | ((
95
+ authScheme?: import("@smithy/types").AuthScheme
96
+ ) => Promise<import("@smithy/types").RequestSigner>);
97
+ signingEscapePath?: boolean;
98
+ systemClockOffset?: number;
99
+ signingRegion?: string;
100
+ signerConstructor?: new (
101
+ options: import("@smithy/signature-v4").SignatureV4Init &
102
+ import("@smithy/signature-v4").SignatureV4CryptoInit
103
+ ) => import("@smithy/types").RequestSigner;
104
+ };
@@ -0,0 +1,30 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
+ import { S3FilesClientConfig } from "./S3FilesClient";
3
+ export declare const getRuntimeConfig: (config: S3FilesClientConfig) => {
4
+ apiVersion: string;
5
+ base64Decoder: import("@smithy/types").Decoder;
6
+ base64Encoder: (_input: Uint8Array | string) => string;
7
+ disableHostPrefix: boolean;
8
+ endpointProvider: (
9
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
+ context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }
13
+ ) => import("@smithy/types").EndpointV2;
14
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
15
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3FilesHttpAuthSchemeProvider;
16
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ logger: import("@smithy/types").Logger;
18
+ protocol:
19
+ | import("@smithy/types").ClientProtocol<any, any>
20
+ | import("@smithy/types").ClientProtocolCtor<any, any>
21
+ | typeof AwsRestJsonProtocol;
22
+ protocolSettings: {
23
+ [setting: string]: unknown;
24
+ defaultNamespace?: string;
25
+ };
26
+ serviceId: string;
27
+ urlParser: import("@smithy/types").UrlParser;
28
+ utf8Decoder: import("@smithy/types").Decoder;
29
+ utf8Encoder: (input: Uint8Array | string) => string;
30
+ };