@aws-sdk/client-s3files 3.1087.0 → 3.1089.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/S3Files.d.ts +68 -71
  3. package/dist-types/ts3.4/S3FilesClient.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +4 -9
  9. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +3 -4
  11. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +2 -2
  12. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +3 -4
  13. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +3 -4
  14. package/dist-types/ts3.4/commands/GetAccessPointCommand.d.ts +4 -9
  15. package/dist-types/ts3.4/commands/GetFileSystemCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/GetFileSystemPolicyCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/GetMountTargetCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/GetSynchronizationConfigurationCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/ListAccessPointsCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/commands/ListFileSystemsCommand.d.ts +3 -8
  21. package/dist-types/ts3.4/commands/ListMountTargetsCommand.d.ts +3 -8
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  23. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/commands/PutSynchronizationConfigurationCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
  27. package/dist-types/ts3.4/commands/UpdateMountTargetCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  29. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  30. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  31. package/dist-types/ts3.4/models/enums.d.ts +1 -2
  32. package/dist-types/ts3.4/models/errors.d.ts +5 -15
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  38. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  40. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -67,7 +67,7 @@ const commonParams = {
67
67
  Region: { type: "builtInParams", name: "region" },
68
68
  };
69
69
 
70
- var version = "3.1086.0";
70
+ var version = "3.1088.0";
71
71
  var packageInfo = {
72
72
  version: version};
73
73
 
@@ -75,10 +75,7 @@ import {
75
75
  PutSynchronizationConfigurationCommandInput,
76
76
  PutSynchronizationConfigurationCommandOutput,
77
77
  } from "./commands/PutSynchronizationConfigurationCommand";
78
- import {
79
- TagResourceCommandInput,
80
- TagResourceCommandOutput,
81
- } from "./commands/TagResourceCommand";
78
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
82
79
  import {
83
80
  UntagResourceCommandInput,
84
81
  UntagResourceCommandOutput,
@@ -91,306 +88,306 @@ import { S3FilesClient } from "./S3FilesClient";
91
88
  export interface S3Files {
92
89
  createAccessPoint(
93
90
  args: CreateAccessPointCommandInput,
94
- options?: __HttpHandlerOptions
91
+ options?: __HttpHandlerOptions,
95
92
  ): Promise<CreateAccessPointCommandOutput>;
96
93
  createAccessPoint(
97
94
  args: CreateAccessPointCommandInput,
98
- cb: (err: any, data?: CreateAccessPointCommandOutput) => void
95
+ cb: (err: any, data?: CreateAccessPointCommandOutput) => void,
99
96
  ): void;
100
97
  createAccessPoint(
101
98
  args: CreateAccessPointCommandInput,
102
99
  options: __HttpHandlerOptions,
103
- cb: (err: any, data?: CreateAccessPointCommandOutput) => void
100
+ cb: (err: any, data?: CreateAccessPointCommandOutput) => void,
104
101
  ): void;
105
102
  createFileSystem(
106
103
  args: CreateFileSystemCommandInput,
107
- options?: __HttpHandlerOptions
104
+ options?: __HttpHandlerOptions,
108
105
  ): Promise<CreateFileSystemCommandOutput>;
109
106
  createFileSystem(
110
107
  args: CreateFileSystemCommandInput,
111
- cb: (err: any, data?: CreateFileSystemCommandOutput) => void
108
+ cb: (err: any, data?: CreateFileSystemCommandOutput) => void,
112
109
  ): void;
113
110
  createFileSystem(
114
111
  args: CreateFileSystemCommandInput,
115
112
  options: __HttpHandlerOptions,
116
- cb: (err: any, data?: CreateFileSystemCommandOutput) => void
113
+ cb: (err: any, data?: CreateFileSystemCommandOutput) => void,
117
114
  ): void;
118
115
  createMountTarget(
119
116
  args: CreateMountTargetCommandInput,
120
- options?: __HttpHandlerOptions
117
+ options?: __HttpHandlerOptions,
121
118
  ): Promise<CreateMountTargetCommandOutput>;
122
119
  createMountTarget(
123
120
  args: CreateMountTargetCommandInput,
124
- cb: (err: any, data?: CreateMountTargetCommandOutput) => void
121
+ cb: (err: any, data?: CreateMountTargetCommandOutput) => void,
125
122
  ): void;
126
123
  createMountTarget(
127
124
  args: CreateMountTargetCommandInput,
128
125
  options: __HttpHandlerOptions,
129
- cb: (err: any, data?: CreateMountTargetCommandOutput) => void
126
+ cb: (err: any, data?: CreateMountTargetCommandOutput) => void,
130
127
  ): void;
131
128
  deleteAccessPoint(
132
129
  args: DeleteAccessPointCommandInput,
133
- options?: __HttpHandlerOptions
130
+ options?: __HttpHandlerOptions,
134
131
  ): Promise<DeleteAccessPointCommandOutput>;
135
132
  deleteAccessPoint(
136
133
  args: DeleteAccessPointCommandInput,
137
- cb: (err: any, data?: DeleteAccessPointCommandOutput) => void
134
+ cb: (err: any, data?: DeleteAccessPointCommandOutput) => void,
138
135
  ): void;
139
136
  deleteAccessPoint(
140
137
  args: DeleteAccessPointCommandInput,
141
138
  options: __HttpHandlerOptions,
142
- cb: (err: any, data?: DeleteAccessPointCommandOutput) => void
139
+ cb: (err: any, data?: DeleteAccessPointCommandOutput) => void,
143
140
  ): void;
144
141
  deleteFileSystem(
145
142
  args: DeleteFileSystemCommandInput,
146
- options?: __HttpHandlerOptions
143
+ options?: __HttpHandlerOptions,
147
144
  ): Promise<DeleteFileSystemCommandOutput>;
148
145
  deleteFileSystem(
149
146
  args: DeleteFileSystemCommandInput,
150
- cb: (err: any, data?: DeleteFileSystemCommandOutput) => void
147
+ cb: (err: any, data?: DeleteFileSystemCommandOutput) => void,
151
148
  ): void;
152
149
  deleteFileSystem(
153
150
  args: DeleteFileSystemCommandInput,
154
151
  options: __HttpHandlerOptions,
155
- cb: (err: any, data?: DeleteFileSystemCommandOutput) => void
152
+ cb: (err: any, data?: DeleteFileSystemCommandOutput) => void,
156
153
  ): void;
157
154
  deleteFileSystemPolicy(
158
155
  args: DeleteFileSystemPolicyCommandInput,
159
- options?: __HttpHandlerOptions
156
+ options?: __HttpHandlerOptions,
160
157
  ): Promise<DeleteFileSystemPolicyCommandOutput>;
161
158
  deleteFileSystemPolicy(
162
159
  args: DeleteFileSystemPolicyCommandInput,
163
- cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void
160
+ cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void,
164
161
  ): void;
165
162
  deleteFileSystemPolicy(
166
163
  args: DeleteFileSystemPolicyCommandInput,
167
164
  options: __HttpHandlerOptions,
168
- cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void
165
+ cb: (err: any, data?: DeleteFileSystemPolicyCommandOutput) => void,
169
166
  ): void;
170
167
  deleteMountTarget(
171
168
  args: DeleteMountTargetCommandInput,
172
- options?: __HttpHandlerOptions
169
+ options?: __HttpHandlerOptions,
173
170
  ): Promise<DeleteMountTargetCommandOutput>;
174
171
  deleteMountTarget(
175
172
  args: DeleteMountTargetCommandInput,
176
- cb: (err: any, data?: DeleteMountTargetCommandOutput) => void
173
+ cb: (err: any, data?: DeleteMountTargetCommandOutput) => void,
177
174
  ): void;
178
175
  deleteMountTarget(
179
176
  args: DeleteMountTargetCommandInput,
180
177
  options: __HttpHandlerOptions,
181
- cb: (err: any, data?: DeleteMountTargetCommandOutput) => void
178
+ cb: (err: any, data?: DeleteMountTargetCommandOutput) => void,
182
179
  ): void;
183
180
  getAccessPoint(
184
181
  args: GetAccessPointCommandInput,
185
- options?: __HttpHandlerOptions
182
+ options?: __HttpHandlerOptions,
186
183
  ): Promise<GetAccessPointCommandOutput>;
187
184
  getAccessPoint(
188
185
  args: GetAccessPointCommandInput,
189
- cb: (err: any, data?: GetAccessPointCommandOutput) => void
186
+ cb: (err: any, data?: GetAccessPointCommandOutput) => void,
190
187
  ): void;
191
188
  getAccessPoint(
192
189
  args: GetAccessPointCommandInput,
193
190
  options: __HttpHandlerOptions,
194
- cb: (err: any, data?: GetAccessPointCommandOutput) => void
191
+ cb: (err: any, data?: GetAccessPointCommandOutput) => void,
195
192
  ): void;
196
193
  getFileSystem(
197
194
  args: GetFileSystemCommandInput,
198
- options?: __HttpHandlerOptions
195
+ options?: __HttpHandlerOptions,
199
196
  ): Promise<GetFileSystemCommandOutput>;
200
197
  getFileSystem(
201
198
  args: GetFileSystemCommandInput,
202
- cb: (err: any, data?: GetFileSystemCommandOutput) => void
199
+ cb: (err: any, data?: GetFileSystemCommandOutput) => void,
203
200
  ): void;
204
201
  getFileSystem(
205
202
  args: GetFileSystemCommandInput,
206
203
  options: __HttpHandlerOptions,
207
- cb: (err: any, data?: GetFileSystemCommandOutput) => void
204
+ cb: (err: any, data?: GetFileSystemCommandOutput) => void,
208
205
  ): void;
209
206
  getFileSystemPolicy(
210
207
  args: GetFileSystemPolicyCommandInput,
211
- options?: __HttpHandlerOptions
208
+ options?: __HttpHandlerOptions,
212
209
  ): Promise<GetFileSystemPolicyCommandOutput>;
213
210
  getFileSystemPolicy(
214
211
  args: GetFileSystemPolicyCommandInput,
215
- cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void
212
+ cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void,
216
213
  ): void;
217
214
  getFileSystemPolicy(
218
215
  args: GetFileSystemPolicyCommandInput,
219
216
  options: __HttpHandlerOptions,
220
- cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void
217
+ cb: (err: any, data?: GetFileSystemPolicyCommandOutput) => void,
221
218
  ): void;
222
219
  getMountTarget(
223
220
  args: GetMountTargetCommandInput,
224
- options?: __HttpHandlerOptions
221
+ options?: __HttpHandlerOptions,
225
222
  ): Promise<GetMountTargetCommandOutput>;
226
223
  getMountTarget(
227
224
  args: GetMountTargetCommandInput,
228
- cb: (err: any, data?: GetMountTargetCommandOutput) => void
225
+ cb: (err: any, data?: GetMountTargetCommandOutput) => void,
229
226
  ): void;
230
227
  getMountTarget(
231
228
  args: GetMountTargetCommandInput,
232
229
  options: __HttpHandlerOptions,
233
- cb: (err: any, data?: GetMountTargetCommandOutput) => void
230
+ cb: (err: any, data?: GetMountTargetCommandOutput) => void,
234
231
  ): void;
235
232
  getSynchronizationConfiguration(
236
233
  args: GetSynchronizationConfigurationCommandInput,
237
- options?: __HttpHandlerOptions
234
+ options?: __HttpHandlerOptions,
238
235
  ): Promise<GetSynchronizationConfigurationCommandOutput>;
239
236
  getSynchronizationConfiguration(
240
237
  args: GetSynchronizationConfigurationCommandInput,
241
- cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void
238
+ cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void,
242
239
  ): void;
243
240
  getSynchronizationConfiguration(
244
241
  args: GetSynchronizationConfigurationCommandInput,
245
242
  options: __HttpHandlerOptions,
246
- cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void
243
+ cb: (err: any, data?: GetSynchronizationConfigurationCommandOutput) => void,
247
244
  ): void;
248
245
  listAccessPoints(
249
246
  args: ListAccessPointsCommandInput,
250
- options?: __HttpHandlerOptions
247
+ options?: __HttpHandlerOptions,
251
248
  ): Promise<ListAccessPointsCommandOutput>;
252
249
  listAccessPoints(
253
250
  args: ListAccessPointsCommandInput,
254
- cb: (err: any, data?: ListAccessPointsCommandOutput) => void
251
+ cb: (err: any, data?: ListAccessPointsCommandOutput) => void,
255
252
  ): void;
256
253
  listAccessPoints(
257
254
  args: ListAccessPointsCommandInput,
258
255
  options: __HttpHandlerOptions,
259
- cb: (err: any, data?: ListAccessPointsCommandOutput) => void
256
+ cb: (err: any, data?: ListAccessPointsCommandOutput) => void,
260
257
  ): void;
261
258
  listFileSystems(): Promise<ListFileSystemsCommandOutput>;
262
259
  listFileSystems(
263
260
  args: ListFileSystemsCommandInput,
264
- options?: __HttpHandlerOptions
261
+ options?: __HttpHandlerOptions,
265
262
  ): Promise<ListFileSystemsCommandOutput>;
266
263
  listFileSystems(
267
264
  args: ListFileSystemsCommandInput,
268
- cb: (err: any, data?: ListFileSystemsCommandOutput) => void
265
+ cb: (err: any, data?: ListFileSystemsCommandOutput) => void,
269
266
  ): void;
270
267
  listFileSystems(
271
268
  args: ListFileSystemsCommandInput,
272
269
  options: __HttpHandlerOptions,
273
- cb: (err: any, data?: ListFileSystemsCommandOutput) => void
270
+ cb: (err: any, data?: ListFileSystemsCommandOutput) => void,
274
271
  ): void;
275
272
  listMountTargets(): Promise<ListMountTargetsCommandOutput>;
276
273
  listMountTargets(
277
274
  args: ListMountTargetsCommandInput,
278
- options?: __HttpHandlerOptions
275
+ options?: __HttpHandlerOptions,
279
276
  ): Promise<ListMountTargetsCommandOutput>;
280
277
  listMountTargets(
281
278
  args: ListMountTargetsCommandInput,
282
- cb: (err: any, data?: ListMountTargetsCommandOutput) => void
279
+ cb: (err: any, data?: ListMountTargetsCommandOutput) => void,
283
280
  ): void;
284
281
  listMountTargets(
285
282
  args: ListMountTargetsCommandInput,
286
283
  options: __HttpHandlerOptions,
287
- cb: (err: any, data?: ListMountTargetsCommandOutput) => void
284
+ cb: (err: any, data?: ListMountTargetsCommandOutput) => void,
288
285
  ): void;
289
286
  listTagsForResource(
290
287
  args: ListTagsForResourceCommandInput,
291
- options?: __HttpHandlerOptions
288
+ options?: __HttpHandlerOptions,
292
289
  ): Promise<ListTagsForResourceCommandOutput>;
293
290
  listTagsForResource(
294
291
  args: ListTagsForResourceCommandInput,
295
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
292
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
296
293
  ): void;
297
294
  listTagsForResource(
298
295
  args: ListTagsForResourceCommandInput,
299
296
  options: __HttpHandlerOptions,
300
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
297
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
301
298
  ): void;
302
299
  putFileSystemPolicy(
303
300
  args: PutFileSystemPolicyCommandInput,
304
- options?: __HttpHandlerOptions
301
+ options?: __HttpHandlerOptions,
305
302
  ): Promise<PutFileSystemPolicyCommandOutput>;
306
303
  putFileSystemPolicy(
307
304
  args: PutFileSystemPolicyCommandInput,
308
- cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void
305
+ cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void,
309
306
  ): void;
310
307
  putFileSystemPolicy(
311
308
  args: PutFileSystemPolicyCommandInput,
312
309
  options: __HttpHandlerOptions,
313
- cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void
310
+ cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void,
314
311
  ): void;
315
312
  putSynchronizationConfiguration(
316
313
  args: PutSynchronizationConfigurationCommandInput,
317
- options?: __HttpHandlerOptions
314
+ options?: __HttpHandlerOptions,
318
315
  ): Promise<PutSynchronizationConfigurationCommandOutput>;
319
316
  putSynchronizationConfiguration(
320
317
  args: PutSynchronizationConfigurationCommandInput,
321
- cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void
318
+ cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void,
322
319
  ): void;
323
320
  putSynchronizationConfiguration(
324
321
  args: PutSynchronizationConfigurationCommandInput,
325
322
  options: __HttpHandlerOptions,
326
- cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void
323
+ cb: (err: any, data?: PutSynchronizationConfigurationCommandOutput) => void,
327
324
  ): void;
328
325
  tagResource(
329
326
  args: TagResourceCommandInput,
330
- options?: __HttpHandlerOptions
327
+ options?: __HttpHandlerOptions,
331
328
  ): Promise<TagResourceCommandOutput>;
332
329
  tagResource(
333
330
  args: TagResourceCommandInput,
334
- cb: (err: any, data?: TagResourceCommandOutput) => void
331
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
335
332
  ): void;
336
333
  tagResource(
337
334
  args: TagResourceCommandInput,
338
335
  options: __HttpHandlerOptions,
339
- cb: (err: any, data?: TagResourceCommandOutput) => void
336
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
340
337
  ): void;
341
338
  untagResource(
342
339
  args: UntagResourceCommandInput,
343
- options?: __HttpHandlerOptions
340
+ options?: __HttpHandlerOptions,
344
341
  ): Promise<UntagResourceCommandOutput>;
345
342
  untagResource(
346
343
  args: UntagResourceCommandInput,
347
- cb: (err: any, data?: UntagResourceCommandOutput) => void
344
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
348
345
  ): void;
349
346
  untagResource(
350
347
  args: UntagResourceCommandInput,
351
348
  options: __HttpHandlerOptions,
352
- cb: (err: any, data?: UntagResourceCommandOutput) => void
349
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
353
350
  ): void;
354
351
  updateMountTarget(
355
352
  args: UpdateMountTargetCommandInput,
356
- options?: __HttpHandlerOptions
353
+ options?: __HttpHandlerOptions,
357
354
  ): Promise<UpdateMountTargetCommandOutput>;
358
355
  updateMountTarget(
359
356
  args: UpdateMountTargetCommandInput,
360
- cb: (err: any, data?: UpdateMountTargetCommandOutput) => void
357
+ cb: (err: any, data?: UpdateMountTargetCommandOutput) => void,
361
358
  ): void;
362
359
  updateMountTarget(
363
360
  args: UpdateMountTargetCommandInput,
364
361
  options: __HttpHandlerOptions,
365
- cb: (err: any, data?: UpdateMountTargetCommandOutput) => void
362
+ cb: (err: any, data?: UpdateMountTargetCommandOutput) => void,
366
363
  ): void;
367
364
  paginateListAccessPoints(
368
365
  args: ListAccessPointsCommandInput,
369
366
  paginationConfig?: Pick<
370
367
  PaginationConfiguration,
371
368
  Exclude<keyof PaginationConfiguration, "client">
372
- >
369
+ >,
373
370
  ): Paginator<ListAccessPointsCommandOutput>;
374
371
  paginateListFileSystems(
375
372
  args?: ListFileSystemsCommandInput,
376
373
  paginationConfig?: Pick<
377
374
  PaginationConfiguration,
378
375
  Exclude<keyof PaginationConfiguration, "client">
379
- >
376
+ >,
380
377
  ): Paginator<ListFileSystemsCommandOutput>;
381
378
  paginateListMountTargets(
382
379
  args?: ListMountTargetsCommandInput,
383
380
  paginationConfig?: Pick<
384
381
  PaginationConfiguration,
385
382
  Exclude<keyof PaginationConfiguration, "client">
386
- >
383
+ >,
387
384
  ): Paginator<ListMountTargetsCommandOutput>;
388
385
  paginateListTagsForResource(
389
386
  args: ListTagsForResourceCommandInput,
390
387
  paginationConfig?: Pick<
391
388
  PaginationConfiguration,
392
389
  Exclude<keyof PaginationConfiguration, "client">
393
- >
390
+ >,
394
391
  ): Paginator<ListTagsForResourceCommandOutput>;
395
392
  }
396
393
  export declare class S3Files extends S3FilesClient implements S3Files {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -108,10 +105,7 @@ import {
108
105
  PutSynchronizationConfigurationCommandInput,
109
106
  PutSynchronizationConfigurationCommandOutput,
110
107
  } from "./commands/PutSynchronizationConfigurationCommand";
111
- import {
112
- TagResourceCommandInput,
113
- TagResourceCommandOutput,
114
- } from "./commands/TagResourceCommand";
108
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
115
109
  import {
116
110
  UntagResourceCommandInput,
117
111
  UntagResourceCommandOutput,
@@ -171,8 +165,7 @@ export type ServiceOutputTypes =
171
165
  | TagResourceCommandOutput
172
166
  | UntagResourceCommandOutput
173
167
  | UpdateMountTargetCommandOutput;
174
- export interface ClientDefaults
175
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
168
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
176
169
  requestHandler?: __HttpHandlerUserInput;
177
170
  sha256?: __ChecksumConstructor | __HashConstructor;
178
171
  urlParser?: __UrlParser;
@@ -197,9 +190,7 @@ export interface ClientDefaults
197
190
  extensions?: RuntimeExtension[];
198
191
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
199
192
  }
200
- export type S3FilesClientConfigType = Partial<
201
- __SmithyConfiguration<__HttpHandlerOptions>
202
- > &
193
+ export type S3FilesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
203
194
  ClientDefaults &
204
195
  UserAgentInputConfig &
205
196
  RetryInputConfig &
@@ -209,19 +200,17 @@ export type S3FilesClientConfigType = Partial<
209
200
  HttpAuthSchemeInputConfig &
210
201
  ClientInputEndpointParameters;
211
202
  export interface S3FilesClientConfig extends S3FilesClientConfigType {}
212
- export type S3FilesClientResolvedConfigType =
213
- __SmithyResolvedConfiguration<__HttpHandlerOptions> &
214
- Required<ClientDefaults> &
215
- RuntimeExtensionsConfig &
216
- UserAgentResolvedConfig &
217
- RetryResolvedConfig &
218
- RegionResolvedConfig &
219
- HostHeaderResolvedConfig &
220
- EndpointResolvedConfig<EndpointParameters> &
221
- HttpAuthSchemeResolvedConfig &
222
- ClientResolvedEndpointParameters;
223
- export interface S3FilesClientResolvedConfig
224
- extends S3FilesClientResolvedConfigType {}
203
+ export type S3FilesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
204
+ Required<ClientDefaults> &
205
+ RuntimeExtensionsConfig &
206
+ UserAgentResolvedConfig &
207
+ RetryResolvedConfig &
208
+ RegionResolvedConfig &
209
+ HostHeaderResolvedConfig &
210
+ EndpointResolvedConfig<EndpointParameters> &
211
+ HttpAuthSchemeResolvedConfig &
212
+ ClientResolvedEndpointParameters;
213
+ export interface S3FilesClientResolvedConfig extends S3FilesClientResolvedConfigType {}
225
214
  export declare class S3FilesClient extends __Client<
226
215
  __HttpHandlerOptions,
227
216
  ServiceInputTypes,
@@ -229,8 +218,6 @@ export declare class S3FilesClient extends __Client<
229
218
  S3FilesClientResolvedConfig
230
219
  > {
231
220
  readonly config: S3FilesClientResolvedConfig;
232
- constructor(
233
- ...[configuration]: __CheckOptionalClientConfig<S3FilesClientConfig>
234
- );
221
+ constructor(...[configuration]: __CheckOptionalClientConfig<S3FilesClientConfig>);
235
222
  destroy(): void;
236
223
  }
@@ -7,17 +7,10 @@ import { S3FilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): S3FilesHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { S3FilesClientResolvedConfig } from "../S3FilesClient";
15
- export interface S3FilesHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface S3FilesHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface S3FilesHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- S3FilesClientResolvedConfig,
22
- HandlerExecutionContext,
23
- S3FilesHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface S3FilesHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ S3FilesClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ S3FilesHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultS3FilesHttpAuthSchemeParametersProvider: (
27
25
  config: S3FilesClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<S3FilesHttpAuthSchemeParameters>;
31
- export interface S3FilesHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<S3FilesHttpAuthSchemeParameters> {}
29
+ export interface S3FilesHttpAuthSchemeProvider extends HttpAuthSchemeProvider<S3FilesHttpAuthSchemeParameters> {}
33
30
  export declare const defaultS3FilesHttpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: S3FilesHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: S3FilesHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./S3FilesClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  S3FilesClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateAccessPointRequest,
4
- CreateAccessPointResponse,
5
- } from "../models/models_0";
2
+ import { CreateAccessPointRequest, CreateAccessPointResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateAccessPointCommandInput
8
- extends CreateAccessPointRequest {}
4
+ export interface CreateAccessPointCommandInput extends CreateAccessPointRequest {}
9
5
  export interface CreateAccessPointCommandOutput
10
- extends CreateAccessPointResponse,
11
- __MetadataBearer {}
6
+ extends CreateAccessPointResponse, __MetadataBearer {}
12
7
  declare const CreateAccessPointCommand_base: {
13
8
  new (
14
- input: CreateAccessPointCommandInput
9
+ input: CreateAccessPointCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateAccessPointCommandInput,
17
12
  CreateAccessPointCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateAccessPointCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateAccessPointCommandInput
18
+ input: CreateAccessPointCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateAccessPointCommandInput,
26
21
  CreateAccessPointCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateFileSystemRequest,
4
- CreateFileSystemResponse,
5
- } from "../models/models_0";
2
+ import { CreateFileSystemRequest, CreateFileSystemResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CreateFileSystemCommandInput extends CreateFileSystemRequest {}
8
- export interface CreateFileSystemCommandOutput
9
- extends CreateFileSystemResponse,
10
- __MetadataBearer {}
5
+ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse, __MetadataBearer {}
11
6
  declare const CreateFileSystemCommand_base: {
12
7
  new (
13
- input: CreateFileSystemCommandInput
8
+ input: CreateFileSystemCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CreateFileSystemCommandInput,
16
11
  CreateFileSystemCommandOutput,
@@ -19,7 +14,7 @@ declare const CreateFileSystemCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CreateFileSystemCommandInput
17
+ input: CreateFileSystemCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CreateFileSystemCommandInput,
25
20
  CreateFileSystemCommandOutput,