@aws-sdk/client-service-catalog-appregistry 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 (43) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +78 -87
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +6 -17
  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/AssociateAttributeGroupCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +4 -6
  14. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +2 -4
  19. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
  20. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +4 -6
  21. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  25. package/dist-types/ts3.4/commands/PutConfigurationCommand.d.ts +2 -2
  26. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  29. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
  30. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +5 -10
  31. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  32. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  33. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  34. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  35. package/dist-types/ts3.4/models/errors.d.ts +5 -15
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
  41. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  43. 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
 
@@ -83,10 +83,7 @@ import {
83
83
  SyncResourceCommandInput,
84
84
  SyncResourceCommandOutput,
85
85
  } from "./commands/SyncResourceCommand";
86
- import {
87
- TagResourceCommandInput,
88
- TagResourceCommandOutput,
89
- } from "./commands/TagResourceCommand";
86
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
90
87
  import {
91
88
  UntagResourceCommandInput,
92
89
  UntagResourceCommandOutput,
@@ -103,359 +100,353 @@ import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClie
103
100
  export interface ServiceCatalogAppRegistry {
104
101
  associateAttributeGroup(
105
102
  args: AssociateAttributeGroupCommandInput,
106
- options?: __HttpHandlerOptions
103
+ options?: __HttpHandlerOptions,
107
104
  ): Promise<AssociateAttributeGroupCommandOutput>;
108
105
  associateAttributeGroup(
109
106
  args: AssociateAttributeGroupCommandInput,
110
- cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
107
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void,
111
108
  ): void;
112
109
  associateAttributeGroup(
113
110
  args: AssociateAttributeGroupCommandInput,
114
111
  options: __HttpHandlerOptions,
115
- cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
112
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void,
116
113
  ): void;
117
114
  associateResource(
118
115
  args: AssociateResourceCommandInput,
119
- options?: __HttpHandlerOptions
116
+ options?: __HttpHandlerOptions,
120
117
  ): Promise<AssociateResourceCommandOutput>;
121
118
  associateResource(
122
119
  args: AssociateResourceCommandInput,
123
- cb: (err: any, data?: AssociateResourceCommandOutput) => void
120
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void,
124
121
  ): void;
125
122
  associateResource(
126
123
  args: AssociateResourceCommandInput,
127
124
  options: __HttpHandlerOptions,
128
- cb: (err: any, data?: AssociateResourceCommandOutput) => void
125
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void,
129
126
  ): void;
130
127
  createApplication(
131
128
  args: CreateApplicationCommandInput,
132
- options?: __HttpHandlerOptions
129
+ options?: __HttpHandlerOptions,
133
130
  ): Promise<CreateApplicationCommandOutput>;
134
131
  createApplication(
135
132
  args: CreateApplicationCommandInput,
136
- cb: (err: any, data?: CreateApplicationCommandOutput) => void
133
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void,
137
134
  ): void;
138
135
  createApplication(
139
136
  args: CreateApplicationCommandInput,
140
137
  options: __HttpHandlerOptions,
141
- cb: (err: any, data?: CreateApplicationCommandOutput) => void
138
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void,
142
139
  ): void;
143
140
  createAttributeGroup(
144
141
  args: CreateAttributeGroupCommandInput,
145
- options?: __HttpHandlerOptions
142
+ options?: __HttpHandlerOptions,
146
143
  ): Promise<CreateAttributeGroupCommandOutput>;
147
144
  createAttributeGroup(
148
145
  args: CreateAttributeGroupCommandInput,
149
- cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
146
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void,
150
147
  ): void;
151
148
  createAttributeGroup(
152
149
  args: CreateAttributeGroupCommandInput,
153
150
  options: __HttpHandlerOptions,
154
- cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
151
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void,
155
152
  ): void;
156
153
  deleteApplication(
157
154
  args: DeleteApplicationCommandInput,
158
- options?: __HttpHandlerOptions
155
+ options?: __HttpHandlerOptions,
159
156
  ): Promise<DeleteApplicationCommandOutput>;
160
157
  deleteApplication(
161
158
  args: DeleteApplicationCommandInput,
162
- cb: (err: any, data?: DeleteApplicationCommandOutput) => void
159
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
163
160
  ): void;
164
161
  deleteApplication(
165
162
  args: DeleteApplicationCommandInput,
166
163
  options: __HttpHandlerOptions,
167
- cb: (err: any, data?: DeleteApplicationCommandOutput) => void
164
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
168
165
  ): void;
169
166
  deleteAttributeGroup(
170
167
  args: DeleteAttributeGroupCommandInput,
171
- options?: __HttpHandlerOptions
168
+ options?: __HttpHandlerOptions,
172
169
  ): Promise<DeleteAttributeGroupCommandOutput>;
173
170
  deleteAttributeGroup(
174
171
  args: DeleteAttributeGroupCommandInput,
175
- cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
172
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void,
176
173
  ): void;
177
174
  deleteAttributeGroup(
178
175
  args: DeleteAttributeGroupCommandInput,
179
176
  options: __HttpHandlerOptions,
180
- cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
177
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void,
181
178
  ): void;
182
179
  disassociateAttributeGroup(
183
180
  args: DisassociateAttributeGroupCommandInput,
184
- options?: __HttpHandlerOptions
181
+ options?: __HttpHandlerOptions,
185
182
  ): Promise<DisassociateAttributeGroupCommandOutput>;
186
183
  disassociateAttributeGroup(
187
184
  args: DisassociateAttributeGroupCommandInput,
188
- cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
185
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void,
189
186
  ): void;
190
187
  disassociateAttributeGroup(
191
188
  args: DisassociateAttributeGroupCommandInput,
192
189
  options: __HttpHandlerOptions,
193
- cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
190
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void,
194
191
  ): void;
195
192
  disassociateResource(
196
193
  args: DisassociateResourceCommandInput,
197
- options?: __HttpHandlerOptions
194
+ options?: __HttpHandlerOptions,
198
195
  ): Promise<DisassociateResourceCommandOutput>;
199
196
  disassociateResource(
200
197
  args: DisassociateResourceCommandInput,
201
- cb: (err: any, data?: DisassociateResourceCommandOutput) => void
198
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void,
202
199
  ): void;
203
200
  disassociateResource(
204
201
  args: DisassociateResourceCommandInput,
205
202
  options: __HttpHandlerOptions,
206
- cb: (err: any, data?: DisassociateResourceCommandOutput) => void
203
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void,
207
204
  ): void;
208
205
  getApplication(
209
206
  args: GetApplicationCommandInput,
210
- options?: __HttpHandlerOptions
207
+ options?: __HttpHandlerOptions,
211
208
  ): Promise<GetApplicationCommandOutput>;
212
209
  getApplication(
213
210
  args: GetApplicationCommandInput,
214
- cb: (err: any, data?: GetApplicationCommandOutput) => void
211
+ cb: (err: any, data?: GetApplicationCommandOutput) => void,
215
212
  ): void;
216
213
  getApplication(
217
214
  args: GetApplicationCommandInput,
218
215
  options: __HttpHandlerOptions,
219
- cb: (err: any, data?: GetApplicationCommandOutput) => void
216
+ cb: (err: any, data?: GetApplicationCommandOutput) => void,
220
217
  ): void;
221
218
  getAssociatedResource(
222
219
  args: GetAssociatedResourceCommandInput,
223
- options?: __HttpHandlerOptions
220
+ options?: __HttpHandlerOptions,
224
221
  ): Promise<GetAssociatedResourceCommandOutput>;
225
222
  getAssociatedResource(
226
223
  args: GetAssociatedResourceCommandInput,
227
- cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
224
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void,
228
225
  ): void;
229
226
  getAssociatedResource(
230
227
  args: GetAssociatedResourceCommandInput,
231
228
  options: __HttpHandlerOptions,
232
- cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
229
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void,
233
230
  ): void;
234
231
  getAttributeGroup(
235
232
  args: GetAttributeGroupCommandInput,
236
- options?: __HttpHandlerOptions
233
+ options?: __HttpHandlerOptions,
237
234
  ): Promise<GetAttributeGroupCommandOutput>;
238
235
  getAttributeGroup(
239
236
  args: GetAttributeGroupCommandInput,
240
- cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
237
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void,
241
238
  ): void;
242
239
  getAttributeGroup(
243
240
  args: GetAttributeGroupCommandInput,
244
241
  options: __HttpHandlerOptions,
245
- cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
242
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void,
246
243
  ): void;
247
244
  getConfiguration(): Promise<GetConfigurationCommandOutput>;
248
245
  getConfiguration(
249
246
  args: GetConfigurationCommandInput,
250
- options?: __HttpHandlerOptions
247
+ options?: __HttpHandlerOptions,
251
248
  ): Promise<GetConfigurationCommandOutput>;
252
249
  getConfiguration(
253
250
  args: GetConfigurationCommandInput,
254
- cb: (err: any, data?: GetConfigurationCommandOutput) => void
251
+ cb: (err: any, data?: GetConfigurationCommandOutput) => void,
255
252
  ): void;
256
253
  getConfiguration(
257
254
  args: GetConfigurationCommandInput,
258
255
  options: __HttpHandlerOptions,
259
- cb: (err: any, data?: GetConfigurationCommandOutput) => void
256
+ cb: (err: any, data?: GetConfigurationCommandOutput) => void,
260
257
  ): void;
261
258
  listApplications(): Promise<ListApplicationsCommandOutput>;
262
259
  listApplications(
263
260
  args: ListApplicationsCommandInput,
264
- options?: __HttpHandlerOptions
261
+ options?: __HttpHandlerOptions,
265
262
  ): Promise<ListApplicationsCommandOutput>;
266
263
  listApplications(
267
264
  args: ListApplicationsCommandInput,
268
- cb: (err: any, data?: ListApplicationsCommandOutput) => void
265
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void,
269
266
  ): void;
270
267
  listApplications(
271
268
  args: ListApplicationsCommandInput,
272
269
  options: __HttpHandlerOptions,
273
- cb: (err: any, data?: ListApplicationsCommandOutput) => void
270
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void,
274
271
  ): void;
275
272
  listAssociatedAttributeGroups(
276
273
  args: ListAssociatedAttributeGroupsCommandInput,
277
- options?: __HttpHandlerOptions
274
+ options?: __HttpHandlerOptions,
278
275
  ): Promise<ListAssociatedAttributeGroupsCommandOutput>;
279
276
  listAssociatedAttributeGroups(
280
277
  args: ListAssociatedAttributeGroupsCommandInput,
281
- cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
278
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void,
282
279
  ): void;
283
280
  listAssociatedAttributeGroups(
284
281
  args: ListAssociatedAttributeGroupsCommandInput,
285
282
  options: __HttpHandlerOptions,
286
- cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
283
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void,
287
284
  ): void;
288
285
  listAssociatedResources(
289
286
  args: ListAssociatedResourcesCommandInput,
290
- options?: __HttpHandlerOptions
287
+ options?: __HttpHandlerOptions,
291
288
  ): Promise<ListAssociatedResourcesCommandOutput>;
292
289
  listAssociatedResources(
293
290
  args: ListAssociatedResourcesCommandInput,
294
- cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
291
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void,
295
292
  ): void;
296
293
  listAssociatedResources(
297
294
  args: ListAssociatedResourcesCommandInput,
298
295
  options: __HttpHandlerOptions,
299
- cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
296
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void,
300
297
  ): void;
301
298
  listAttributeGroups(): Promise<ListAttributeGroupsCommandOutput>;
302
299
  listAttributeGroups(
303
300
  args: ListAttributeGroupsCommandInput,
304
- options?: __HttpHandlerOptions
301
+ options?: __HttpHandlerOptions,
305
302
  ): Promise<ListAttributeGroupsCommandOutput>;
306
303
  listAttributeGroups(
307
304
  args: ListAttributeGroupsCommandInput,
308
- cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
305
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void,
309
306
  ): void;
310
307
  listAttributeGroups(
311
308
  args: ListAttributeGroupsCommandInput,
312
309
  options: __HttpHandlerOptions,
313
- cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
310
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void,
314
311
  ): void;
315
312
  listAttributeGroupsForApplication(
316
313
  args: ListAttributeGroupsForApplicationCommandInput,
317
- options?: __HttpHandlerOptions
314
+ options?: __HttpHandlerOptions,
318
315
  ): Promise<ListAttributeGroupsForApplicationCommandOutput>;
319
316
  listAttributeGroupsForApplication(
320
317
  args: ListAttributeGroupsForApplicationCommandInput,
321
- cb: (
322
- err: any,
323
- data?: ListAttributeGroupsForApplicationCommandOutput
324
- ) => void
318
+ cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void,
325
319
  ): void;
326
320
  listAttributeGroupsForApplication(
327
321
  args: ListAttributeGroupsForApplicationCommandInput,
328
322
  options: __HttpHandlerOptions,
329
- cb: (
330
- err: any,
331
- data?: ListAttributeGroupsForApplicationCommandOutput
332
- ) => void
323
+ cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void,
333
324
  ): void;
334
325
  listTagsForResource(
335
326
  args: ListTagsForResourceCommandInput,
336
- options?: __HttpHandlerOptions
327
+ options?: __HttpHandlerOptions,
337
328
  ): Promise<ListTagsForResourceCommandOutput>;
338
329
  listTagsForResource(
339
330
  args: ListTagsForResourceCommandInput,
340
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
331
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
341
332
  ): void;
342
333
  listTagsForResource(
343
334
  args: ListTagsForResourceCommandInput,
344
335
  options: __HttpHandlerOptions,
345
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
336
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
346
337
  ): void;
347
338
  putConfiguration(
348
339
  args: PutConfigurationCommandInput,
349
- options?: __HttpHandlerOptions
340
+ options?: __HttpHandlerOptions,
350
341
  ): Promise<PutConfigurationCommandOutput>;
351
342
  putConfiguration(
352
343
  args: PutConfigurationCommandInput,
353
- cb: (err: any, data?: PutConfigurationCommandOutput) => void
344
+ cb: (err: any, data?: PutConfigurationCommandOutput) => void,
354
345
  ): void;
355
346
  putConfiguration(
356
347
  args: PutConfigurationCommandInput,
357
348
  options: __HttpHandlerOptions,
358
- cb: (err: any, data?: PutConfigurationCommandOutput) => void
349
+ cb: (err: any, data?: PutConfigurationCommandOutput) => void,
359
350
  ): void;
360
351
  syncResource(
361
352
  args: SyncResourceCommandInput,
362
- options?: __HttpHandlerOptions
353
+ options?: __HttpHandlerOptions,
363
354
  ): Promise<SyncResourceCommandOutput>;
364
355
  syncResource(
365
356
  args: SyncResourceCommandInput,
366
- cb: (err: any, data?: SyncResourceCommandOutput) => void
357
+ cb: (err: any, data?: SyncResourceCommandOutput) => void,
367
358
  ): void;
368
359
  syncResource(
369
360
  args: SyncResourceCommandInput,
370
361
  options: __HttpHandlerOptions,
371
- cb: (err: any, data?: SyncResourceCommandOutput) => void
362
+ cb: (err: any, data?: SyncResourceCommandOutput) => void,
372
363
  ): void;
373
364
  tagResource(
374
365
  args: TagResourceCommandInput,
375
- options?: __HttpHandlerOptions
366
+ options?: __HttpHandlerOptions,
376
367
  ): Promise<TagResourceCommandOutput>;
377
368
  tagResource(
378
369
  args: TagResourceCommandInput,
379
- cb: (err: any, data?: TagResourceCommandOutput) => void
370
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
380
371
  ): void;
381
372
  tagResource(
382
373
  args: TagResourceCommandInput,
383
374
  options: __HttpHandlerOptions,
384
- cb: (err: any, data?: TagResourceCommandOutput) => void
375
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
385
376
  ): void;
386
377
  untagResource(
387
378
  args: UntagResourceCommandInput,
388
- options?: __HttpHandlerOptions
379
+ options?: __HttpHandlerOptions,
389
380
  ): Promise<UntagResourceCommandOutput>;
390
381
  untagResource(
391
382
  args: UntagResourceCommandInput,
392
- cb: (err: any, data?: UntagResourceCommandOutput) => void
383
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
393
384
  ): void;
394
385
  untagResource(
395
386
  args: UntagResourceCommandInput,
396
387
  options: __HttpHandlerOptions,
397
- cb: (err: any, data?: UntagResourceCommandOutput) => void
388
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
398
389
  ): void;
399
390
  updateApplication(
400
391
  args: UpdateApplicationCommandInput,
401
- options?: __HttpHandlerOptions
392
+ options?: __HttpHandlerOptions,
402
393
  ): Promise<UpdateApplicationCommandOutput>;
403
394
  updateApplication(
404
395
  args: UpdateApplicationCommandInput,
405
- cb: (err: any, data?: UpdateApplicationCommandOutput) => void
396
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
406
397
  ): void;
407
398
  updateApplication(
408
399
  args: UpdateApplicationCommandInput,
409
400
  options: __HttpHandlerOptions,
410
- cb: (err: any, data?: UpdateApplicationCommandOutput) => void
401
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
411
402
  ): void;
412
403
  updateAttributeGroup(
413
404
  args: UpdateAttributeGroupCommandInput,
414
- options?: __HttpHandlerOptions
405
+ options?: __HttpHandlerOptions,
415
406
  ): Promise<UpdateAttributeGroupCommandOutput>;
416
407
  updateAttributeGroup(
417
408
  args: UpdateAttributeGroupCommandInput,
418
- cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
409
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void,
419
410
  ): void;
420
411
  updateAttributeGroup(
421
412
  args: UpdateAttributeGroupCommandInput,
422
413
  options: __HttpHandlerOptions,
423
- cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
414
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void,
424
415
  ): void;
425
416
  paginateListApplications(
426
417
  args?: ListApplicationsCommandInput,
427
418
  paginationConfig?: Pick<
428
419
  PaginationConfiguration,
429
420
  Exclude<keyof PaginationConfiguration, "client">
430
- >
421
+ >,
431
422
  ): Paginator<ListApplicationsCommandOutput>;
432
423
  paginateListAssociatedAttributeGroups(
433
424
  args: ListAssociatedAttributeGroupsCommandInput,
434
425
  paginationConfig?: Pick<
435
426
  PaginationConfiguration,
436
427
  Exclude<keyof PaginationConfiguration, "client">
437
- >
428
+ >,
438
429
  ): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
439
430
  paginateListAssociatedResources(
440
431
  args: ListAssociatedResourcesCommandInput,
441
432
  paginationConfig?: Pick<
442
433
  PaginationConfiguration,
443
434
  Exclude<keyof PaginationConfiguration, "client">
444
- >
435
+ >,
445
436
  ): Paginator<ListAssociatedResourcesCommandOutput>;
446
437
  paginateListAttributeGroups(
447
438
  args?: ListAttributeGroupsCommandInput,
448
439
  paginationConfig?: Pick<
449
440
  PaginationConfiguration,
450
441
  Exclude<keyof PaginationConfiguration, "client">
451
- >
442
+ >,
452
443
  ): Paginator<ListAttributeGroupsCommandOutput>;
453
444
  paginateListAttributeGroupsForApplication(
454
445
  args: ListAttributeGroupsForApplicationCommandInput,
455
446
  paginationConfig?: Pick<
456
447
  PaginationConfiguration,
457
448
  Exclude<keyof PaginationConfiguration, "client">
458
- >
449
+ >,
459
450
  ): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
460
451
  }
461
452
  export declare class ServiceCatalogAppRegistry
@@ -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 {
@@ -116,10 +113,7 @@ import {
116
113
  SyncResourceCommandInput,
117
114
  SyncResourceCommandOutput,
118
115
  } from "./commands/SyncResourceCommand";
119
- import {
120
- TagResourceCommandInput,
121
- TagResourceCommandOutput,
122
- } from "./commands/TagResourceCommand";
116
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
123
117
  import {
124
118
  UntagResourceCommandInput,
125
119
  UntagResourceCommandOutput,
@@ -189,8 +183,7 @@ export type ServiceOutputTypes =
189
183
  | UntagResourceCommandOutput
190
184
  | UpdateApplicationCommandOutput
191
185
  | UpdateAttributeGroupCommandOutput;
192
- export interface ClientDefaults
193
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
186
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
194
187
  requestHandler?: __HttpHandlerUserInput;
195
188
  sha256?: __ChecksumConstructor | __HashConstructor;
196
189
  urlParser?: __UrlParser;
@@ -226,8 +219,7 @@ export type ServiceCatalogAppRegistryClientConfigType = Partial<
226
219
  EndpointInputConfig<EndpointParameters> &
227
220
  HttpAuthSchemeInputConfig &
228
221
  ClientInputEndpointParameters;
229
- export interface ServiceCatalogAppRegistryClientConfig
230
- extends ServiceCatalogAppRegistryClientConfigType {}
222
+ export interface ServiceCatalogAppRegistryClientConfig extends ServiceCatalogAppRegistryClientConfigType {}
231
223
  export type ServiceCatalogAppRegistryClientResolvedConfigType =
232
224
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
233
225
  Required<ClientDefaults> &
@@ -239,8 +231,7 @@ export type ServiceCatalogAppRegistryClientResolvedConfigType =
239
231
  EndpointResolvedConfig<EndpointParameters> &
240
232
  HttpAuthSchemeResolvedConfig &
241
233
  ClientResolvedEndpointParameters;
242
- export interface ServiceCatalogAppRegistryClientResolvedConfig
243
- extends ServiceCatalogAppRegistryClientResolvedConfigType {}
234
+ export interface ServiceCatalogAppRegistryClientResolvedConfig extends ServiceCatalogAppRegistryClientResolvedConfigType {}
244
235
  export declare class ServiceCatalogAppRegistryClient extends __Client<
245
236
  __HttpHandlerOptions,
246
237
  ServiceInputTypes,
@@ -249,9 +240,7 @@ export declare class ServiceCatalogAppRegistryClient extends __Client<
249
240
  > {
250
241
  readonly config: ServiceCatalogAppRegistryClientResolvedConfig;
251
242
  constructor(
252
- ...[
253
- configuration,
254
- ]: __CheckOptionalClientConfig<ServiceCatalogAppRegistryClientConfig>
243
+ ...[configuration]: __CheckOptionalClientConfig<ServiceCatalogAppRegistryClientConfig>
255
244
  );
256
245
  destroy(): void;
257
246
  }
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
10
  setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: ServiceCatalogAppRegistryHttpAuthSchemeProvider
11
+ httpAuthSchemeProvider: ServiceCatalogAppRegistryHttpAuthSchemeProvider,
12
12
  ): void;
13
13
  httpAuthSchemeProvider(): ServiceCatalogAppRegistryHttpAuthSchemeProvider;
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 { ServiceCatalogAppRegistryClientResolvedConfig } from "../ServiceCatalogAppRegistryClient";
15
- export interface ServiceCatalogAppRegistryHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface ServiceCatalogAppRegistryHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface ServiceCatalogAppRegistryHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- ServiceCatalogAppRegistryClientResolvedConfig,
22
- HandlerExecutionContext,
23
- ServiceCatalogAppRegistryHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface ServiceCatalogAppRegistryHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ ServiceCatalogAppRegistryClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ ServiceCatalogAppRegistryHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultServiceCatalogAppRegistryHttpAuthSchemeParametersProvider: (
27
25
  config: ServiceCatalogAppRegistryClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<ServiceCatalogAppRegistryHttpAuthSchemeParameters>;
31
- export interface ServiceCatalogAppRegistryHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<ServiceCatalogAppRegistryHttpAuthSchemeParameters> {}
29
+ export interface ServiceCatalogAppRegistryHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ServiceCatalogAppRegistryHttpAuthSchemeParameters> {}
33
30
  export declare const defaultServiceCatalogAppRegistryHttpAuthSchemeProvider: ServiceCatalogAppRegistryHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: ServiceCatalogAppRegistryHttpAuthSchemeProvider;
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: ServiceCatalogAppRegistryHttpAuthSchemeProvider;
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 "./ServiceCatalogAppRegistryClient";
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
  ServiceCatalogAppRegistryClientResolvedConfig,
@@ -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[];
@@ -4,14 +4,12 @@ import {
4
4
  AssociateAttributeGroupResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface AssociateAttributeGroupCommandInput
8
- extends AssociateAttributeGroupRequest {}
7
+ export interface AssociateAttributeGroupCommandInput extends AssociateAttributeGroupRequest {}
9
8
  export interface AssociateAttributeGroupCommandOutput
10
- extends AssociateAttributeGroupResponse,
11
- __MetadataBearer {}
9
+ extends AssociateAttributeGroupResponse, __MetadataBearer {}
12
10
  declare const AssociateAttributeGroupCommand_base: {
13
11
  new (
14
- input: AssociateAttributeGroupCommandInput
12
+ input: AssociateAttributeGroupCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  AssociateAttributeGroupCommandInput,
17
15
  AssociateAttributeGroupCommandOutput,
@@ -20,7 +18,7 @@ declare const AssociateAttributeGroupCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: AssociateAttributeGroupCommandInput
21
+ input: AssociateAttributeGroupCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  AssociateAttributeGroupCommandInput,
26
24
  AssociateAttributeGroupCommandOutput,