@aws-sdk/client-appfabric 3.1087.0 → 3.1088.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 (44) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/AppFabric.d.ts +83 -86
  3. package/dist-types/ts3.4/AppFabricClient.d.ts +6 -18
  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/BatchGetUserAccessTasksCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/ConnectAppAuthorizationCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/CreateAppAuthorizationCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateAppBundleCommand.d.ts +3 -8
  11. package/dist-types/ts3.4/commands/CreateIngestionCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/CreateIngestionDestinationCommand.d.ts +4 -6
  13. package/dist-types/ts3.4/commands/DeleteAppAuthorizationCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteAppBundleCommand.d.ts +4 -9
  15. package/dist-types/ts3.4/commands/DeleteIngestionCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/DeleteIngestionDestinationCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/GetAppAuthorizationCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/GetAppBundleCommand.d.ts +3 -5
  19. package/dist-types/ts3.4/commands/GetIngestionCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/GetIngestionDestinationCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/ListAppAuthorizationsCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListAppBundlesCommand.d.ts +3 -8
  23. package/dist-types/ts3.4/commands/ListIngestionDestinationsCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/ListIngestionsCommand.d.ts +4 -9
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  26. package/dist-types/ts3.4/commands/StartIngestionCommand.d.ts +4 -9
  27. package/dist-types/ts3.4/commands/StartUserAccessTasksCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/StopIngestionCommand.d.ts +4 -9
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  31. package/dist-types/ts3.4/commands/UpdateAppAuthorizationCommand.d.ts +5 -10
  32. package/dist-types/ts3.4/commands/UpdateIngestionDestinationCommand.d.ts +4 -6
  33. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  34. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  35. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +1 -2
  37. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  43. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  44. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -92,10 +92,7 @@ import {
92
92
  StopIngestionCommandInput,
93
93
  StopIngestionCommandOutput,
94
94
  } from "./commands/StopIngestionCommand";
95
- import {
96
- TagResourceCommandInput,
97
- TagResourceCommandOutput,
98
- } from "./commands/TagResourceCommand";
95
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
99
96
  import {
100
97
  UntagResourceCommandInput,
101
98
  UntagResourceCommandOutput,
@@ -111,371 +108,371 @@ import {
111
108
  export interface AppFabric {
112
109
  batchGetUserAccessTasks(
113
110
  args: BatchGetUserAccessTasksCommandInput,
114
- options?: __HttpHandlerOptions
111
+ options?: __HttpHandlerOptions,
115
112
  ): Promise<BatchGetUserAccessTasksCommandOutput>;
116
113
  batchGetUserAccessTasks(
117
114
  args: BatchGetUserAccessTasksCommandInput,
118
- cb: (err: any, data?: BatchGetUserAccessTasksCommandOutput) => void
115
+ cb: (err: any, data?: BatchGetUserAccessTasksCommandOutput) => void,
119
116
  ): void;
120
117
  batchGetUserAccessTasks(
121
118
  args: BatchGetUserAccessTasksCommandInput,
122
119
  options: __HttpHandlerOptions,
123
- cb: (err: any, data?: BatchGetUserAccessTasksCommandOutput) => void
120
+ cb: (err: any, data?: BatchGetUserAccessTasksCommandOutput) => void,
124
121
  ): void;
125
122
  connectAppAuthorization(
126
123
  args: ConnectAppAuthorizationCommandInput,
127
- options?: __HttpHandlerOptions
124
+ options?: __HttpHandlerOptions,
128
125
  ): Promise<ConnectAppAuthorizationCommandOutput>;
129
126
  connectAppAuthorization(
130
127
  args: ConnectAppAuthorizationCommandInput,
131
- cb: (err: any, data?: ConnectAppAuthorizationCommandOutput) => void
128
+ cb: (err: any, data?: ConnectAppAuthorizationCommandOutput) => void,
132
129
  ): void;
133
130
  connectAppAuthorization(
134
131
  args: ConnectAppAuthorizationCommandInput,
135
132
  options: __HttpHandlerOptions,
136
- cb: (err: any, data?: ConnectAppAuthorizationCommandOutput) => void
133
+ cb: (err: any, data?: ConnectAppAuthorizationCommandOutput) => void,
137
134
  ): void;
138
135
  createAppAuthorization(
139
136
  args: CreateAppAuthorizationCommandInput,
140
- options?: __HttpHandlerOptions
137
+ options?: __HttpHandlerOptions,
141
138
  ): Promise<CreateAppAuthorizationCommandOutput>;
142
139
  createAppAuthorization(
143
140
  args: CreateAppAuthorizationCommandInput,
144
- cb: (err: any, data?: CreateAppAuthorizationCommandOutput) => void
141
+ cb: (err: any, data?: CreateAppAuthorizationCommandOutput) => void,
145
142
  ): void;
146
143
  createAppAuthorization(
147
144
  args: CreateAppAuthorizationCommandInput,
148
145
  options: __HttpHandlerOptions,
149
- cb: (err: any, data?: CreateAppAuthorizationCommandOutput) => void
146
+ cb: (err: any, data?: CreateAppAuthorizationCommandOutput) => void,
150
147
  ): void;
151
148
  createAppBundle(): Promise<CreateAppBundleCommandOutput>;
152
149
  createAppBundle(
153
150
  args: CreateAppBundleCommandInput,
154
- options?: __HttpHandlerOptions
151
+ options?: __HttpHandlerOptions,
155
152
  ): Promise<CreateAppBundleCommandOutput>;
156
153
  createAppBundle(
157
154
  args: CreateAppBundleCommandInput,
158
- cb: (err: any, data?: CreateAppBundleCommandOutput) => void
155
+ cb: (err: any, data?: CreateAppBundleCommandOutput) => void,
159
156
  ): void;
160
157
  createAppBundle(
161
158
  args: CreateAppBundleCommandInput,
162
159
  options: __HttpHandlerOptions,
163
- cb: (err: any, data?: CreateAppBundleCommandOutput) => void
160
+ cb: (err: any, data?: CreateAppBundleCommandOutput) => void,
164
161
  ): void;
165
162
  createIngestion(
166
163
  args: CreateIngestionCommandInput,
167
- options?: __HttpHandlerOptions
164
+ options?: __HttpHandlerOptions,
168
165
  ): Promise<CreateIngestionCommandOutput>;
169
166
  createIngestion(
170
167
  args: CreateIngestionCommandInput,
171
- cb: (err: any, data?: CreateIngestionCommandOutput) => void
168
+ cb: (err: any, data?: CreateIngestionCommandOutput) => void,
172
169
  ): void;
173
170
  createIngestion(
174
171
  args: CreateIngestionCommandInput,
175
172
  options: __HttpHandlerOptions,
176
- cb: (err: any, data?: CreateIngestionCommandOutput) => void
173
+ cb: (err: any, data?: CreateIngestionCommandOutput) => void,
177
174
  ): void;
178
175
  createIngestionDestination(
179
176
  args: CreateIngestionDestinationCommandInput,
180
- options?: __HttpHandlerOptions
177
+ options?: __HttpHandlerOptions,
181
178
  ): Promise<CreateIngestionDestinationCommandOutput>;
182
179
  createIngestionDestination(
183
180
  args: CreateIngestionDestinationCommandInput,
184
- cb: (err: any, data?: CreateIngestionDestinationCommandOutput) => void
181
+ cb: (err: any, data?: CreateIngestionDestinationCommandOutput) => void,
185
182
  ): void;
186
183
  createIngestionDestination(
187
184
  args: CreateIngestionDestinationCommandInput,
188
185
  options: __HttpHandlerOptions,
189
- cb: (err: any, data?: CreateIngestionDestinationCommandOutput) => void
186
+ cb: (err: any, data?: CreateIngestionDestinationCommandOutput) => void,
190
187
  ): void;
191
188
  deleteAppAuthorization(
192
189
  args: DeleteAppAuthorizationCommandInput,
193
- options?: __HttpHandlerOptions
190
+ options?: __HttpHandlerOptions,
194
191
  ): Promise<DeleteAppAuthorizationCommandOutput>;
195
192
  deleteAppAuthorization(
196
193
  args: DeleteAppAuthorizationCommandInput,
197
- cb: (err: any, data?: DeleteAppAuthorizationCommandOutput) => void
194
+ cb: (err: any, data?: DeleteAppAuthorizationCommandOutput) => void,
198
195
  ): void;
199
196
  deleteAppAuthorization(
200
197
  args: DeleteAppAuthorizationCommandInput,
201
198
  options: __HttpHandlerOptions,
202
- cb: (err: any, data?: DeleteAppAuthorizationCommandOutput) => void
199
+ cb: (err: any, data?: DeleteAppAuthorizationCommandOutput) => void,
203
200
  ): void;
204
201
  deleteAppBundle(
205
202
  args: DeleteAppBundleCommandInput,
206
- options?: __HttpHandlerOptions
203
+ options?: __HttpHandlerOptions,
207
204
  ): Promise<DeleteAppBundleCommandOutput>;
208
205
  deleteAppBundle(
209
206
  args: DeleteAppBundleCommandInput,
210
- cb: (err: any, data?: DeleteAppBundleCommandOutput) => void
207
+ cb: (err: any, data?: DeleteAppBundleCommandOutput) => void,
211
208
  ): void;
212
209
  deleteAppBundle(
213
210
  args: DeleteAppBundleCommandInput,
214
211
  options: __HttpHandlerOptions,
215
- cb: (err: any, data?: DeleteAppBundleCommandOutput) => void
212
+ cb: (err: any, data?: DeleteAppBundleCommandOutput) => void,
216
213
  ): void;
217
214
  deleteIngestion(
218
215
  args: DeleteIngestionCommandInput,
219
- options?: __HttpHandlerOptions
216
+ options?: __HttpHandlerOptions,
220
217
  ): Promise<DeleteIngestionCommandOutput>;
221
218
  deleteIngestion(
222
219
  args: DeleteIngestionCommandInput,
223
- cb: (err: any, data?: DeleteIngestionCommandOutput) => void
220
+ cb: (err: any, data?: DeleteIngestionCommandOutput) => void,
224
221
  ): void;
225
222
  deleteIngestion(
226
223
  args: DeleteIngestionCommandInput,
227
224
  options: __HttpHandlerOptions,
228
- cb: (err: any, data?: DeleteIngestionCommandOutput) => void
225
+ cb: (err: any, data?: DeleteIngestionCommandOutput) => void,
229
226
  ): void;
230
227
  deleteIngestionDestination(
231
228
  args: DeleteIngestionDestinationCommandInput,
232
- options?: __HttpHandlerOptions
229
+ options?: __HttpHandlerOptions,
233
230
  ): Promise<DeleteIngestionDestinationCommandOutput>;
234
231
  deleteIngestionDestination(
235
232
  args: DeleteIngestionDestinationCommandInput,
236
- cb: (err: any, data?: DeleteIngestionDestinationCommandOutput) => void
233
+ cb: (err: any, data?: DeleteIngestionDestinationCommandOutput) => void,
237
234
  ): void;
238
235
  deleteIngestionDestination(
239
236
  args: DeleteIngestionDestinationCommandInput,
240
237
  options: __HttpHandlerOptions,
241
- cb: (err: any, data?: DeleteIngestionDestinationCommandOutput) => void
238
+ cb: (err: any, data?: DeleteIngestionDestinationCommandOutput) => void,
242
239
  ): void;
243
240
  getAppAuthorization(
244
241
  args: GetAppAuthorizationCommandInput,
245
- options?: __HttpHandlerOptions
242
+ options?: __HttpHandlerOptions,
246
243
  ): Promise<GetAppAuthorizationCommandOutput>;
247
244
  getAppAuthorization(
248
245
  args: GetAppAuthorizationCommandInput,
249
- cb: (err: any, data?: GetAppAuthorizationCommandOutput) => void
246
+ cb: (err: any, data?: GetAppAuthorizationCommandOutput) => void,
250
247
  ): void;
251
248
  getAppAuthorization(
252
249
  args: GetAppAuthorizationCommandInput,
253
250
  options: __HttpHandlerOptions,
254
- cb: (err: any, data?: GetAppAuthorizationCommandOutput) => void
251
+ cb: (err: any, data?: GetAppAuthorizationCommandOutput) => void,
255
252
  ): void;
256
253
  getAppBundle(
257
254
  args: GetAppBundleCommandInput,
258
- options?: __HttpHandlerOptions
255
+ options?: __HttpHandlerOptions,
259
256
  ): Promise<GetAppBundleCommandOutput>;
260
257
  getAppBundle(
261
258
  args: GetAppBundleCommandInput,
262
- cb: (err: any, data?: GetAppBundleCommandOutput) => void
259
+ cb: (err: any, data?: GetAppBundleCommandOutput) => void,
263
260
  ): void;
264
261
  getAppBundle(
265
262
  args: GetAppBundleCommandInput,
266
263
  options: __HttpHandlerOptions,
267
- cb: (err: any, data?: GetAppBundleCommandOutput) => void
264
+ cb: (err: any, data?: GetAppBundleCommandOutput) => void,
268
265
  ): void;
269
266
  getIngestion(
270
267
  args: GetIngestionCommandInput,
271
- options?: __HttpHandlerOptions
268
+ options?: __HttpHandlerOptions,
272
269
  ): Promise<GetIngestionCommandOutput>;
273
270
  getIngestion(
274
271
  args: GetIngestionCommandInput,
275
- cb: (err: any, data?: GetIngestionCommandOutput) => void
272
+ cb: (err: any, data?: GetIngestionCommandOutput) => void,
276
273
  ): void;
277
274
  getIngestion(
278
275
  args: GetIngestionCommandInput,
279
276
  options: __HttpHandlerOptions,
280
- cb: (err: any, data?: GetIngestionCommandOutput) => void
277
+ cb: (err: any, data?: GetIngestionCommandOutput) => void,
281
278
  ): void;
282
279
  getIngestionDestination(
283
280
  args: GetIngestionDestinationCommandInput,
284
- options?: __HttpHandlerOptions
281
+ options?: __HttpHandlerOptions,
285
282
  ): Promise<GetIngestionDestinationCommandOutput>;
286
283
  getIngestionDestination(
287
284
  args: GetIngestionDestinationCommandInput,
288
- cb: (err: any, data?: GetIngestionDestinationCommandOutput) => void
285
+ cb: (err: any, data?: GetIngestionDestinationCommandOutput) => void,
289
286
  ): void;
290
287
  getIngestionDestination(
291
288
  args: GetIngestionDestinationCommandInput,
292
289
  options: __HttpHandlerOptions,
293
- cb: (err: any, data?: GetIngestionDestinationCommandOutput) => void
290
+ cb: (err: any, data?: GetIngestionDestinationCommandOutput) => void,
294
291
  ): void;
295
292
  listAppAuthorizations(
296
293
  args: ListAppAuthorizationsCommandInput,
297
- options?: __HttpHandlerOptions
294
+ options?: __HttpHandlerOptions,
298
295
  ): Promise<ListAppAuthorizationsCommandOutput>;
299
296
  listAppAuthorizations(
300
297
  args: ListAppAuthorizationsCommandInput,
301
- cb: (err: any, data?: ListAppAuthorizationsCommandOutput) => void
298
+ cb: (err: any, data?: ListAppAuthorizationsCommandOutput) => void,
302
299
  ): void;
303
300
  listAppAuthorizations(
304
301
  args: ListAppAuthorizationsCommandInput,
305
302
  options: __HttpHandlerOptions,
306
- cb: (err: any, data?: ListAppAuthorizationsCommandOutput) => void
303
+ cb: (err: any, data?: ListAppAuthorizationsCommandOutput) => void,
307
304
  ): void;
308
305
  listAppBundles(): Promise<ListAppBundlesCommandOutput>;
309
306
  listAppBundles(
310
307
  args: ListAppBundlesCommandInput,
311
- options?: __HttpHandlerOptions
308
+ options?: __HttpHandlerOptions,
312
309
  ): Promise<ListAppBundlesCommandOutput>;
313
310
  listAppBundles(
314
311
  args: ListAppBundlesCommandInput,
315
- cb: (err: any, data?: ListAppBundlesCommandOutput) => void
312
+ cb: (err: any, data?: ListAppBundlesCommandOutput) => void,
316
313
  ): void;
317
314
  listAppBundles(
318
315
  args: ListAppBundlesCommandInput,
319
316
  options: __HttpHandlerOptions,
320
- cb: (err: any, data?: ListAppBundlesCommandOutput) => void
317
+ cb: (err: any, data?: ListAppBundlesCommandOutput) => void,
321
318
  ): void;
322
319
  listIngestionDestinations(
323
320
  args: ListIngestionDestinationsCommandInput,
324
- options?: __HttpHandlerOptions
321
+ options?: __HttpHandlerOptions,
325
322
  ): Promise<ListIngestionDestinationsCommandOutput>;
326
323
  listIngestionDestinations(
327
324
  args: ListIngestionDestinationsCommandInput,
328
- cb: (err: any, data?: ListIngestionDestinationsCommandOutput) => void
325
+ cb: (err: any, data?: ListIngestionDestinationsCommandOutput) => void,
329
326
  ): void;
330
327
  listIngestionDestinations(
331
328
  args: ListIngestionDestinationsCommandInput,
332
329
  options: __HttpHandlerOptions,
333
- cb: (err: any, data?: ListIngestionDestinationsCommandOutput) => void
330
+ cb: (err: any, data?: ListIngestionDestinationsCommandOutput) => void,
334
331
  ): void;
335
332
  listIngestions(
336
333
  args: ListIngestionsCommandInput,
337
- options?: __HttpHandlerOptions
334
+ options?: __HttpHandlerOptions,
338
335
  ): Promise<ListIngestionsCommandOutput>;
339
336
  listIngestions(
340
337
  args: ListIngestionsCommandInput,
341
- cb: (err: any, data?: ListIngestionsCommandOutput) => void
338
+ cb: (err: any, data?: ListIngestionsCommandOutput) => void,
342
339
  ): void;
343
340
  listIngestions(
344
341
  args: ListIngestionsCommandInput,
345
342
  options: __HttpHandlerOptions,
346
- cb: (err: any, data?: ListIngestionsCommandOutput) => void
343
+ cb: (err: any, data?: ListIngestionsCommandOutput) => void,
347
344
  ): void;
348
345
  listTagsForResource(
349
346
  args: ListTagsForResourceCommandInput,
350
- options?: __HttpHandlerOptions
347
+ options?: __HttpHandlerOptions,
351
348
  ): Promise<ListTagsForResourceCommandOutput>;
352
349
  listTagsForResource(
353
350
  args: ListTagsForResourceCommandInput,
354
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
351
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
355
352
  ): void;
356
353
  listTagsForResource(
357
354
  args: ListTagsForResourceCommandInput,
358
355
  options: __HttpHandlerOptions,
359
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
356
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
360
357
  ): void;
361
358
  startIngestion(
362
359
  args: StartIngestionCommandInput,
363
- options?: __HttpHandlerOptions
360
+ options?: __HttpHandlerOptions,
364
361
  ): Promise<StartIngestionCommandOutput>;
365
362
  startIngestion(
366
363
  args: StartIngestionCommandInput,
367
- cb: (err: any, data?: StartIngestionCommandOutput) => void
364
+ cb: (err: any, data?: StartIngestionCommandOutput) => void,
368
365
  ): void;
369
366
  startIngestion(
370
367
  args: StartIngestionCommandInput,
371
368
  options: __HttpHandlerOptions,
372
- cb: (err: any, data?: StartIngestionCommandOutput) => void
369
+ cb: (err: any, data?: StartIngestionCommandOutput) => void,
373
370
  ): void;
374
371
  startUserAccessTasks(
375
372
  args: StartUserAccessTasksCommandInput,
376
- options?: __HttpHandlerOptions
373
+ options?: __HttpHandlerOptions,
377
374
  ): Promise<StartUserAccessTasksCommandOutput>;
378
375
  startUserAccessTasks(
379
376
  args: StartUserAccessTasksCommandInput,
380
- cb: (err: any, data?: StartUserAccessTasksCommandOutput) => void
377
+ cb: (err: any, data?: StartUserAccessTasksCommandOutput) => void,
381
378
  ): void;
382
379
  startUserAccessTasks(
383
380
  args: StartUserAccessTasksCommandInput,
384
381
  options: __HttpHandlerOptions,
385
- cb: (err: any, data?: StartUserAccessTasksCommandOutput) => void
382
+ cb: (err: any, data?: StartUserAccessTasksCommandOutput) => void,
386
383
  ): void;
387
384
  stopIngestion(
388
385
  args: StopIngestionCommandInput,
389
- options?: __HttpHandlerOptions
386
+ options?: __HttpHandlerOptions,
390
387
  ): Promise<StopIngestionCommandOutput>;
391
388
  stopIngestion(
392
389
  args: StopIngestionCommandInput,
393
- cb: (err: any, data?: StopIngestionCommandOutput) => void
390
+ cb: (err: any, data?: StopIngestionCommandOutput) => void,
394
391
  ): void;
395
392
  stopIngestion(
396
393
  args: StopIngestionCommandInput,
397
394
  options: __HttpHandlerOptions,
398
- cb: (err: any, data?: StopIngestionCommandOutput) => void
395
+ cb: (err: any, data?: StopIngestionCommandOutput) => void,
399
396
  ): void;
400
397
  tagResource(
401
398
  args: TagResourceCommandInput,
402
- options?: __HttpHandlerOptions
399
+ options?: __HttpHandlerOptions,
403
400
  ): Promise<TagResourceCommandOutput>;
404
401
  tagResource(
405
402
  args: TagResourceCommandInput,
406
- cb: (err: any, data?: TagResourceCommandOutput) => void
403
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
407
404
  ): void;
408
405
  tagResource(
409
406
  args: TagResourceCommandInput,
410
407
  options: __HttpHandlerOptions,
411
- cb: (err: any, data?: TagResourceCommandOutput) => void
408
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
412
409
  ): void;
413
410
  untagResource(
414
411
  args: UntagResourceCommandInput,
415
- options?: __HttpHandlerOptions
412
+ options?: __HttpHandlerOptions,
416
413
  ): Promise<UntagResourceCommandOutput>;
417
414
  untagResource(
418
415
  args: UntagResourceCommandInput,
419
- cb: (err: any, data?: UntagResourceCommandOutput) => void
416
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
420
417
  ): void;
421
418
  untagResource(
422
419
  args: UntagResourceCommandInput,
423
420
  options: __HttpHandlerOptions,
424
- cb: (err: any, data?: UntagResourceCommandOutput) => void
421
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
425
422
  ): void;
426
423
  updateAppAuthorization(
427
424
  args: UpdateAppAuthorizationCommandInput,
428
- options?: __HttpHandlerOptions
425
+ options?: __HttpHandlerOptions,
429
426
  ): Promise<UpdateAppAuthorizationCommandOutput>;
430
427
  updateAppAuthorization(
431
428
  args: UpdateAppAuthorizationCommandInput,
432
- cb: (err: any, data?: UpdateAppAuthorizationCommandOutput) => void
429
+ cb: (err: any, data?: UpdateAppAuthorizationCommandOutput) => void,
433
430
  ): void;
434
431
  updateAppAuthorization(
435
432
  args: UpdateAppAuthorizationCommandInput,
436
433
  options: __HttpHandlerOptions,
437
- cb: (err: any, data?: UpdateAppAuthorizationCommandOutput) => void
434
+ cb: (err: any, data?: UpdateAppAuthorizationCommandOutput) => void,
438
435
  ): void;
439
436
  updateIngestionDestination(
440
437
  args: UpdateIngestionDestinationCommandInput,
441
- options?: __HttpHandlerOptions
438
+ options?: __HttpHandlerOptions,
442
439
  ): Promise<UpdateIngestionDestinationCommandOutput>;
443
440
  updateIngestionDestination(
444
441
  args: UpdateIngestionDestinationCommandInput,
445
- cb: (err: any, data?: UpdateIngestionDestinationCommandOutput) => void
442
+ cb: (err: any, data?: UpdateIngestionDestinationCommandOutput) => void,
446
443
  ): void;
447
444
  updateIngestionDestination(
448
445
  args: UpdateIngestionDestinationCommandInput,
449
446
  options: __HttpHandlerOptions,
450
- cb: (err: any, data?: UpdateIngestionDestinationCommandOutput) => void
447
+ cb: (err: any, data?: UpdateIngestionDestinationCommandOutput) => void,
451
448
  ): void;
452
449
  paginateListAppAuthorizations(
453
450
  args: ListAppAuthorizationsCommandInput,
454
451
  paginationConfig?: Pick<
455
452
  PaginationConfiguration,
456
453
  Exclude<keyof PaginationConfiguration, "client">
457
- >
454
+ >,
458
455
  ): Paginator<ListAppAuthorizationsCommandOutput>;
459
456
  paginateListAppBundles(
460
457
  args?: ListAppBundlesCommandInput,
461
458
  paginationConfig?: Pick<
462
459
  PaginationConfiguration,
463
460
  Exclude<keyof PaginationConfiguration, "client">
464
- >
461
+ >,
465
462
  ): Paginator<ListAppBundlesCommandOutput>;
466
463
  paginateListIngestionDestinations(
467
464
  args: ListIngestionDestinationsCommandInput,
468
465
  paginationConfig?: Pick<
469
466
  PaginationConfiguration,
470
467
  Exclude<keyof PaginationConfiguration, "client">
471
- >
468
+ >,
472
469
  ): Paginator<ListIngestionDestinationsCommandOutput>;
473
470
  paginateListIngestions(
474
471
  args: ListIngestionsCommandInput,
475
472
  paginationConfig?: Pick<
476
473
  PaginationConfiguration,
477
474
  Exclude<keyof PaginationConfiguration, "client">
478
- >
475
+ >,
479
476
  ): Paginator<ListIngestionsCommandOutput>;
480
477
  }
481
478
  export declare class AppFabric extends AppFabricClient implements AppFabric {}
@@ -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 {
@@ -124,10 +121,7 @@ import {
124
121
  StopIngestionCommandInput,
125
122
  StopIngestionCommandOutput,
126
123
  } from "./commands/StopIngestionCommand";
127
- import {
128
- TagResourceCommandInput,
129
- TagResourceCommandOutput,
130
- } from "./commands/TagResourceCommand";
124
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
131
125
  import {
132
126
  UntagResourceCommandInput,
133
127
  UntagResourceCommandOutput,
@@ -201,8 +195,7 @@ export type ServiceOutputTypes =
201
195
  | UntagResourceCommandOutput
202
196
  | UpdateAppAuthorizationCommandOutput
203
197
  | UpdateIngestionDestinationCommandOutput;
204
- export interface ClientDefaults
205
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
198
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
206
199
  requestHandler?: __HttpHandlerUserInput;
207
200
  sha256?: __ChecksumConstructor | __HashConstructor;
208
201
  urlParser?: __UrlParser;
@@ -227,9 +220,7 @@ export interface ClientDefaults
227
220
  extensions?: RuntimeExtension[];
228
221
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
229
222
  }
230
- export type AppFabricClientConfigType = Partial<
231
- __SmithyConfiguration<__HttpHandlerOptions>
232
- > &
223
+ export type AppFabricClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
233
224
  ClientDefaults &
234
225
  UserAgentInputConfig &
235
226
  RetryInputConfig &
@@ -250,8 +241,7 @@ export type AppFabricClientResolvedConfigType =
250
241
  EndpointResolvedConfig<EndpointParameters> &
251
242
  HttpAuthSchemeResolvedConfig &
252
243
  ClientResolvedEndpointParameters;
253
- export interface AppFabricClientResolvedConfig
254
- extends AppFabricClientResolvedConfigType {}
244
+ export interface AppFabricClientResolvedConfig extends AppFabricClientResolvedConfigType {}
255
245
  export declare class AppFabricClient extends __Client<
256
246
  __HttpHandlerOptions,
257
247
  ServiceInputTypes,
@@ -259,8 +249,6 @@ export declare class AppFabricClient extends __Client<
259
249
  AppFabricClientResolvedConfig
260
250
  > {
261
251
  readonly config: AppFabricClientResolvedConfig;
262
- constructor(
263
- ...[configuration]: __CheckOptionalClientConfig<AppFabricClientConfig>
264
- );
252
+ constructor(...[configuration]: __CheckOptionalClientConfig<AppFabricClientConfig>);
265
253
  destroy(): void;
266
254
  }
@@ -7,17 +7,10 @@ import { AppFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: AppFabricHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: AppFabricHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): AppFabricHttpAuthSchemeProvider;
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 { AppFabricClientResolvedConfig } from "../AppFabricClient";
15
- export interface AppFabricHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface AppFabricHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface AppFabricHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- AppFabricClientResolvedConfig,
22
- HandlerExecutionContext,
23
- AppFabricHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface AppFabricHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ AppFabricClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ AppFabricHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultAppFabricHttpAuthSchemeParametersProvider: (
27
25
  config: AppFabricClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<AppFabricHttpAuthSchemeParameters>;
31
- export interface AppFabricHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<AppFabricHttpAuthSchemeParameters> {}
29
+ export interface AppFabricHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AppFabricHttpAuthSchemeParameters> {}
33
30
  export declare const defaultAppFabricHttpAuthSchemeProvider: AppFabricHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: AppFabricHttpAuthSchemeProvider;
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: AppFabricHttpAuthSchemeProvider;
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 "./AppFabricClient";
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
  AppFabricClientResolvedConfig,
@@ -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[];