@aws-sdk/client-bedrock-data-automation 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 (46) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/BedrockDataAutomation.d.ts +87 -114
  3. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +6 -19
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
  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/CopyBlueprintStageCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +4 -9
  9. package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateDataAutomationLibraryCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +4 -6
  12. package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/DeleteDataAutomationLibraryCommand.d.ts +4 -6
  14. package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +3 -5
  16. package/dist-types/ts3.4/commands/GetBlueprintOptimizationStatusCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/GetDataAutomationLibraryCommand.d.ts +4 -6
  18. package/dist-types/ts3.4/commands/GetDataAutomationLibraryEntityCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/GetDataAutomationLibraryIngestionJobCommand.d.ts +4 -6
  20. package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/InvokeBlueprintOptimizationAsyncCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/commands/InvokeDataAutomationLibraryIngestionJobCommand.d.ts +4 -6
  23. package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +3 -8
  24. package/dist-types/ts3.4/commands/ListDataAutomationLibrariesCommand.d.ts +3 -5
  25. package/dist-types/ts3.4/commands/ListDataAutomationLibraryEntitiesCommand.d.ts +4 -6
  26. package/dist-types/ts3.4/commands/ListDataAutomationLibraryIngestionJobsCommand.d.ts +4 -6
  27. package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +3 -5
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  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/UpdateBlueprintCommand.d.ts +4 -9
  32. package/dist-types/ts3.4/commands/UpdateDataAutomationLibraryCommand.d.ts +4 -6
  33. package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +4 -6
  34. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  35. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  36. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  37. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  38. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  39. package/dist-types/ts3.4/models/models_0.d.ts +5 -15
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
  45. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
  46. 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.1088.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -92,10 +92,7 @@ import {
92
92
  ListTagsForResourceCommandInput,
93
93
  ListTagsForResourceCommandOutput,
94
94
  } from "./commands/ListTagsForResourceCommand";
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,
@@ -115,416 +112,392 @@ import {
115
112
  export interface BedrockDataAutomation {
116
113
  copyBlueprintStage(
117
114
  args: CopyBlueprintStageCommandInput,
118
- options?: __HttpHandlerOptions
115
+ options?: __HttpHandlerOptions,
119
116
  ): Promise<CopyBlueprintStageCommandOutput>;
120
117
  copyBlueprintStage(
121
118
  args: CopyBlueprintStageCommandInput,
122
- cb: (err: any, data?: CopyBlueprintStageCommandOutput) => void
119
+ cb: (err: any, data?: CopyBlueprintStageCommandOutput) => void,
123
120
  ): void;
124
121
  copyBlueprintStage(
125
122
  args: CopyBlueprintStageCommandInput,
126
123
  options: __HttpHandlerOptions,
127
- cb: (err: any, data?: CopyBlueprintStageCommandOutput) => void
124
+ cb: (err: any, data?: CopyBlueprintStageCommandOutput) => void,
128
125
  ): void;
129
126
  createBlueprint(
130
127
  args: CreateBlueprintCommandInput,
131
- options?: __HttpHandlerOptions
128
+ options?: __HttpHandlerOptions,
132
129
  ): Promise<CreateBlueprintCommandOutput>;
133
130
  createBlueprint(
134
131
  args: CreateBlueprintCommandInput,
135
- cb: (err: any, data?: CreateBlueprintCommandOutput) => void
132
+ cb: (err: any, data?: CreateBlueprintCommandOutput) => void,
136
133
  ): void;
137
134
  createBlueprint(
138
135
  args: CreateBlueprintCommandInput,
139
136
  options: __HttpHandlerOptions,
140
- cb: (err: any, data?: CreateBlueprintCommandOutput) => void
137
+ cb: (err: any, data?: CreateBlueprintCommandOutput) => void,
141
138
  ): void;
142
139
  createBlueprintVersion(
143
140
  args: CreateBlueprintVersionCommandInput,
144
- options?: __HttpHandlerOptions
141
+ options?: __HttpHandlerOptions,
145
142
  ): Promise<CreateBlueprintVersionCommandOutput>;
146
143
  createBlueprintVersion(
147
144
  args: CreateBlueprintVersionCommandInput,
148
- cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void
145
+ cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void,
149
146
  ): void;
150
147
  createBlueprintVersion(
151
148
  args: CreateBlueprintVersionCommandInput,
152
149
  options: __HttpHandlerOptions,
153
- cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void
150
+ cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void,
154
151
  ): void;
155
152
  createDataAutomationLibrary(
156
153
  args: CreateDataAutomationLibraryCommandInput,
157
- options?: __HttpHandlerOptions
154
+ options?: __HttpHandlerOptions,
158
155
  ): Promise<CreateDataAutomationLibraryCommandOutput>;
159
156
  createDataAutomationLibrary(
160
157
  args: CreateDataAutomationLibraryCommandInput,
161
- cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void
158
+ cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void,
162
159
  ): void;
163
160
  createDataAutomationLibrary(
164
161
  args: CreateDataAutomationLibraryCommandInput,
165
162
  options: __HttpHandlerOptions,
166
- cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void
163
+ cb: (err: any, data?: CreateDataAutomationLibraryCommandOutput) => void,
167
164
  ): void;
168
165
  createDataAutomationProject(
169
166
  args: CreateDataAutomationProjectCommandInput,
170
- options?: __HttpHandlerOptions
167
+ options?: __HttpHandlerOptions,
171
168
  ): Promise<CreateDataAutomationProjectCommandOutput>;
172
169
  createDataAutomationProject(
173
170
  args: CreateDataAutomationProjectCommandInput,
174
- cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void
171
+ cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void,
175
172
  ): void;
176
173
  createDataAutomationProject(
177
174
  args: CreateDataAutomationProjectCommandInput,
178
175
  options: __HttpHandlerOptions,
179
- cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void
176
+ cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void,
180
177
  ): void;
181
178
  deleteBlueprint(
182
179
  args: DeleteBlueprintCommandInput,
183
- options?: __HttpHandlerOptions
180
+ options?: __HttpHandlerOptions,
184
181
  ): Promise<DeleteBlueprintCommandOutput>;
185
182
  deleteBlueprint(
186
183
  args: DeleteBlueprintCommandInput,
187
- cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
184
+ cb: (err: any, data?: DeleteBlueprintCommandOutput) => void,
188
185
  ): void;
189
186
  deleteBlueprint(
190
187
  args: DeleteBlueprintCommandInput,
191
188
  options: __HttpHandlerOptions,
192
- cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
189
+ cb: (err: any, data?: DeleteBlueprintCommandOutput) => void,
193
190
  ): void;
194
191
  deleteDataAutomationLibrary(
195
192
  args: DeleteDataAutomationLibraryCommandInput,
196
- options?: __HttpHandlerOptions
193
+ options?: __HttpHandlerOptions,
197
194
  ): Promise<DeleteDataAutomationLibraryCommandOutput>;
198
195
  deleteDataAutomationLibrary(
199
196
  args: DeleteDataAutomationLibraryCommandInput,
200
- cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void
197
+ cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void,
201
198
  ): void;
202
199
  deleteDataAutomationLibrary(
203
200
  args: DeleteDataAutomationLibraryCommandInput,
204
201
  options: __HttpHandlerOptions,
205
- cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void
202
+ cb: (err: any, data?: DeleteDataAutomationLibraryCommandOutput) => void,
206
203
  ): void;
207
204
  deleteDataAutomationProject(
208
205
  args: DeleteDataAutomationProjectCommandInput,
209
- options?: __HttpHandlerOptions
206
+ options?: __HttpHandlerOptions,
210
207
  ): Promise<DeleteDataAutomationProjectCommandOutput>;
211
208
  deleteDataAutomationProject(
212
209
  args: DeleteDataAutomationProjectCommandInput,
213
- cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void
210
+ cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void,
214
211
  ): void;
215
212
  deleteDataAutomationProject(
216
213
  args: DeleteDataAutomationProjectCommandInput,
217
214
  options: __HttpHandlerOptions,
218
- cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void
215
+ cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void,
219
216
  ): void;
220
217
  getBlueprint(
221
218
  args: GetBlueprintCommandInput,
222
- options?: __HttpHandlerOptions
219
+ options?: __HttpHandlerOptions,
223
220
  ): Promise<GetBlueprintCommandOutput>;
224
221
  getBlueprint(
225
222
  args: GetBlueprintCommandInput,
226
- cb: (err: any, data?: GetBlueprintCommandOutput) => void
223
+ cb: (err: any, data?: GetBlueprintCommandOutput) => void,
227
224
  ): void;
228
225
  getBlueprint(
229
226
  args: GetBlueprintCommandInput,
230
227
  options: __HttpHandlerOptions,
231
- cb: (err: any, data?: GetBlueprintCommandOutput) => void
228
+ cb: (err: any, data?: GetBlueprintCommandOutput) => void,
232
229
  ): void;
233
230
  getBlueprintOptimizationStatus(
234
231
  args: GetBlueprintOptimizationStatusCommandInput,
235
- options?: __HttpHandlerOptions
232
+ options?: __HttpHandlerOptions,
236
233
  ): Promise<GetBlueprintOptimizationStatusCommandOutput>;
237
234
  getBlueprintOptimizationStatus(
238
235
  args: GetBlueprintOptimizationStatusCommandInput,
239
- cb: (err: any, data?: GetBlueprintOptimizationStatusCommandOutput) => void
236
+ cb: (err: any, data?: GetBlueprintOptimizationStatusCommandOutput) => void,
240
237
  ): void;
241
238
  getBlueprintOptimizationStatus(
242
239
  args: GetBlueprintOptimizationStatusCommandInput,
243
240
  options: __HttpHandlerOptions,
244
- cb: (err: any, data?: GetBlueprintOptimizationStatusCommandOutput) => void
241
+ cb: (err: any, data?: GetBlueprintOptimizationStatusCommandOutput) => void,
245
242
  ): void;
246
243
  getDataAutomationLibrary(
247
244
  args: GetDataAutomationLibraryCommandInput,
248
- options?: __HttpHandlerOptions
245
+ options?: __HttpHandlerOptions,
249
246
  ): Promise<GetDataAutomationLibraryCommandOutput>;
250
247
  getDataAutomationLibrary(
251
248
  args: GetDataAutomationLibraryCommandInput,
252
- cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void
249
+ cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void,
253
250
  ): void;
254
251
  getDataAutomationLibrary(
255
252
  args: GetDataAutomationLibraryCommandInput,
256
253
  options: __HttpHandlerOptions,
257
- cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void
254
+ cb: (err: any, data?: GetDataAutomationLibraryCommandOutput) => void,
258
255
  ): void;
259
256
  getDataAutomationLibraryEntity(
260
257
  args: GetDataAutomationLibraryEntityCommandInput,
261
- options?: __HttpHandlerOptions
258
+ options?: __HttpHandlerOptions,
262
259
  ): Promise<GetDataAutomationLibraryEntityCommandOutput>;
263
260
  getDataAutomationLibraryEntity(
264
261
  args: GetDataAutomationLibraryEntityCommandInput,
265
- cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void
262
+ cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void,
266
263
  ): void;
267
264
  getDataAutomationLibraryEntity(
268
265
  args: GetDataAutomationLibraryEntityCommandInput,
269
266
  options: __HttpHandlerOptions,
270
- cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void
267
+ cb: (err: any, data?: GetDataAutomationLibraryEntityCommandOutput) => void,
271
268
  ): void;
272
269
  getDataAutomationLibraryIngestionJob(
273
270
  args: GetDataAutomationLibraryIngestionJobCommandInput,
274
- options?: __HttpHandlerOptions
271
+ options?: __HttpHandlerOptions,
275
272
  ): Promise<GetDataAutomationLibraryIngestionJobCommandOutput>;
276
273
  getDataAutomationLibraryIngestionJob(
277
274
  args: GetDataAutomationLibraryIngestionJobCommandInput,
278
- cb: (
279
- err: any,
280
- data?: GetDataAutomationLibraryIngestionJobCommandOutput
281
- ) => void
275
+ cb: (err: any, data?: GetDataAutomationLibraryIngestionJobCommandOutput) => void,
282
276
  ): void;
283
277
  getDataAutomationLibraryIngestionJob(
284
278
  args: GetDataAutomationLibraryIngestionJobCommandInput,
285
279
  options: __HttpHandlerOptions,
286
- cb: (
287
- err: any,
288
- data?: GetDataAutomationLibraryIngestionJobCommandOutput
289
- ) => void
280
+ cb: (err: any, data?: GetDataAutomationLibraryIngestionJobCommandOutput) => void,
290
281
  ): void;
291
282
  getDataAutomationProject(
292
283
  args: GetDataAutomationProjectCommandInput,
293
- options?: __HttpHandlerOptions
284
+ options?: __HttpHandlerOptions,
294
285
  ): Promise<GetDataAutomationProjectCommandOutput>;
295
286
  getDataAutomationProject(
296
287
  args: GetDataAutomationProjectCommandInput,
297
- cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void
288
+ cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void,
298
289
  ): void;
299
290
  getDataAutomationProject(
300
291
  args: GetDataAutomationProjectCommandInput,
301
292
  options: __HttpHandlerOptions,
302
- cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void
293
+ cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void,
303
294
  ): void;
304
295
  invokeBlueprintOptimizationAsync(
305
296
  args: InvokeBlueprintOptimizationAsyncCommandInput,
306
- options?: __HttpHandlerOptions
297
+ options?: __HttpHandlerOptions,
307
298
  ): Promise<InvokeBlueprintOptimizationAsyncCommandOutput>;
308
299
  invokeBlueprintOptimizationAsync(
309
300
  args: InvokeBlueprintOptimizationAsyncCommandInput,
310
- cb: (err: any, data?: InvokeBlueprintOptimizationAsyncCommandOutput) => void
301
+ cb: (err: any, data?: InvokeBlueprintOptimizationAsyncCommandOutput) => void,
311
302
  ): void;
312
303
  invokeBlueprintOptimizationAsync(
313
304
  args: InvokeBlueprintOptimizationAsyncCommandInput,
314
305
  options: __HttpHandlerOptions,
315
- cb: (err: any, data?: InvokeBlueprintOptimizationAsyncCommandOutput) => void
306
+ cb: (err: any, data?: InvokeBlueprintOptimizationAsyncCommandOutput) => void,
316
307
  ): void;
317
308
  invokeDataAutomationLibraryIngestionJob(
318
309
  args: InvokeDataAutomationLibraryIngestionJobCommandInput,
319
- options?: __HttpHandlerOptions
310
+ options?: __HttpHandlerOptions,
320
311
  ): Promise<InvokeDataAutomationLibraryIngestionJobCommandOutput>;
321
312
  invokeDataAutomationLibraryIngestionJob(
322
313
  args: InvokeDataAutomationLibraryIngestionJobCommandInput,
323
- cb: (
324
- err: any,
325
- data?: InvokeDataAutomationLibraryIngestionJobCommandOutput
326
- ) => void
314
+ cb: (err: any, data?: InvokeDataAutomationLibraryIngestionJobCommandOutput) => void,
327
315
  ): void;
328
316
  invokeDataAutomationLibraryIngestionJob(
329
317
  args: InvokeDataAutomationLibraryIngestionJobCommandInput,
330
318
  options: __HttpHandlerOptions,
331
- cb: (
332
- err: any,
333
- data?: InvokeDataAutomationLibraryIngestionJobCommandOutput
334
- ) => void
319
+ cb: (err: any, data?: InvokeDataAutomationLibraryIngestionJobCommandOutput) => void,
335
320
  ): void;
336
321
  listBlueprints(): Promise<ListBlueprintsCommandOutput>;
337
322
  listBlueprints(
338
323
  args: ListBlueprintsCommandInput,
339
- options?: __HttpHandlerOptions
324
+ options?: __HttpHandlerOptions,
340
325
  ): Promise<ListBlueprintsCommandOutput>;
341
326
  listBlueprints(
342
327
  args: ListBlueprintsCommandInput,
343
- cb: (err: any, data?: ListBlueprintsCommandOutput) => void
328
+ cb: (err: any, data?: ListBlueprintsCommandOutput) => void,
344
329
  ): void;
345
330
  listBlueprints(
346
331
  args: ListBlueprintsCommandInput,
347
332
  options: __HttpHandlerOptions,
348
- cb: (err: any, data?: ListBlueprintsCommandOutput) => void
333
+ cb: (err: any, data?: ListBlueprintsCommandOutput) => void,
349
334
  ): void;
350
335
  listDataAutomationLibraries(): Promise<ListDataAutomationLibrariesCommandOutput>;
351
336
  listDataAutomationLibraries(
352
337
  args: ListDataAutomationLibrariesCommandInput,
353
- options?: __HttpHandlerOptions
338
+ options?: __HttpHandlerOptions,
354
339
  ): Promise<ListDataAutomationLibrariesCommandOutput>;
355
340
  listDataAutomationLibraries(
356
341
  args: ListDataAutomationLibrariesCommandInput,
357
- cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void
342
+ cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void,
358
343
  ): void;
359
344
  listDataAutomationLibraries(
360
345
  args: ListDataAutomationLibrariesCommandInput,
361
346
  options: __HttpHandlerOptions,
362
- cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void
347
+ cb: (err: any, data?: ListDataAutomationLibrariesCommandOutput) => void,
363
348
  ): void;
364
349
  listDataAutomationLibraryEntities(
365
350
  args: ListDataAutomationLibraryEntitiesCommandInput,
366
- options?: __HttpHandlerOptions
351
+ options?: __HttpHandlerOptions,
367
352
  ): Promise<ListDataAutomationLibraryEntitiesCommandOutput>;
368
353
  listDataAutomationLibraryEntities(
369
354
  args: ListDataAutomationLibraryEntitiesCommandInput,
370
- cb: (
371
- err: any,
372
- data?: ListDataAutomationLibraryEntitiesCommandOutput
373
- ) => void
355
+ cb: (err: any, data?: ListDataAutomationLibraryEntitiesCommandOutput) => void,
374
356
  ): void;
375
357
  listDataAutomationLibraryEntities(
376
358
  args: ListDataAutomationLibraryEntitiesCommandInput,
377
359
  options: __HttpHandlerOptions,
378
- cb: (
379
- err: any,
380
- data?: ListDataAutomationLibraryEntitiesCommandOutput
381
- ) => void
360
+ cb: (err: any, data?: ListDataAutomationLibraryEntitiesCommandOutput) => void,
382
361
  ): void;
383
362
  listDataAutomationLibraryIngestionJobs(
384
363
  args: ListDataAutomationLibraryIngestionJobsCommandInput,
385
- options?: __HttpHandlerOptions
364
+ options?: __HttpHandlerOptions,
386
365
  ): Promise<ListDataAutomationLibraryIngestionJobsCommandOutput>;
387
366
  listDataAutomationLibraryIngestionJobs(
388
367
  args: ListDataAutomationLibraryIngestionJobsCommandInput,
389
- cb: (
390
- err: any,
391
- data?: ListDataAutomationLibraryIngestionJobsCommandOutput
392
- ) => void
368
+ cb: (err: any, data?: ListDataAutomationLibraryIngestionJobsCommandOutput) => void,
393
369
  ): void;
394
370
  listDataAutomationLibraryIngestionJobs(
395
371
  args: ListDataAutomationLibraryIngestionJobsCommandInput,
396
372
  options: __HttpHandlerOptions,
397
- cb: (
398
- err: any,
399
- data?: ListDataAutomationLibraryIngestionJobsCommandOutput
400
- ) => void
373
+ cb: (err: any, data?: ListDataAutomationLibraryIngestionJobsCommandOutput) => void,
401
374
  ): void;
402
375
  listDataAutomationProjects(): Promise<ListDataAutomationProjectsCommandOutput>;
403
376
  listDataAutomationProjects(
404
377
  args: ListDataAutomationProjectsCommandInput,
405
- options?: __HttpHandlerOptions
378
+ options?: __HttpHandlerOptions,
406
379
  ): Promise<ListDataAutomationProjectsCommandOutput>;
407
380
  listDataAutomationProjects(
408
381
  args: ListDataAutomationProjectsCommandInput,
409
- cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void
382
+ cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void,
410
383
  ): void;
411
384
  listDataAutomationProjects(
412
385
  args: ListDataAutomationProjectsCommandInput,
413
386
  options: __HttpHandlerOptions,
414
- cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void
387
+ cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void,
415
388
  ): void;
416
389
  listTagsForResource(
417
390
  args: ListTagsForResourceCommandInput,
418
- options?: __HttpHandlerOptions
391
+ options?: __HttpHandlerOptions,
419
392
  ): Promise<ListTagsForResourceCommandOutput>;
420
393
  listTagsForResource(
421
394
  args: ListTagsForResourceCommandInput,
422
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
395
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
423
396
  ): void;
424
397
  listTagsForResource(
425
398
  args: ListTagsForResourceCommandInput,
426
399
  options: __HttpHandlerOptions,
427
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
400
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
428
401
  ): void;
429
402
  tagResource(
430
403
  args: TagResourceCommandInput,
431
- options?: __HttpHandlerOptions
404
+ options?: __HttpHandlerOptions,
432
405
  ): Promise<TagResourceCommandOutput>;
433
406
  tagResource(
434
407
  args: TagResourceCommandInput,
435
- cb: (err: any, data?: TagResourceCommandOutput) => void
408
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
436
409
  ): void;
437
410
  tagResource(
438
411
  args: TagResourceCommandInput,
439
412
  options: __HttpHandlerOptions,
440
- cb: (err: any, data?: TagResourceCommandOutput) => void
413
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
441
414
  ): void;
442
415
  untagResource(
443
416
  args: UntagResourceCommandInput,
444
- options?: __HttpHandlerOptions
417
+ options?: __HttpHandlerOptions,
445
418
  ): Promise<UntagResourceCommandOutput>;
446
419
  untagResource(
447
420
  args: UntagResourceCommandInput,
448
- cb: (err: any, data?: UntagResourceCommandOutput) => void
421
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
449
422
  ): void;
450
423
  untagResource(
451
424
  args: UntagResourceCommandInput,
452
425
  options: __HttpHandlerOptions,
453
- cb: (err: any, data?: UntagResourceCommandOutput) => void
426
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
454
427
  ): void;
455
428
  updateBlueprint(
456
429
  args: UpdateBlueprintCommandInput,
457
- options?: __HttpHandlerOptions
430
+ options?: __HttpHandlerOptions,
458
431
  ): Promise<UpdateBlueprintCommandOutput>;
459
432
  updateBlueprint(
460
433
  args: UpdateBlueprintCommandInput,
461
- cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
434
+ cb: (err: any, data?: UpdateBlueprintCommandOutput) => void,
462
435
  ): void;
463
436
  updateBlueprint(
464
437
  args: UpdateBlueprintCommandInput,
465
438
  options: __HttpHandlerOptions,
466
- cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
439
+ cb: (err: any, data?: UpdateBlueprintCommandOutput) => void,
467
440
  ): void;
468
441
  updateDataAutomationLibrary(
469
442
  args: UpdateDataAutomationLibraryCommandInput,
470
- options?: __HttpHandlerOptions
443
+ options?: __HttpHandlerOptions,
471
444
  ): Promise<UpdateDataAutomationLibraryCommandOutput>;
472
445
  updateDataAutomationLibrary(
473
446
  args: UpdateDataAutomationLibraryCommandInput,
474
- cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void
447
+ cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void,
475
448
  ): void;
476
449
  updateDataAutomationLibrary(
477
450
  args: UpdateDataAutomationLibraryCommandInput,
478
451
  options: __HttpHandlerOptions,
479
- cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void
452
+ cb: (err: any, data?: UpdateDataAutomationLibraryCommandOutput) => void,
480
453
  ): void;
481
454
  updateDataAutomationProject(
482
455
  args: UpdateDataAutomationProjectCommandInput,
483
- options?: __HttpHandlerOptions
456
+ options?: __HttpHandlerOptions,
484
457
  ): Promise<UpdateDataAutomationProjectCommandOutput>;
485
458
  updateDataAutomationProject(
486
459
  args: UpdateDataAutomationProjectCommandInput,
487
- cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void
460
+ cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void,
488
461
  ): void;
489
462
  updateDataAutomationProject(
490
463
  args: UpdateDataAutomationProjectCommandInput,
491
464
  options: __HttpHandlerOptions,
492
- cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void
465
+ cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void,
493
466
  ): void;
494
467
  paginateListBlueprints(
495
468
  args?: ListBlueprintsCommandInput,
496
469
  paginationConfig?: Pick<
497
470
  PaginationConfiguration,
498
471
  Exclude<keyof PaginationConfiguration, "client">
499
- >
472
+ >,
500
473
  ): Paginator<ListBlueprintsCommandOutput>;
501
474
  paginateListDataAutomationLibraries(
502
475
  args?: ListDataAutomationLibrariesCommandInput,
503
476
  paginationConfig?: Pick<
504
477
  PaginationConfiguration,
505
478
  Exclude<keyof PaginationConfiguration, "client">
506
- >
479
+ >,
507
480
  ): Paginator<ListDataAutomationLibrariesCommandOutput>;
508
481
  paginateListDataAutomationLibraryEntities(
509
482
  args: ListDataAutomationLibraryEntitiesCommandInput,
510
483
  paginationConfig?: Pick<
511
484
  PaginationConfiguration,
512
485
  Exclude<keyof PaginationConfiguration, "client">
513
- >
486
+ >,
514
487
  ): Paginator<ListDataAutomationLibraryEntitiesCommandOutput>;
515
488
  paginateListDataAutomationLibraryIngestionJobs(
516
489
  args: ListDataAutomationLibraryIngestionJobsCommandInput,
517
490
  paginationConfig?: Pick<
518
491
  PaginationConfiguration,
519
492
  Exclude<keyof PaginationConfiguration, "client">
520
- >
493
+ >,
521
494
  ): Paginator<ListDataAutomationLibraryIngestionJobsCommandOutput>;
522
495
  paginateListDataAutomationProjects(
523
496
  args?: ListDataAutomationProjectsCommandInput,
524
497
  paginationConfig?: Pick<
525
498
  PaginationConfiguration,
526
499
  Exclude<keyof PaginationConfiguration, "client">
527
- >
500
+ >,
528
501
  ): Paginator<ListDataAutomationProjectsCommandOutput>;
529
502
  }
530
503
  export declare class BedrockDataAutomation
@@ -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
  ListTagsForResourceCommandInput,
125
122
  ListTagsForResourceCommandOutput,
126
123
  } from "./commands/ListTagsForResourceCommand";
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,
@@ -207,8 +201,7 @@ export type ServiceOutputTypes =
207
201
  | UpdateBlueprintCommandOutput
208
202
  | UpdateDataAutomationLibraryCommandOutput
209
203
  | UpdateDataAutomationProjectCommandOutput;
210
- export interface ClientDefaults
211
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
204
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
212
205
  requestHandler?: __HttpHandlerUserInput;
213
206
  sha256?: __ChecksumConstructor | __HashConstructor;
214
207
  urlParser?: __UrlParser;
@@ -244,8 +237,7 @@ export type BedrockDataAutomationClientConfigType = Partial<
244
237
  EndpointInputConfig<EndpointParameters> &
245
238
  HttpAuthSchemeInputConfig &
246
239
  ClientInputEndpointParameters;
247
- export interface BedrockDataAutomationClientConfig
248
- extends BedrockDataAutomationClientConfigType {}
240
+ export interface BedrockDataAutomationClientConfig extends BedrockDataAutomationClientConfigType {}
249
241
  export type BedrockDataAutomationClientResolvedConfigType =
250
242
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
251
243
  Required<ClientDefaults> &
@@ -257,8 +249,7 @@ export type BedrockDataAutomationClientResolvedConfigType =
257
249
  EndpointResolvedConfig<EndpointParameters> &
258
250
  HttpAuthSchemeResolvedConfig &
259
251
  ClientResolvedEndpointParameters;
260
- export interface BedrockDataAutomationClientResolvedConfig
261
- extends BedrockDataAutomationClientResolvedConfigType {}
252
+ export interface BedrockDataAutomationClientResolvedConfig extends BedrockDataAutomationClientResolvedConfigType {}
262
253
  export declare class BedrockDataAutomationClient extends __Client<
263
254
  __HttpHandlerOptions,
264
255
  ServiceInputTypes,
@@ -266,10 +257,6 @@ export declare class BedrockDataAutomationClient extends __Client<
266
257
  BedrockDataAutomationClientResolvedConfig
267
258
  > {
268
259
  readonly config: BedrockDataAutomationClientResolvedConfig;
269
- constructor(
270
- ...[
271
- configuration,
272
- ]: __CheckOptionalClientConfig<BedrockDataAutomationClientConfig>
273
- );
260
+ constructor(...[configuration]: __CheckOptionalClientConfig<BedrockDataAutomationClientConfig>);
274
261
  destroy(): void;
275
262
  }
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
10
  setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider
11
+ httpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider,
12
12
  ): void;
13
13
  httpAuthSchemeProvider(): BedrockDataAutomationHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
14
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
15
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
16
  }
22
17
  export type HttpAuthRuntimeConfig = Partial<{
23
18
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
20
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
21
  }>;
27
22
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
23
+ runtimeConfig: HttpAuthRuntimeConfig,
29
24
  ) => HttpAuthExtensionConfiguration;
30
25
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
26
+ config: HttpAuthExtensionConfiguration,
32
27
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { BedrockDataAutomationClientResolvedConfig } from "../BedrockDataAutomationClient";
15
- export interface BedrockDataAutomationHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface BedrockDataAutomationHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface BedrockDataAutomationHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- BedrockDataAutomationClientResolvedConfig,
22
- HandlerExecutionContext,
23
- BedrockDataAutomationHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface BedrockDataAutomationHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ BedrockDataAutomationClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ BedrockDataAutomationHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultBedrockDataAutomationHttpAuthSchemeParametersProvider: (
27
25
  config: BedrockDataAutomationClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<BedrockDataAutomationHttpAuthSchemeParameters>;
31
- export interface BedrockDataAutomationHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<BedrockDataAutomationHttpAuthSchemeParameters> {}
29
+ export interface BedrockDataAutomationHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BedrockDataAutomationHttpAuthSchemeParameters> {}
33
30
  export declare const defaultBedrockDataAutomationHttpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: BedrockDataAutomationHttpAuthSchemeProvider;
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: BedrockDataAutomationHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;