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