@aws-sdk/client-service-catalog-appregistry 3.49.0 → 3.50.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 (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +25 -25
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +0 -110
  4. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +0 -94
  5. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +0 -17
  6. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +0 -17
  7. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +0 -17
  8. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +0 -17
  9. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +0 -17
  10. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +0 -17
  11. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +0 -17
  12. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +0 -17
  13. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +0 -17
  14. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +0 -17
  15. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +0 -17
  16. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +0 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +0 -17
  18. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +0 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +0 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +0 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +0 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +0 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +0 -21
  27. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  28. package/dist-types/ts3.4/index.d.ts +0 -5
  29. package/dist-types/ts3.4/models/index.d.ts +0 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +0 -639
  31. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  32. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +0 -4
  33. package/dist-types/ts3.4/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +0 -4
  34. package/dist-types/ts3.4/pagination/ListAssociatedResourcesPaginator.d.ts +0 -4
  35. package/dist-types/ts3.4/pagination/ListAttributeGroupsPaginator.d.ts +0 -4
  36. package/dist-types/ts3.4/pagination/index.d.ts +0 -5
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -65
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
@@ -1,639 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
-
3
- export interface Application {
4
-
5
- id?: string;
6
-
7
- arn?: string;
8
-
9
- name?: string;
10
-
11
- description?: string;
12
-
13
- creationTime?: Date;
14
-
15
- lastUpdateTime?: Date;
16
-
17
- tags?: {
18
- [key: string]: string;
19
- };
20
- }
21
- export declare namespace Application {
22
-
23
- const filterSensitiveLog: (obj: Application) => any;
24
- }
25
-
26
- export interface ApplicationSummary {
27
-
28
- id?: string;
29
-
30
- arn?: string;
31
-
32
- name?: string;
33
-
34
- description?: string;
35
-
36
- creationTime?: Date;
37
-
38
- lastUpdateTime?: Date;
39
- }
40
- export declare namespace ApplicationSummary {
41
-
42
- const filterSensitiveLog: (obj: ApplicationSummary) => any;
43
- }
44
- export interface AssociateAttributeGroupRequest {
45
-
46
- application: string | undefined;
47
-
48
- attributeGroup: string | undefined;
49
- }
50
- export declare namespace AssociateAttributeGroupRequest {
51
-
52
- const filterSensitiveLog: (obj: AssociateAttributeGroupRequest) => any;
53
- }
54
- export interface AssociateAttributeGroupResponse {
55
-
56
- applicationArn?: string;
57
-
58
- attributeGroupArn?: string;
59
- }
60
- export declare namespace AssociateAttributeGroupResponse {
61
-
62
- const filterSensitiveLog: (obj: AssociateAttributeGroupResponse) => any;
63
- }
64
-
65
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
66
- name: "InternalServerException";
67
- $fault: "server";
68
- message?: string;
69
- }
70
-
71
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
72
- name: "ResourceNotFoundException";
73
- $fault: "client";
74
- message?: string;
75
- }
76
-
77
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
78
- name: "ServiceQuotaExceededException";
79
- $fault: "client";
80
- message?: string;
81
- }
82
-
83
- export interface ValidationException extends __SmithyException, $MetadataBearer {
84
- name: "ValidationException";
85
- $fault: "client";
86
- message?: string;
87
- }
88
- export declare enum ResourceType {
89
- CFN_STACK = "CFN_STACK"
90
- }
91
- export interface AssociateResourceRequest {
92
-
93
- application: string | undefined;
94
-
95
- resourceType: ResourceType | string | undefined;
96
-
97
- resource: string | undefined;
98
- }
99
- export declare namespace AssociateResourceRequest {
100
-
101
- const filterSensitiveLog: (obj: AssociateResourceRequest) => any;
102
- }
103
- export interface AssociateResourceResponse {
104
-
105
- applicationArn?: string;
106
-
107
- resourceArn?: string;
108
- }
109
- export declare namespace AssociateResourceResponse {
110
-
111
- const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
112
- }
113
-
114
- export interface ConflictException extends __SmithyException, $MetadataBearer {
115
- name: "ConflictException";
116
- $fault: "client";
117
- message?: string;
118
- }
119
-
120
- export interface AttributeGroup {
121
-
122
- id?: string;
123
-
124
- arn?: string;
125
-
126
- name?: string;
127
-
128
- description?: string;
129
-
130
- creationTime?: Date;
131
-
132
- lastUpdateTime?: Date;
133
-
134
- tags?: {
135
- [key: string]: string;
136
- };
137
- }
138
- export declare namespace AttributeGroup {
139
-
140
- const filterSensitiveLog: (obj: AttributeGroup) => any;
141
- }
142
-
143
- export interface AttributeGroupSummary {
144
-
145
- id?: string;
146
-
147
- arn?: string;
148
-
149
- name?: string;
150
-
151
- description?: string;
152
-
153
- creationTime?: Date;
154
-
155
- lastUpdateTime?: Date;
156
- }
157
- export declare namespace AttributeGroupSummary {
158
-
159
- const filterSensitiveLog: (obj: AttributeGroupSummary) => any;
160
- }
161
- export interface CreateApplicationRequest {
162
-
163
- name: string | undefined;
164
-
165
- description?: string;
166
-
167
- tags?: {
168
- [key: string]: string;
169
- };
170
-
171
- clientToken?: string;
172
- }
173
- export declare namespace CreateApplicationRequest {
174
-
175
- const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
176
- }
177
- export interface CreateApplicationResponse {
178
-
179
- application?: Application;
180
- }
181
- export declare namespace CreateApplicationResponse {
182
-
183
- const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
184
- }
185
- export interface CreateAttributeGroupRequest {
186
-
187
- name: string | undefined;
188
-
189
- description?: string;
190
-
191
- attributes: string | undefined;
192
-
193
- tags?: {
194
- [key: string]: string;
195
- };
196
-
197
- clientToken?: string;
198
- }
199
- export declare namespace CreateAttributeGroupRequest {
200
-
201
- const filterSensitiveLog: (obj: CreateAttributeGroupRequest) => any;
202
- }
203
- export interface CreateAttributeGroupResponse {
204
-
205
- attributeGroup?: AttributeGroup;
206
- }
207
- export declare namespace CreateAttributeGroupResponse {
208
-
209
- const filterSensitiveLog: (obj: CreateAttributeGroupResponse) => any;
210
- }
211
- export interface DeleteApplicationRequest {
212
-
213
- application: string | undefined;
214
- }
215
- export declare namespace DeleteApplicationRequest {
216
-
217
- const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
218
- }
219
- export interface DeleteApplicationResponse {
220
-
221
- application?: ApplicationSummary;
222
- }
223
- export declare namespace DeleteApplicationResponse {
224
-
225
- const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
226
- }
227
- export interface DeleteAttributeGroupRequest {
228
-
229
- attributeGroup: string | undefined;
230
- }
231
- export declare namespace DeleteAttributeGroupRequest {
232
-
233
- const filterSensitiveLog: (obj: DeleteAttributeGroupRequest) => any;
234
- }
235
- export interface DeleteAttributeGroupResponse {
236
-
237
- attributeGroup?: AttributeGroupSummary;
238
- }
239
- export declare namespace DeleteAttributeGroupResponse {
240
-
241
- const filterSensitiveLog: (obj: DeleteAttributeGroupResponse) => any;
242
- }
243
- export interface DisassociateAttributeGroupRequest {
244
-
245
- application: string | undefined;
246
-
247
- attributeGroup: string | undefined;
248
- }
249
- export declare namespace DisassociateAttributeGroupRequest {
250
-
251
- const filterSensitiveLog: (obj: DisassociateAttributeGroupRequest) => any;
252
- }
253
- export interface DisassociateAttributeGroupResponse {
254
-
255
- applicationArn?: string;
256
-
257
- attributeGroupArn?: string;
258
- }
259
- export declare namespace DisassociateAttributeGroupResponse {
260
-
261
- const filterSensitiveLog: (obj: DisassociateAttributeGroupResponse) => any;
262
- }
263
- export interface DisassociateResourceRequest {
264
-
265
- application: string | undefined;
266
-
267
- resourceType: ResourceType | string | undefined;
268
-
269
- resource: string | undefined;
270
- }
271
- export declare namespace DisassociateResourceRequest {
272
-
273
- const filterSensitiveLog: (obj: DisassociateResourceRequest) => any;
274
- }
275
- export interface DisassociateResourceResponse {
276
-
277
- applicationArn?: string;
278
-
279
- resourceArn?: string;
280
- }
281
- export declare namespace DisassociateResourceResponse {
282
-
283
- const filterSensitiveLog: (obj: DisassociateResourceResponse) => any;
284
- }
285
- export interface GetApplicationRequest {
286
-
287
- application: string | undefined;
288
- }
289
- export declare namespace GetApplicationRequest {
290
-
291
- const filterSensitiveLog: (obj: GetApplicationRequest) => any;
292
- }
293
- export declare enum ResourceGroupState {
294
- CREATE_COMPLETE = "CREATE_COMPLETE",
295
- CREATE_FAILED = "CREATE_FAILED",
296
- CREATING = "CREATING",
297
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
298
- UPDATE_FAILED = "UPDATE_FAILED",
299
- UPDATING = "UPDATING"
300
- }
301
-
302
- export interface ResourceGroup {
303
-
304
- state?: ResourceGroupState | string;
305
-
306
- arn?: string;
307
-
308
- errorMessage?: string;
309
- }
310
- export declare namespace ResourceGroup {
311
-
312
- const filterSensitiveLog: (obj: ResourceGroup) => any;
313
- }
314
-
315
- export interface Integrations {
316
-
317
- resourceGroup?: ResourceGroup;
318
- }
319
- export declare namespace Integrations {
320
-
321
- const filterSensitiveLog: (obj: Integrations) => any;
322
- }
323
- export interface GetApplicationResponse {
324
-
325
- id?: string;
326
-
327
- arn?: string;
328
-
329
- name?: string;
330
-
331
- description?: string;
332
-
333
- creationTime?: Date;
334
-
335
- lastUpdateTime?: Date;
336
-
337
- associatedResourceCount?: number;
338
-
339
- tags?: {
340
- [key: string]: string;
341
- };
342
-
343
- integrations?: Integrations;
344
- }
345
- export declare namespace GetApplicationResponse {
346
-
347
- const filterSensitiveLog: (obj: GetApplicationResponse) => any;
348
- }
349
- export interface GetAssociatedResourceRequest {
350
-
351
- application: string | undefined;
352
-
353
- resourceType: ResourceType | string | undefined;
354
-
355
- resource: string | undefined;
356
- }
357
- export declare namespace GetAssociatedResourceRequest {
358
-
359
- const filterSensitiveLog: (obj: GetAssociatedResourceRequest) => any;
360
- }
361
-
362
- export interface ResourceIntegrations {
363
-
364
- resourceGroup?: ResourceGroup;
365
- }
366
- export declare namespace ResourceIntegrations {
367
-
368
- const filterSensitiveLog: (obj: ResourceIntegrations) => any;
369
- }
370
-
371
- export interface Resource {
372
-
373
- name?: string;
374
-
375
- arn?: string;
376
-
377
- associationTime?: Date;
378
-
379
- integrations?: ResourceIntegrations;
380
- }
381
- export declare namespace Resource {
382
-
383
- const filterSensitiveLog: (obj: Resource) => any;
384
- }
385
- export interface GetAssociatedResourceResponse {
386
-
387
- resource?: Resource;
388
- }
389
- export declare namespace GetAssociatedResourceResponse {
390
-
391
- const filterSensitiveLog: (obj: GetAssociatedResourceResponse) => any;
392
- }
393
- export interface GetAttributeGroupRequest {
394
-
395
- attributeGroup: string | undefined;
396
- }
397
- export declare namespace GetAttributeGroupRequest {
398
-
399
- const filterSensitiveLog: (obj: GetAttributeGroupRequest) => any;
400
- }
401
- export interface GetAttributeGroupResponse {
402
-
403
- id?: string;
404
-
405
- arn?: string;
406
-
407
- name?: string;
408
-
409
- description?: string;
410
-
411
- attributes?: string;
412
-
413
- creationTime?: Date;
414
-
415
- lastUpdateTime?: Date;
416
-
417
- tags?: {
418
- [key: string]: string;
419
- };
420
- }
421
- export declare namespace GetAttributeGroupResponse {
422
-
423
- const filterSensitiveLog: (obj: GetAttributeGroupResponse) => any;
424
- }
425
- export interface ListApplicationsRequest {
426
-
427
- nextToken?: string;
428
-
429
- maxResults?: number;
430
- }
431
- export declare namespace ListApplicationsRequest {
432
-
433
- const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
434
- }
435
- export interface ListApplicationsResponse {
436
-
437
- applications?: ApplicationSummary[];
438
-
439
- nextToken?: string;
440
- }
441
- export declare namespace ListApplicationsResponse {
442
-
443
- const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
444
- }
445
- export interface ListAssociatedAttributeGroupsRequest {
446
-
447
- application: string | undefined;
448
-
449
- nextToken?: string;
450
-
451
- maxResults?: number;
452
- }
453
- export declare namespace ListAssociatedAttributeGroupsRequest {
454
-
455
- const filterSensitiveLog: (obj: ListAssociatedAttributeGroupsRequest) => any;
456
- }
457
- export interface ListAssociatedAttributeGroupsResponse {
458
-
459
- attributeGroups?: string[];
460
-
461
- nextToken?: string;
462
- }
463
- export declare namespace ListAssociatedAttributeGroupsResponse {
464
-
465
- const filterSensitiveLog: (obj: ListAssociatedAttributeGroupsResponse) => any;
466
- }
467
- export interface ListAssociatedResourcesRequest {
468
-
469
- application: string | undefined;
470
-
471
- nextToken?: string;
472
-
473
- maxResults?: number;
474
- }
475
- export declare namespace ListAssociatedResourcesRequest {
476
-
477
- const filterSensitiveLog: (obj: ListAssociatedResourcesRequest) => any;
478
- }
479
-
480
- export interface ResourceInfo {
481
-
482
- name?: string;
483
-
484
- arn?: string;
485
- }
486
- export declare namespace ResourceInfo {
487
-
488
- const filterSensitiveLog: (obj: ResourceInfo) => any;
489
- }
490
- export interface ListAssociatedResourcesResponse {
491
-
492
- resources?: ResourceInfo[];
493
-
494
- nextToken?: string;
495
- }
496
- export declare namespace ListAssociatedResourcesResponse {
497
-
498
- const filterSensitiveLog: (obj: ListAssociatedResourcesResponse) => any;
499
- }
500
- export interface ListAttributeGroupsRequest {
501
-
502
- nextToken?: string;
503
-
504
- maxResults?: number;
505
- }
506
- export declare namespace ListAttributeGroupsRequest {
507
-
508
- const filterSensitiveLog: (obj: ListAttributeGroupsRequest) => any;
509
- }
510
- export interface ListAttributeGroupsResponse {
511
-
512
- attributeGroups?: AttributeGroupSummary[];
513
-
514
- nextToken?: string;
515
- }
516
- export declare namespace ListAttributeGroupsResponse {
517
-
518
- const filterSensitiveLog: (obj: ListAttributeGroupsResponse) => any;
519
- }
520
- export interface ListTagsForResourceRequest {
521
-
522
- resourceArn: string | undefined;
523
- }
524
- export declare namespace ListTagsForResourceRequest {
525
-
526
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
527
- }
528
- export interface ListTagsForResourceResponse {
529
-
530
- tags?: {
531
- [key: string]: string;
532
- };
533
- }
534
- export declare namespace ListTagsForResourceResponse {
535
-
536
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
537
- }
538
- export interface SyncResourceRequest {
539
-
540
- resourceType: ResourceType | string | undefined;
541
-
542
- resource: string | undefined;
543
- }
544
- export declare namespace SyncResourceRequest {
545
-
546
- const filterSensitiveLog: (obj: SyncResourceRequest) => any;
547
- }
548
- export declare enum SyncAction {
549
- NO_ACTION = "NO_ACTION",
550
- START_SYNC = "START_SYNC"
551
- }
552
- export interface SyncResourceResponse {
553
-
554
- applicationArn?: string;
555
-
556
- resourceArn?: string;
557
-
558
- actionTaken?: SyncAction | string;
559
- }
560
- export declare namespace SyncResourceResponse {
561
-
562
- const filterSensitiveLog: (obj: SyncResourceResponse) => any;
563
- }
564
- export interface TagResourceRequest {
565
-
566
- resourceArn: string | undefined;
567
-
568
- tags: {
569
- [key: string]: string;
570
- } | undefined;
571
- }
572
- export declare namespace TagResourceRequest {
573
-
574
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
575
- }
576
- export interface TagResourceResponse {
577
- }
578
- export declare namespace TagResourceResponse {
579
-
580
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
581
- }
582
- export interface UntagResourceRequest {
583
-
584
- resourceArn: string | undefined;
585
-
586
- tagKeys: string[] | undefined;
587
- }
588
- export declare namespace UntagResourceRequest {
589
-
590
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
591
- }
592
- export interface UntagResourceResponse {
593
- }
594
- export declare namespace UntagResourceResponse {
595
-
596
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
597
- }
598
- export interface UpdateApplicationRequest {
599
-
600
- application: string | undefined;
601
-
602
- name?: string;
603
-
604
- description?: string;
605
- }
606
- export declare namespace UpdateApplicationRequest {
607
-
608
- const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
609
- }
610
- export interface UpdateApplicationResponse {
611
-
612
- application?: Application;
613
- }
614
- export declare namespace UpdateApplicationResponse {
615
-
616
- const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
617
- }
618
- export interface UpdateAttributeGroupRequest {
619
-
620
- attributeGroup: string | undefined;
621
-
622
- name?: string;
623
-
624
- description?: string;
625
-
626
- attributes?: string;
627
- }
628
- export declare namespace UpdateAttributeGroupRequest {
629
-
630
- const filterSensitiveLog: (obj: UpdateAttributeGroupRequest) => any;
631
- }
632
- export interface UpdateAttributeGroupResponse {
633
-
634
- attributeGroup?: AttributeGroup;
635
- }
636
- export declare namespace UpdateAttributeGroupResponse {
637
-
638
- const filterSensitiveLog: (obj: UpdateAttributeGroupResponse) => any;
639
- }
@@ -1,6 +0,0 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ServiceCatalogAppRegistry } from "../ServiceCatalogAppRegistry";
3
- import { ServiceCatalogAppRegistryClient } from "../ServiceCatalogAppRegistryClient";
4
- export interface ServiceCatalogAppRegistryPaginationConfiguration extends PaginationConfiguration {
5
- client: ServiceCatalogAppRegistry | ServiceCatalogAppRegistryClient;
6
- }
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListApplications(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssociatedAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssociatedResources(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedResourcesCommandInput, ...additionalArguments: any): Paginator<ListAssociatedResourcesCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsCommandOutput>;
@@ -1,5 +0,0 @@
1
- export * from "./Interfaces";
2
- export * from "./ListApplicationsPaginator";
3
- export * from "./ListAssociatedAttributeGroupsPaginator";
4
- export * from "./ListAssociatedResourcesPaginator";
5
- export * from "./ListAttributeGroupsPaginator";