@aws-sdk/client-service-catalog-appregistry 3.169.0 → 3.171.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 +384 -115
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +237 -95
  4. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +39 -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 +7 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +449 -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 +67 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  44. package/package.json +34 -34
@@ -1,556 +1,449 @@
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
+ export interface Application {
4
+ id?: string;
5
+ arn?: string;
6
+ name?: string;
7
+ description?: string;
8
+ creationTime?: Date;
9
+ lastUpdateTime?: Date;
10
+ tags?: Record<string, string>;
11
+ }
12
+ export interface ApplicationSummary {
13
+ id?: string;
14
+ arn?: string;
15
+ name?: string;
16
+ description?: string;
17
+ creationTime?: Date;
18
+ lastUpdateTime?: Date;
19
+ }
20
+ export interface AssociateAttributeGroupRequest {
21
+ application: string | undefined;
22
+ attributeGroup: string | undefined;
23
+ }
24
+ export interface AssociateAttributeGroupResponse {
25
+ applicationArn?: string;
26
+ attributeGroupArn?: string;
27
+ }
28
+ export declare class ConflictException extends __BaseException {
29
+ readonly name: "ConflictException";
30
+ readonly $fault: "client";
31
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
32
+ }
33
+ export declare class InternalServerException extends __BaseException {
34
+ readonly name: "InternalServerException";
35
+ readonly $fault: "server";
36
+ constructor(
37
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
38
+ );
39
+ }
40
+ export declare class ResourceNotFoundException extends __BaseException {
41
+ readonly name: "ResourceNotFoundException";
42
+ readonly $fault: "client";
43
+ constructor(
44
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
45
+ );
46
+ }
47
+ export declare class ServiceQuotaExceededException extends __BaseException {
48
+ readonly name: "ServiceQuotaExceededException";
49
+ readonly $fault: "client";
50
+ constructor(
51
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
52
+ );
53
+ }
54
+ export declare class ValidationException extends __BaseException {
55
+ readonly name: "ValidationException";
56
+ readonly $fault: "client";
57
+ constructor(
58
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
59
+ );
60
+ }
61
+ export declare enum ResourceType {
62
+ CFN_STACK = "CFN_STACK",
63
+ }
64
+ export interface AssociateResourceRequest {
65
+ application: string | undefined;
66
+ resourceType: ResourceType | string | undefined;
67
+ resource: string | undefined;
68
+ }
69
+ export interface AssociateResourceResponse {
70
+ applicationArn?: string;
71
+ resourceArn?: string;
72
+ }
73
+ export interface AttributeGroup {
74
+ id?: string;
75
+ arn?: string;
76
+ name?: string;
77
+ description?: string;
78
+ creationTime?: Date;
79
+ lastUpdateTime?: Date;
80
+ tags?: Record<string, string>;
81
+ }
82
+ export interface AttributeGroupDetails {
83
+ id?: string;
84
+ arn?: string;
85
+ name?: string;
86
+ }
87
+ export interface AttributeGroupSummary {
88
+ id?: string;
89
+ arn?: string;
90
+ name?: string;
91
+ description?: string;
92
+ creationTime?: Date;
93
+ lastUpdateTime?: Date;
94
+ }
95
+ export interface CreateApplicationRequest {
96
+ name: string | undefined;
97
+ description?: string;
98
+ tags?: Record<string, string>;
99
+ clientToken?: string;
100
+ }
101
+ export interface CreateApplicationResponse {
102
+ application?: Application;
103
+ }
104
+ export interface CreateAttributeGroupRequest {
105
+ name: string | undefined;
106
+ description?: string;
107
+ attributes: string | undefined;
108
+ tags?: Record<string, string>;
109
+ clientToken?: string;
110
+ }
111
+ export interface CreateAttributeGroupResponse {
112
+ attributeGroup?: AttributeGroup;
113
+ }
114
+ export interface DeleteApplicationRequest {
115
+ application: string | undefined;
116
+ }
117
+ export interface DeleteApplicationResponse {
118
+ application?: ApplicationSummary;
119
+ }
120
+ export interface DeleteAttributeGroupRequest {
121
+ attributeGroup: string | undefined;
122
+ }
123
+ export interface DeleteAttributeGroupResponse {
124
+ attributeGroup?: AttributeGroupSummary;
125
+ }
126
+ export interface DisassociateAttributeGroupRequest {
127
+ application: string | undefined;
128
+ attributeGroup: string | undefined;
129
+ }
130
+ export interface DisassociateAttributeGroupResponse {
131
+ applicationArn?: string;
132
+ attributeGroupArn?: string;
133
+ }
134
+ export interface DisassociateResourceRequest {
135
+ application: string | undefined;
136
+ resourceType: ResourceType | string | undefined;
137
+ resource: string | undefined;
138
+ }
139
+ export interface DisassociateResourceResponse {
140
+ applicationArn?: string;
141
+ resourceArn?: string;
142
+ }
143
+ export interface GetApplicationRequest {
144
+ application: string | undefined;
145
+ }
146
+ export declare enum ResourceGroupState {
147
+ CREATE_COMPLETE = "CREATE_COMPLETE",
148
+ CREATE_FAILED = "CREATE_FAILED",
149
+ CREATING = "CREATING",
150
+ UPDATE_COMPLETE = "UPDATE_COMPLETE",
151
+ UPDATE_FAILED = "UPDATE_FAILED",
152
+ UPDATING = "UPDATING",
153
+ }
154
+ export interface ResourceGroup {
155
+ state?: ResourceGroupState | string;
156
+ arn?: string;
157
+ errorMessage?: string;
158
+ }
159
+ export interface Integrations {
160
+ resourceGroup?: ResourceGroup;
161
+ }
162
+ export interface GetApplicationResponse {
163
+ id?: string;
164
+ arn?: string;
165
+ name?: string;
166
+ description?: string;
167
+ creationTime?: Date;
168
+ lastUpdateTime?: Date;
169
+ associatedResourceCount?: number;
170
+ tags?: Record<string, string>;
171
+ integrations?: Integrations;
172
+ }
173
+ export interface GetAssociatedResourceRequest {
174
+ application: string | undefined;
175
+ resourceType: ResourceType | string | undefined;
176
+ resource: string | undefined;
177
+ }
178
+ export interface ResourceIntegrations {
179
+ resourceGroup?: ResourceGroup;
180
+ }
181
+ export interface Resource {
182
+ name?: string;
183
+ arn?: string;
184
+ associationTime?: Date;
185
+ integrations?: ResourceIntegrations;
186
+ }
187
+ export interface GetAssociatedResourceResponse {
188
+ resource?: Resource;
189
+ }
190
+ export interface GetAttributeGroupRequest {
191
+ attributeGroup: string | undefined;
192
+ }
193
+ export interface GetAttributeGroupResponse {
194
+ id?: string;
195
+ arn?: string;
196
+ name?: string;
197
+ description?: string;
198
+ attributes?: string;
199
+ creationTime?: Date;
200
+ lastUpdateTime?: Date;
201
+ tags?: Record<string, string>;
202
+ }
203
+ export interface ListApplicationsRequest {
204
+ nextToken?: string;
205
+ maxResults?: number;
206
+ }
207
+ export interface ListApplicationsResponse {
208
+ applications?: ApplicationSummary[];
209
+ nextToken?: string;
210
+ }
211
+ export interface ListAssociatedAttributeGroupsRequest {
212
+ application: string | undefined;
213
+ nextToken?: string;
214
+ maxResults?: number;
215
+ }
216
+ export interface ListAssociatedAttributeGroupsResponse {
217
+ attributeGroups?: string[];
218
+ nextToken?: string;
219
+ }
220
+ export interface ListAssociatedResourcesRequest {
221
+ application: string | undefined;
222
+ nextToken?: string;
223
+ maxResults?: number;
224
+ }
225
+ export interface ResourceInfo {
226
+ name?: string;
227
+ arn?: string;
228
+ }
229
+ export interface ListAssociatedResourcesResponse {
230
+ resources?: ResourceInfo[];
231
+ nextToken?: string;
232
+ }
233
+ export interface ListAttributeGroupsRequest {
234
+ nextToken?: string;
235
+ maxResults?: number;
236
+ }
237
+ export interface ListAttributeGroupsResponse {
238
+ attributeGroups?: AttributeGroupSummary[];
239
+ nextToken?: string;
240
+ }
241
+ export interface ListAttributeGroupsForApplicationRequest {
242
+ application: string | undefined;
243
+ nextToken?: string;
244
+ maxResults?: number;
245
+ }
246
+ export interface ListAttributeGroupsForApplicationResponse {
247
+ attributeGroupsDetails?: AttributeGroupDetails[];
248
+ nextToken?: string;
249
+ }
250
+ export interface ListTagsForResourceRequest {
251
+ resourceArn: string | undefined;
252
+ }
253
+ export interface ListTagsForResourceResponse {
254
+ tags?: Record<string, string>;
255
+ }
256
+ export interface SyncResourceRequest {
257
+ resourceType: ResourceType | string | undefined;
258
+ resource: string | undefined;
259
+ }
260
+ export declare enum SyncAction {
261
+ NO_ACTION = "NO_ACTION",
262
+ START_SYNC = "START_SYNC",
263
+ }
264
+ export interface SyncResourceResponse {
265
+ applicationArn?: string;
266
+ resourceArn?: string;
267
+ actionTaken?: SyncAction | string;
268
+ }
269
+ export interface TagResourceRequest {
270
+ resourceArn: string | undefined;
271
+ tags: Record<string, string> | undefined;
272
+ }
273
+ export interface TagResourceResponse {}
274
+ export interface UntagResourceRequest {
275
+ resourceArn: string | undefined;
276
+ tagKeys: string[] | undefined;
277
+ }
278
+ export interface UntagResourceResponse {}
279
+ export interface UpdateApplicationRequest {
280
+ application: string | undefined;
281
+ name?: string;
282
+ description?: string;
283
+ }
284
+ export interface UpdateApplicationResponse {
285
+ application?: Application;
286
+ }
287
+ export interface UpdateAttributeGroupRequest {
288
+ attributeGroup: string | undefined;
289
+ name?: string;
290
+ description?: string;
291
+ attributes?: string;
292
+ }
293
+ export interface UpdateAttributeGroupResponse {
294
+ attributeGroup?: AttributeGroup;
295
+ }
296
+ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
297
+ export declare const ApplicationSummaryFilterSensitiveLog: (
298
+ obj: ApplicationSummary
299
+ ) => any;
300
+ export declare const AssociateAttributeGroupRequestFilterSensitiveLog: (
301
+ obj: AssociateAttributeGroupRequest
302
+ ) => any;
303
+ export declare const AssociateAttributeGroupResponseFilterSensitiveLog: (
304
+ obj: AssociateAttributeGroupResponse
305
+ ) => any;
306
+ export declare const AssociateResourceRequestFilterSensitiveLog: (
307
+ obj: AssociateResourceRequest
308
+ ) => any;
309
+ export declare const AssociateResourceResponseFilterSensitiveLog: (
310
+ obj: AssociateResourceResponse
311
+ ) => any;
312
+ export declare const AttributeGroupFilterSensitiveLog: (
313
+ obj: AttributeGroup
314
+ ) => any;
315
+ export declare const AttributeGroupDetailsFilterSensitiveLog: (
316
+ obj: AttributeGroupDetails
317
+ ) => any;
318
+ export declare const AttributeGroupSummaryFilterSensitiveLog: (
319
+ obj: AttributeGroupSummary
320
+ ) => any;
321
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
322
+ obj: CreateApplicationRequest
323
+ ) => any;
324
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
325
+ obj: CreateApplicationResponse
326
+ ) => any;
327
+ export declare const CreateAttributeGroupRequestFilterSensitiveLog: (
328
+ obj: CreateAttributeGroupRequest
329
+ ) => any;
330
+ export declare const CreateAttributeGroupResponseFilterSensitiveLog: (
331
+ obj: CreateAttributeGroupResponse
332
+ ) => any;
333
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (
334
+ obj: DeleteApplicationRequest
335
+ ) => any;
336
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (
337
+ obj: DeleteApplicationResponse
338
+ ) => any;
339
+ export declare const DeleteAttributeGroupRequestFilterSensitiveLog: (
340
+ obj: DeleteAttributeGroupRequest
341
+ ) => any;
342
+ export declare const DeleteAttributeGroupResponseFilterSensitiveLog: (
343
+ obj: DeleteAttributeGroupResponse
344
+ ) => any;
345
+ export declare const DisassociateAttributeGroupRequestFilterSensitiveLog: (
346
+ obj: DisassociateAttributeGroupRequest
347
+ ) => any;
348
+ export declare const DisassociateAttributeGroupResponseFilterSensitiveLog: (
349
+ obj: DisassociateAttributeGroupResponse
350
+ ) => any;
351
+ export declare const DisassociateResourceRequestFilterSensitiveLog: (
352
+ obj: DisassociateResourceRequest
353
+ ) => any;
354
+ export declare const DisassociateResourceResponseFilterSensitiveLog: (
355
+ obj: DisassociateResourceResponse
356
+ ) => any;
357
+ export declare const GetApplicationRequestFilterSensitiveLog: (
358
+ obj: GetApplicationRequest
359
+ ) => any;
360
+ export declare const ResourceGroupFilterSensitiveLog: (
361
+ obj: ResourceGroup
362
+ ) => any;
363
+ export declare const IntegrationsFilterSensitiveLog: (obj: Integrations) => any;
364
+ export declare const GetApplicationResponseFilterSensitiveLog: (
365
+ obj: GetApplicationResponse
366
+ ) => any;
367
+ export declare const GetAssociatedResourceRequestFilterSensitiveLog: (
368
+ obj: GetAssociatedResourceRequest
369
+ ) => any;
370
+ export declare const ResourceIntegrationsFilterSensitiveLog: (
371
+ obj: ResourceIntegrations
372
+ ) => any;
373
+ export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
374
+ export declare const GetAssociatedResourceResponseFilterSensitiveLog: (
375
+ obj: GetAssociatedResourceResponse
376
+ ) => any;
377
+ export declare const GetAttributeGroupRequestFilterSensitiveLog: (
378
+ obj: GetAttributeGroupRequest
379
+ ) => any;
380
+ export declare const GetAttributeGroupResponseFilterSensitiveLog: (
381
+ obj: GetAttributeGroupResponse
382
+ ) => any;
383
+ export declare const ListApplicationsRequestFilterSensitiveLog: (
384
+ obj: ListApplicationsRequest
385
+ ) => any;
386
+ export declare const ListApplicationsResponseFilterSensitiveLog: (
387
+ obj: ListApplicationsResponse
388
+ ) => any;
389
+ export declare const ListAssociatedAttributeGroupsRequestFilterSensitiveLog: (
390
+ obj: ListAssociatedAttributeGroupsRequest
391
+ ) => any;
392
+ export declare const ListAssociatedAttributeGroupsResponseFilterSensitiveLog: (
393
+ obj: ListAssociatedAttributeGroupsResponse
394
+ ) => any;
395
+ export declare const ListAssociatedResourcesRequestFilterSensitiveLog: (
396
+ obj: ListAssociatedResourcesRequest
397
+ ) => any;
398
+ export declare const ResourceInfoFilterSensitiveLog: (obj: ResourceInfo) => any;
399
+ export declare const ListAssociatedResourcesResponseFilterSensitiveLog: (
400
+ obj: ListAssociatedResourcesResponse
401
+ ) => any;
402
+ export declare const ListAttributeGroupsRequestFilterSensitiveLog: (
403
+ obj: ListAttributeGroupsRequest
404
+ ) => any;
405
+ export declare const ListAttributeGroupsResponseFilterSensitiveLog: (
406
+ obj: ListAttributeGroupsResponse
407
+ ) => any;
408
+ export declare const ListAttributeGroupsForApplicationRequestFilterSensitiveLog: (
409
+ obj: ListAttributeGroupsForApplicationRequest
410
+ ) => any;
411
+ export declare const ListAttributeGroupsForApplicationResponseFilterSensitiveLog: (
412
+ obj: ListAttributeGroupsForApplicationResponse
413
+ ) => any;
414
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
415
+ obj: ListTagsForResourceRequest
416
+ ) => any;
417
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
418
+ obj: ListTagsForResourceResponse
419
+ ) => any;
420
+ export declare const SyncResourceRequestFilterSensitiveLog: (
421
+ obj: SyncResourceRequest
422
+ ) => any;
423
+ export declare const SyncResourceResponseFilterSensitiveLog: (
424
+ obj: SyncResourceResponse
425
+ ) => any;
426
+ export declare const TagResourceRequestFilterSensitiveLog: (
427
+ obj: TagResourceRequest
428
+ ) => any;
429
+ export declare const TagResourceResponseFilterSensitiveLog: (
430
+ obj: TagResourceResponse
431
+ ) => any;
432
+ export declare const UntagResourceRequestFilterSensitiveLog: (
433
+ obj: UntagResourceRequest
434
+ ) => any;
435
+ export declare const UntagResourceResponseFilterSensitiveLog: (
436
+ obj: UntagResourceResponse
437
+ ) => any;
438
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (
439
+ obj: UpdateApplicationRequest
440
+ ) => any;
441
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (
442
+ obj: UpdateApplicationResponse
443
+ ) => any;
444
+ export declare const UpdateAttributeGroupRequestFilterSensitiveLog: (
445
+ obj: UpdateAttributeGroupRequest
446
+ ) => any;
447
+ export declare const UpdateAttributeGroupResponseFilterSensitiveLog: (
448
+ obj: UpdateAttributeGroupResponse
449
+ ) => any;