@aws-sdk/client-cloudsearch 3.1086.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/CloudSearch.d.ts +79 -81
  3. package/dist-types/ts3.4/CloudSearchClient.d.ts +5 -14
  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/BuildSuggestersCommand.d.ts +4 -9
  8. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +4 -9
  11. package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +3 -5
  15. package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +4 -9
  17. package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +4 -6
  20. package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +3 -8
  22. package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +5 -10
  23. package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +4 -6
  26. package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +4 -9
  28. package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +4 -6
  31. package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +4 -6
  32. package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.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 +3 -6
  37. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  42. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  43. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  44. package/package.json +39 -39
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.1085.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -107,345 +107,343 @@ import {
107
107
  export interface CloudSearch {
108
108
  buildSuggesters(
109
109
  args: BuildSuggestersCommandInput,
110
- options?: __HttpHandlerOptions
110
+ options?: __HttpHandlerOptions,
111
111
  ): Promise<BuildSuggestersCommandOutput>;
112
112
  buildSuggesters(
113
113
  args: BuildSuggestersCommandInput,
114
- cb: (err: any, data?: BuildSuggestersCommandOutput) => void
114
+ cb: (err: any, data?: BuildSuggestersCommandOutput) => void,
115
115
  ): void;
116
116
  buildSuggesters(
117
117
  args: BuildSuggestersCommandInput,
118
118
  options: __HttpHandlerOptions,
119
- cb: (err: any, data?: BuildSuggestersCommandOutput) => void
119
+ cb: (err: any, data?: BuildSuggestersCommandOutput) => void,
120
120
  ): void;
121
121
  createDomain(
122
122
  args: CreateDomainCommandInput,
123
- options?: __HttpHandlerOptions
123
+ options?: __HttpHandlerOptions,
124
124
  ): Promise<CreateDomainCommandOutput>;
125
125
  createDomain(
126
126
  args: CreateDomainCommandInput,
127
- cb: (err: any, data?: CreateDomainCommandOutput) => void
127
+ cb: (err: any, data?: CreateDomainCommandOutput) => void,
128
128
  ): void;
129
129
  createDomain(
130
130
  args: CreateDomainCommandInput,
131
131
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: CreateDomainCommandOutput) => void
132
+ cb: (err: any, data?: CreateDomainCommandOutput) => void,
133
133
  ): void;
134
134
  defineAnalysisScheme(
135
135
  args: DefineAnalysisSchemeCommandInput,
136
- options?: __HttpHandlerOptions
136
+ options?: __HttpHandlerOptions,
137
137
  ): Promise<DefineAnalysisSchemeCommandOutput>;
138
138
  defineAnalysisScheme(
139
139
  args: DefineAnalysisSchemeCommandInput,
140
- cb: (err: any, data?: DefineAnalysisSchemeCommandOutput) => void
140
+ cb: (err: any, data?: DefineAnalysisSchemeCommandOutput) => void,
141
141
  ): void;
142
142
  defineAnalysisScheme(
143
143
  args: DefineAnalysisSchemeCommandInput,
144
144
  options: __HttpHandlerOptions,
145
- cb: (err: any, data?: DefineAnalysisSchemeCommandOutput) => void
145
+ cb: (err: any, data?: DefineAnalysisSchemeCommandOutput) => void,
146
146
  ): void;
147
147
  defineExpression(
148
148
  args: DefineExpressionCommandInput,
149
- options?: __HttpHandlerOptions
149
+ options?: __HttpHandlerOptions,
150
150
  ): Promise<DefineExpressionCommandOutput>;
151
151
  defineExpression(
152
152
  args: DefineExpressionCommandInput,
153
- cb: (err: any, data?: DefineExpressionCommandOutput) => void
153
+ cb: (err: any, data?: DefineExpressionCommandOutput) => void,
154
154
  ): void;
155
155
  defineExpression(
156
156
  args: DefineExpressionCommandInput,
157
157
  options: __HttpHandlerOptions,
158
- cb: (err: any, data?: DefineExpressionCommandOutput) => void
158
+ cb: (err: any, data?: DefineExpressionCommandOutput) => void,
159
159
  ): void;
160
160
  defineIndexField(
161
161
  args: DefineIndexFieldCommandInput,
162
- options?: __HttpHandlerOptions
162
+ options?: __HttpHandlerOptions,
163
163
  ): Promise<DefineIndexFieldCommandOutput>;
164
164
  defineIndexField(
165
165
  args: DefineIndexFieldCommandInput,
166
- cb: (err: any, data?: DefineIndexFieldCommandOutput) => void
166
+ cb: (err: any, data?: DefineIndexFieldCommandOutput) => void,
167
167
  ): void;
168
168
  defineIndexField(
169
169
  args: DefineIndexFieldCommandInput,
170
170
  options: __HttpHandlerOptions,
171
- cb: (err: any, data?: DefineIndexFieldCommandOutput) => void
171
+ cb: (err: any, data?: DefineIndexFieldCommandOutput) => void,
172
172
  ): void;
173
173
  defineSuggester(
174
174
  args: DefineSuggesterCommandInput,
175
- options?: __HttpHandlerOptions
175
+ options?: __HttpHandlerOptions,
176
176
  ): Promise<DefineSuggesterCommandOutput>;
177
177
  defineSuggester(
178
178
  args: DefineSuggesterCommandInput,
179
- cb: (err: any, data?: DefineSuggesterCommandOutput) => void
179
+ cb: (err: any, data?: DefineSuggesterCommandOutput) => void,
180
180
  ): void;
181
181
  defineSuggester(
182
182
  args: DefineSuggesterCommandInput,
183
183
  options: __HttpHandlerOptions,
184
- cb: (err: any, data?: DefineSuggesterCommandOutput) => void
184
+ cb: (err: any, data?: DefineSuggesterCommandOutput) => void,
185
185
  ): void;
186
186
  deleteAnalysisScheme(
187
187
  args: DeleteAnalysisSchemeCommandInput,
188
- options?: __HttpHandlerOptions
188
+ options?: __HttpHandlerOptions,
189
189
  ): Promise<DeleteAnalysisSchemeCommandOutput>;
190
190
  deleteAnalysisScheme(
191
191
  args: DeleteAnalysisSchemeCommandInput,
192
- cb: (err: any, data?: DeleteAnalysisSchemeCommandOutput) => void
192
+ cb: (err: any, data?: DeleteAnalysisSchemeCommandOutput) => void,
193
193
  ): void;
194
194
  deleteAnalysisScheme(
195
195
  args: DeleteAnalysisSchemeCommandInput,
196
196
  options: __HttpHandlerOptions,
197
- cb: (err: any, data?: DeleteAnalysisSchemeCommandOutput) => void
197
+ cb: (err: any, data?: DeleteAnalysisSchemeCommandOutput) => void,
198
198
  ): void;
199
199
  deleteDomain(
200
200
  args: DeleteDomainCommandInput,
201
- options?: __HttpHandlerOptions
201
+ options?: __HttpHandlerOptions,
202
202
  ): Promise<DeleteDomainCommandOutput>;
203
203
  deleteDomain(
204
204
  args: DeleteDomainCommandInput,
205
- cb: (err: any, data?: DeleteDomainCommandOutput) => void
205
+ cb: (err: any, data?: DeleteDomainCommandOutput) => void,
206
206
  ): void;
207
207
  deleteDomain(
208
208
  args: DeleteDomainCommandInput,
209
209
  options: __HttpHandlerOptions,
210
- cb: (err: any, data?: DeleteDomainCommandOutput) => void
210
+ cb: (err: any, data?: DeleteDomainCommandOutput) => void,
211
211
  ): void;
212
212
  deleteExpression(
213
213
  args: DeleteExpressionCommandInput,
214
- options?: __HttpHandlerOptions
214
+ options?: __HttpHandlerOptions,
215
215
  ): Promise<DeleteExpressionCommandOutput>;
216
216
  deleteExpression(
217
217
  args: DeleteExpressionCommandInput,
218
- cb: (err: any, data?: DeleteExpressionCommandOutput) => void
218
+ cb: (err: any, data?: DeleteExpressionCommandOutput) => void,
219
219
  ): void;
220
220
  deleteExpression(
221
221
  args: DeleteExpressionCommandInput,
222
222
  options: __HttpHandlerOptions,
223
- cb: (err: any, data?: DeleteExpressionCommandOutput) => void
223
+ cb: (err: any, data?: DeleteExpressionCommandOutput) => void,
224
224
  ): void;
225
225
  deleteIndexField(
226
226
  args: DeleteIndexFieldCommandInput,
227
- options?: __HttpHandlerOptions
227
+ options?: __HttpHandlerOptions,
228
228
  ): Promise<DeleteIndexFieldCommandOutput>;
229
229
  deleteIndexField(
230
230
  args: DeleteIndexFieldCommandInput,
231
- cb: (err: any, data?: DeleteIndexFieldCommandOutput) => void
231
+ cb: (err: any, data?: DeleteIndexFieldCommandOutput) => void,
232
232
  ): void;
233
233
  deleteIndexField(
234
234
  args: DeleteIndexFieldCommandInput,
235
235
  options: __HttpHandlerOptions,
236
- cb: (err: any, data?: DeleteIndexFieldCommandOutput) => void
236
+ cb: (err: any, data?: DeleteIndexFieldCommandOutput) => void,
237
237
  ): void;
238
238
  deleteSuggester(
239
239
  args: DeleteSuggesterCommandInput,
240
- options?: __HttpHandlerOptions
240
+ options?: __HttpHandlerOptions,
241
241
  ): Promise<DeleteSuggesterCommandOutput>;
242
242
  deleteSuggester(
243
243
  args: DeleteSuggesterCommandInput,
244
- cb: (err: any, data?: DeleteSuggesterCommandOutput) => void
244
+ cb: (err: any, data?: DeleteSuggesterCommandOutput) => void,
245
245
  ): void;
246
246
  deleteSuggester(
247
247
  args: DeleteSuggesterCommandInput,
248
248
  options: __HttpHandlerOptions,
249
- cb: (err: any, data?: DeleteSuggesterCommandOutput) => void
249
+ cb: (err: any, data?: DeleteSuggesterCommandOutput) => void,
250
250
  ): void;
251
251
  describeAnalysisSchemes(
252
252
  args: DescribeAnalysisSchemesCommandInput,
253
- options?: __HttpHandlerOptions
253
+ options?: __HttpHandlerOptions,
254
254
  ): Promise<DescribeAnalysisSchemesCommandOutput>;
255
255
  describeAnalysisSchemes(
256
256
  args: DescribeAnalysisSchemesCommandInput,
257
- cb: (err: any, data?: DescribeAnalysisSchemesCommandOutput) => void
257
+ cb: (err: any, data?: DescribeAnalysisSchemesCommandOutput) => void,
258
258
  ): void;
259
259
  describeAnalysisSchemes(
260
260
  args: DescribeAnalysisSchemesCommandInput,
261
261
  options: __HttpHandlerOptions,
262
- cb: (err: any, data?: DescribeAnalysisSchemesCommandOutput) => void
262
+ cb: (err: any, data?: DescribeAnalysisSchemesCommandOutput) => void,
263
263
  ): void;
264
264
  describeAvailabilityOptions(
265
265
  args: DescribeAvailabilityOptionsCommandInput,
266
- options?: __HttpHandlerOptions
266
+ options?: __HttpHandlerOptions,
267
267
  ): Promise<DescribeAvailabilityOptionsCommandOutput>;
268
268
  describeAvailabilityOptions(
269
269
  args: DescribeAvailabilityOptionsCommandInput,
270
- cb: (err: any, data?: DescribeAvailabilityOptionsCommandOutput) => void
270
+ cb: (err: any, data?: DescribeAvailabilityOptionsCommandOutput) => void,
271
271
  ): void;
272
272
  describeAvailabilityOptions(
273
273
  args: DescribeAvailabilityOptionsCommandInput,
274
274
  options: __HttpHandlerOptions,
275
- cb: (err: any, data?: DescribeAvailabilityOptionsCommandOutput) => void
275
+ cb: (err: any, data?: DescribeAvailabilityOptionsCommandOutput) => void,
276
276
  ): void;
277
277
  describeDomainEndpointOptions(
278
278
  args: DescribeDomainEndpointOptionsCommandInput,
279
- options?: __HttpHandlerOptions
279
+ options?: __HttpHandlerOptions,
280
280
  ): Promise<DescribeDomainEndpointOptionsCommandOutput>;
281
281
  describeDomainEndpointOptions(
282
282
  args: DescribeDomainEndpointOptionsCommandInput,
283
- cb: (err: any, data?: DescribeDomainEndpointOptionsCommandOutput) => void
283
+ cb: (err: any, data?: DescribeDomainEndpointOptionsCommandOutput) => void,
284
284
  ): void;
285
285
  describeDomainEndpointOptions(
286
286
  args: DescribeDomainEndpointOptionsCommandInput,
287
287
  options: __HttpHandlerOptions,
288
- cb: (err: any, data?: DescribeDomainEndpointOptionsCommandOutput) => void
288
+ cb: (err: any, data?: DescribeDomainEndpointOptionsCommandOutput) => void,
289
289
  ): void;
290
290
  describeDomains(): Promise<DescribeDomainsCommandOutput>;
291
291
  describeDomains(
292
292
  args: DescribeDomainsCommandInput,
293
- options?: __HttpHandlerOptions
293
+ options?: __HttpHandlerOptions,
294
294
  ): Promise<DescribeDomainsCommandOutput>;
295
295
  describeDomains(
296
296
  args: DescribeDomainsCommandInput,
297
- cb: (err: any, data?: DescribeDomainsCommandOutput) => void
297
+ cb: (err: any, data?: DescribeDomainsCommandOutput) => void,
298
298
  ): void;
299
299
  describeDomains(
300
300
  args: DescribeDomainsCommandInput,
301
301
  options: __HttpHandlerOptions,
302
- cb: (err: any, data?: DescribeDomainsCommandOutput) => void
302
+ cb: (err: any, data?: DescribeDomainsCommandOutput) => void,
303
303
  ): void;
304
304
  describeExpressions(
305
305
  args: DescribeExpressionsCommandInput,
306
- options?: __HttpHandlerOptions
306
+ options?: __HttpHandlerOptions,
307
307
  ): Promise<DescribeExpressionsCommandOutput>;
308
308
  describeExpressions(
309
309
  args: DescribeExpressionsCommandInput,
310
- cb: (err: any, data?: DescribeExpressionsCommandOutput) => void
310
+ cb: (err: any, data?: DescribeExpressionsCommandOutput) => void,
311
311
  ): void;
312
312
  describeExpressions(
313
313
  args: DescribeExpressionsCommandInput,
314
314
  options: __HttpHandlerOptions,
315
- cb: (err: any, data?: DescribeExpressionsCommandOutput) => void
315
+ cb: (err: any, data?: DescribeExpressionsCommandOutput) => void,
316
316
  ): void;
317
317
  describeIndexFields(
318
318
  args: DescribeIndexFieldsCommandInput,
319
- options?: __HttpHandlerOptions
319
+ options?: __HttpHandlerOptions,
320
320
  ): Promise<DescribeIndexFieldsCommandOutput>;
321
321
  describeIndexFields(
322
322
  args: DescribeIndexFieldsCommandInput,
323
- cb: (err: any, data?: DescribeIndexFieldsCommandOutput) => void
323
+ cb: (err: any, data?: DescribeIndexFieldsCommandOutput) => void,
324
324
  ): void;
325
325
  describeIndexFields(
326
326
  args: DescribeIndexFieldsCommandInput,
327
327
  options: __HttpHandlerOptions,
328
- cb: (err: any, data?: DescribeIndexFieldsCommandOutput) => void
328
+ cb: (err: any, data?: DescribeIndexFieldsCommandOutput) => void,
329
329
  ): void;
330
330
  describeScalingParameters(
331
331
  args: DescribeScalingParametersCommandInput,
332
- options?: __HttpHandlerOptions
332
+ options?: __HttpHandlerOptions,
333
333
  ): Promise<DescribeScalingParametersCommandOutput>;
334
334
  describeScalingParameters(
335
335
  args: DescribeScalingParametersCommandInput,
336
- cb: (err: any, data?: DescribeScalingParametersCommandOutput) => void
336
+ cb: (err: any, data?: DescribeScalingParametersCommandOutput) => void,
337
337
  ): void;
338
338
  describeScalingParameters(
339
339
  args: DescribeScalingParametersCommandInput,
340
340
  options: __HttpHandlerOptions,
341
- cb: (err: any, data?: DescribeScalingParametersCommandOutput) => void
341
+ cb: (err: any, data?: DescribeScalingParametersCommandOutput) => void,
342
342
  ): void;
343
343
  describeServiceAccessPolicies(
344
344
  args: DescribeServiceAccessPoliciesCommandInput,
345
- options?: __HttpHandlerOptions
345
+ options?: __HttpHandlerOptions,
346
346
  ): Promise<DescribeServiceAccessPoliciesCommandOutput>;
347
347
  describeServiceAccessPolicies(
348
348
  args: DescribeServiceAccessPoliciesCommandInput,
349
- cb: (err: any, data?: DescribeServiceAccessPoliciesCommandOutput) => void
349
+ cb: (err: any, data?: DescribeServiceAccessPoliciesCommandOutput) => void,
350
350
  ): void;
351
351
  describeServiceAccessPolicies(
352
352
  args: DescribeServiceAccessPoliciesCommandInput,
353
353
  options: __HttpHandlerOptions,
354
- cb: (err: any, data?: DescribeServiceAccessPoliciesCommandOutput) => void
354
+ cb: (err: any, data?: DescribeServiceAccessPoliciesCommandOutput) => void,
355
355
  ): void;
356
356
  describeSuggesters(
357
357
  args: DescribeSuggestersCommandInput,
358
- options?: __HttpHandlerOptions
358
+ options?: __HttpHandlerOptions,
359
359
  ): Promise<DescribeSuggestersCommandOutput>;
360
360
  describeSuggesters(
361
361
  args: DescribeSuggestersCommandInput,
362
- cb: (err: any, data?: DescribeSuggestersCommandOutput) => void
362
+ cb: (err: any, data?: DescribeSuggestersCommandOutput) => void,
363
363
  ): void;
364
364
  describeSuggesters(
365
365
  args: DescribeSuggestersCommandInput,
366
366
  options: __HttpHandlerOptions,
367
- cb: (err: any, data?: DescribeSuggestersCommandOutput) => void
367
+ cb: (err: any, data?: DescribeSuggestersCommandOutput) => void,
368
368
  ): void;
369
369
  indexDocuments(
370
370
  args: IndexDocumentsCommandInput,
371
- options?: __HttpHandlerOptions
371
+ options?: __HttpHandlerOptions,
372
372
  ): Promise<IndexDocumentsCommandOutput>;
373
373
  indexDocuments(
374
374
  args: IndexDocumentsCommandInput,
375
- cb: (err: any, data?: IndexDocumentsCommandOutput) => void
375
+ cb: (err: any, data?: IndexDocumentsCommandOutput) => void,
376
376
  ): void;
377
377
  indexDocuments(
378
378
  args: IndexDocumentsCommandInput,
379
379
  options: __HttpHandlerOptions,
380
- cb: (err: any, data?: IndexDocumentsCommandOutput) => void
380
+ cb: (err: any, data?: IndexDocumentsCommandOutput) => void,
381
381
  ): void;
382
382
  listDomainNames(): Promise<ListDomainNamesCommandOutput>;
383
383
  listDomainNames(
384
384
  args: ListDomainNamesCommandInput,
385
- options?: __HttpHandlerOptions
385
+ options?: __HttpHandlerOptions,
386
386
  ): Promise<ListDomainNamesCommandOutput>;
387
387
  listDomainNames(
388
388
  args: ListDomainNamesCommandInput,
389
- cb: (err: any, data?: ListDomainNamesCommandOutput) => void
389
+ cb: (err: any, data?: ListDomainNamesCommandOutput) => void,
390
390
  ): void;
391
391
  listDomainNames(
392
392
  args: ListDomainNamesCommandInput,
393
393
  options: __HttpHandlerOptions,
394
- cb: (err: any, data?: ListDomainNamesCommandOutput) => void
394
+ cb: (err: any, data?: ListDomainNamesCommandOutput) => void,
395
395
  ): void;
396
396
  updateAvailabilityOptions(
397
397
  args: UpdateAvailabilityOptionsCommandInput,
398
- options?: __HttpHandlerOptions
398
+ options?: __HttpHandlerOptions,
399
399
  ): Promise<UpdateAvailabilityOptionsCommandOutput>;
400
400
  updateAvailabilityOptions(
401
401
  args: UpdateAvailabilityOptionsCommandInput,
402
- cb: (err: any, data?: UpdateAvailabilityOptionsCommandOutput) => void
402
+ cb: (err: any, data?: UpdateAvailabilityOptionsCommandOutput) => void,
403
403
  ): void;
404
404
  updateAvailabilityOptions(
405
405
  args: UpdateAvailabilityOptionsCommandInput,
406
406
  options: __HttpHandlerOptions,
407
- cb: (err: any, data?: UpdateAvailabilityOptionsCommandOutput) => void
407
+ cb: (err: any, data?: UpdateAvailabilityOptionsCommandOutput) => void,
408
408
  ): void;
409
409
  updateDomainEndpointOptions(
410
410
  args: UpdateDomainEndpointOptionsCommandInput,
411
- options?: __HttpHandlerOptions
411
+ options?: __HttpHandlerOptions,
412
412
  ): Promise<UpdateDomainEndpointOptionsCommandOutput>;
413
413
  updateDomainEndpointOptions(
414
414
  args: UpdateDomainEndpointOptionsCommandInput,
415
- cb: (err: any, data?: UpdateDomainEndpointOptionsCommandOutput) => void
415
+ cb: (err: any, data?: UpdateDomainEndpointOptionsCommandOutput) => void,
416
416
  ): void;
417
417
  updateDomainEndpointOptions(
418
418
  args: UpdateDomainEndpointOptionsCommandInput,
419
419
  options: __HttpHandlerOptions,
420
- cb: (err: any, data?: UpdateDomainEndpointOptionsCommandOutput) => void
420
+ cb: (err: any, data?: UpdateDomainEndpointOptionsCommandOutput) => void,
421
421
  ): void;
422
422
  updateScalingParameters(
423
423
  args: UpdateScalingParametersCommandInput,
424
- options?: __HttpHandlerOptions
424
+ options?: __HttpHandlerOptions,
425
425
  ): Promise<UpdateScalingParametersCommandOutput>;
426
426
  updateScalingParameters(
427
427
  args: UpdateScalingParametersCommandInput,
428
- cb: (err: any, data?: UpdateScalingParametersCommandOutput) => void
428
+ cb: (err: any, data?: UpdateScalingParametersCommandOutput) => void,
429
429
  ): void;
430
430
  updateScalingParameters(
431
431
  args: UpdateScalingParametersCommandInput,
432
432
  options: __HttpHandlerOptions,
433
- cb: (err: any, data?: UpdateScalingParametersCommandOutput) => void
433
+ cb: (err: any, data?: UpdateScalingParametersCommandOutput) => void,
434
434
  ): void;
435
435
  updateServiceAccessPolicies(
436
436
  args: UpdateServiceAccessPoliciesCommandInput,
437
- options?: __HttpHandlerOptions
437
+ options?: __HttpHandlerOptions,
438
438
  ): Promise<UpdateServiceAccessPoliciesCommandOutput>;
439
439
  updateServiceAccessPolicies(
440
440
  args: UpdateServiceAccessPoliciesCommandInput,
441
- cb: (err: any, data?: UpdateServiceAccessPoliciesCommandOutput) => void
441
+ cb: (err: any, data?: UpdateServiceAccessPoliciesCommandOutput) => void,
442
442
  ): void;
443
443
  updateServiceAccessPolicies(
444
444
  args: UpdateServiceAccessPoliciesCommandInput,
445
445
  options: __HttpHandlerOptions,
446
- cb: (err: any, data?: UpdateServiceAccessPoliciesCommandOutput) => void
446
+ cb: (err: any, data?: UpdateServiceAccessPoliciesCommandOutput) => void,
447
447
  ): void;
448
448
  }
449
- export declare class CloudSearch
450
- extends CloudSearchClient
451
- implements CloudSearch {}
449
+ export declare class CloudSearch extends CloudSearchClient implements CloudSearch {}
@@ -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 {
@@ -201,8 +198,7 @@ export type ServiceOutputTypes =
201
198
  | UpdateDomainEndpointOptionsCommandOutput
202
199
  | UpdateScalingParametersCommandOutput
203
200
  | UpdateServiceAccessPoliciesCommandOutput;
204
- export interface ClientDefaults
205
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
201
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
206
202
  requestHandler?: __HttpHandlerUserInput;
207
203
  sha256?: __ChecksumConstructor | __HashConstructor;
208
204
  urlParser?: __UrlParser;
@@ -227,9 +223,7 @@ export interface ClientDefaults
227
223
  extensions?: RuntimeExtension[];
228
224
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
229
225
  }
230
- export type CloudSearchClientConfigType = Partial<
231
- __SmithyConfiguration<__HttpHandlerOptions>
232
- > &
226
+ export type CloudSearchClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
233
227
  ClientDefaults &
234
228
  UserAgentInputConfig &
235
229
  RetryInputConfig &
@@ -250,8 +244,7 @@ export type CloudSearchClientResolvedConfigType =
250
244
  EndpointResolvedConfig<EndpointParameters> &
251
245
  HttpAuthSchemeResolvedConfig &
252
246
  ClientResolvedEndpointParameters;
253
- export interface CloudSearchClientResolvedConfig
254
- extends CloudSearchClientResolvedConfigType {}
247
+ export interface CloudSearchClientResolvedConfig extends CloudSearchClientResolvedConfigType {}
255
248
  export declare class CloudSearchClient extends __Client<
256
249
  __HttpHandlerOptions,
257
250
  ServiceInputTypes,
@@ -259,8 +252,6 @@ export declare class CloudSearchClient extends __Client<
259
252
  CloudSearchClientResolvedConfig
260
253
  > {
261
254
  readonly config: CloudSearchClientResolvedConfig;
262
- constructor(
263
- ...[configuration]: __CheckOptionalClientConfig<CloudSearchClientConfig>
264
- );
255
+ constructor(...[configuration]: __CheckOptionalClientConfig<CloudSearchClientConfig>);
265
256
  destroy(): void;
266
257
  }
@@ -7,17 +7,10 @@ import { CloudSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: CloudSearchHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: CloudSearchHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): CloudSearchHttpAuthSchemeProvider;
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 { CloudSearchClientResolvedConfig } from "../CloudSearchClient";
15
- export interface CloudSearchHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface CloudSearchHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface CloudSearchHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- CloudSearchClientResolvedConfig,
22
- HandlerExecutionContext,
23
- CloudSearchHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface CloudSearchHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ CloudSearchClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ CloudSearchHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultCloudSearchHttpAuthSchemeParametersProvider: (
27
25
  config: CloudSearchClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<CloudSearchHttpAuthSchemeParameters>;
31
- export interface CloudSearchHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<CloudSearchHttpAuthSchemeParameters> {}
29
+ export interface CloudSearchHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CloudSearchHttpAuthSchemeParameters> {}
33
30
  export declare const defaultCloudSearchHttpAuthSchemeProvider: CloudSearchHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: CloudSearchHttpAuthSchemeProvider;
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: CloudSearchHttpAuthSchemeProvider;
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 "./CloudSearchClient";
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
  CloudSearchClientResolvedConfig,
@@ -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,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- BuildSuggestersRequest,
4
- BuildSuggestersResponse,
5
- } from "../models/models_0";
2
+ import { BuildSuggestersRequest, BuildSuggestersResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface BuildSuggestersCommandInput extends BuildSuggestersRequest {}
8
- export interface BuildSuggestersCommandOutput
9
- extends BuildSuggestersResponse,
10
- __MetadataBearer {}
5
+ export interface BuildSuggestersCommandOutput extends BuildSuggestersResponse, __MetadataBearer {}
11
6
  declare const BuildSuggestersCommand_base: {
12
7
  new (
13
- input: BuildSuggestersCommandInput
8
+ input: BuildSuggestersCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  BuildSuggestersCommandInput,
16
11
  BuildSuggestersCommandOutput,
@@ -19,7 +14,7 @@ declare const BuildSuggestersCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: BuildSuggestersCommandInput
17
+ input: BuildSuggestersCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  BuildSuggestersCommandInput,
25
20
  BuildSuggestersCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateDomainCommandInput extends CreateDomainRequest {}
5
- export interface CreateDomainCommandOutput
6
- extends CreateDomainResponse,
7
- __MetadataBearer {}
5
+ export interface CreateDomainCommandOutput extends CreateDomainResponse, __MetadataBearer {}
8
6
  declare const CreateDomainCommand_base: {
9
7
  new (
10
- input: CreateDomainCommandInput
8
+ input: CreateDomainCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  CreateDomainCommandInput,
13
11
  CreateDomainCommandOutput,
@@ -16,7 +14,7 @@ declare const CreateDomainCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: CreateDomainCommandInput
17
+ input: CreateDomainCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  CreateDomainCommandInput,
22
20
  CreateDomainCommandOutput,