@aws-sdk/client-service-catalog-appregistry 3.131.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateAttributeGroupCommand.js +2 -2
- package/dist-cjs/commands/AssociateResourceCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateAttributeGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
- package/dist-cjs/commands/DeleteAttributeGroupCommand.js +2 -2
- package/dist-cjs/commands/DisassociateAttributeGroupCommand.js +2 -2
- package/dist-cjs/commands/DisassociateResourceCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetAssociatedResourceCommand.js +2 -2
- package/dist-cjs/commands/GetAttributeGroupCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/ListAssociatedAttributeGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListAssociatedResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListAttributeGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListAttributeGroupsForApplicationCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/SyncResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/commands/UpdateAttributeGroupCommand.js +2 -2
- package/dist-cjs/models/models_0.js +218 -326
- package/dist-cjs/protocols/Aws_restJson1.js +283 -637
- package/dist-es/commands/AssociateAttributeGroupCommand.js +3 -3
- package/dist-es/commands/AssociateResourceCommand.js +3 -3
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateAttributeGroupCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +3 -3
- package/dist-es/commands/DeleteAttributeGroupCommand.js +3 -3
- package/dist-es/commands/DisassociateAttributeGroupCommand.js +3 -3
- package/dist-es/commands/DisassociateResourceCommand.js +3 -3
- package/dist-es/commands/GetApplicationCommand.js +3 -3
- package/dist-es/commands/GetAssociatedResourceCommand.js +3 -3
- package/dist-es/commands/GetAttributeGroupCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/ListAssociatedAttributeGroupsCommand.js +3 -3
- package/dist-es/commands/ListAssociatedResourcesCommand.js +3 -3
- package/dist-es/commands/ListAttributeGroupsCommand.js +3 -3
- package/dist-es/commands/ListAttributeGroupsForApplicationCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/SyncResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/commands/UpdateAttributeGroupCommand.js +3 -3
- package/dist-es/models/models_0.js +54 -216
- package/dist-es/protocols/Aws_restJson1.js +368 -639
- package/dist-types/models/models_0.d.ts +216 -324
- package/dist-types/ts3.4/models/models_0.d.ts +108 -216
- package/package.json +6 -6
|
@@ -17,10 +17,6 @@ export interface Application {
|
|
|
17
17
|
|
|
18
18
|
tags?: Record<string, string>;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace Application {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: Application) => any;
|
|
23
|
-
}
|
|
24
20
|
|
|
25
21
|
export interface ApplicationSummary {
|
|
26
22
|
|
|
@@ -36,30 +32,18 @@ export interface ApplicationSummary {
|
|
|
36
32
|
|
|
37
33
|
lastUpdateTime?: Date;
|
|
38
34
|
}
|
|
39
|
-
export declare namespace ApplicationSummary {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
42
|
-
}
|
|
43
35
|
export interface AssociateAttributeGroupRequest {
|
|
44
36
|
|
|
45
37
|
application: string | undefined;
|
|
46
38
|
|
|
47
39
|
attributeGroup: string | undefined;
|
|
48
40
|
}
|
|
49
|
-
export declare namespace AssociateAttributeGroupRequest {
|
|
50
|
-
|
|
51
|
-
const filterSensitiveLog: (obj: AssociateAttributeGroupRequest) => any;
|
|
52
|
-
}
|
|
53
41
|
export interface AssociateAttributeGroupResponse {
|
|
54
42
|
|
|
55
43
|
applicationArn?: string;
|
|
56
44
|
|
|
57
45
|
attributeGroupArn?: string;
|
|
58
46
|
}
|
|
59
|
-
export declare namespace AssociateAttributeGroupResponse {
|
|
60
|
-
|
|
61
|
-
const filterSensitiveLog: (obj: AssociateAttributeGroupResponse) => any;
|
|
62
|
-
}
|
|
63
47
|
|
|
64
48
|
export declare class ConflictException extends __BaseException {
|
|
65
49
|
readonly name: "ConflictException";
|
|
@@ -106,20 +90,12 @@ export interface AssociateResourceRequest {
|
|
|
106
90
|
|
|
107
91
|
resource: string | undefined;
|
|
108
92
|
}
|
|
109
|
-
export declare namespace AssociateResourceRequest {
|
|
110
|
-
|
|
111
|
-
const filterSensitiveLog: (obj: AssociateResourceRequest) => any;
|
|
112
|
-
}
|
|
113
93
|
export interface AssociateResourceResponse {
|
|
114
94
|
|
|
115
95
|
applicationArn?: string;
|
|
116
96
|
|
|
117
97
|
resourceArn?: string;
|
|
118
98
|
}
|
|
119
|
-
export declare namespace AssociateResourceResponse {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
122
|
-
}
|
|
123
99
|
|
|
124
100
|
export interface AttributeGroup {
|
|
125
101
|
|
|
@@ -137,10 +113,6 @@ export interface AttributeGroup {
|
|
|
137
113
|
|
|
138
114
|
tags?: Record<string, string>;
|
|
139
115
|
}
|
|
140
|
-
export declare namespace AttributeGroup {
|
|
141
|
-
|
|
142
|
-
const filterSensitiveLog: (obj: AttributeGroup) => any;
|
|
143
|
-
}
|
|
144
116
|
|
|
145
117
|
export interface AttributeGroupDetails {
|
|
146
118
|
|
|
@@ -150,10 +122,6 @@ export interface AttributeGroupDetails {
|
|
|
150
122
|
|
|
151
123
|
name?: string;
|
|
152
124
|
}
|
|
153
|
-
export declare namespace AttributeGroupDetails {
|
|
154
|
-
|
|
155
|
-
const filterSensitiveLog: (obj: AttributeGroupDetails) => any;
|
|
156
|
-
}
|
|
157
125
|
|
|
158
126
|
export interface AttributeGroupSummary {
|
|
159
127
|
|
|
@@ -169,10 +137,6 @@ export interface AttributeGroupSummary {
|
|
|
169
137
|
|
|
170
138
|
lastUpdateTime?: Date;
|
|
171
139
|
}
|
|
172
|
-
export declare namespace AttributeGroupSummary {
|
|
173
|
-
|
|
174
|
-
const filterSensitiveLog: (obj: AttributeGroupSummary) => any;
|
|
175
|
-
}
|
|
176
140
|
export interface CreateApplicationRequest {
|
|
177
141
|
|
|
178
142
|
name: string | undefined;
|
|
@@ -183,18 +147,10 @@ export interface CreateApplicationRequest {
|
|
|
183
147
|
|
|
184
148
|
clientToken?: string;
|
|
185
149
|
}
|
|
186
|
-
export declare namespace CreateApplicationRequest {
|
|
187
|
-
|
|
188
|
-
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
189
|
-
}
|
|
190
150
|
export interface CreateApplicationResponse {
|
|
191
151
|
|
|
192
152
|
application?: Application;
|
|
193
153
|
}
|
|
194
|
-
export declare namespace CreateApplicationResponse {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
197
|
-
}
|
|
198
154
|
export interface CreateAttributeGroupRequest {
|
|
199
155
|
|
|
200
156
|
name: string | undefined;
|
|
@@ -207,70 +163,38 @@ export interface CreateAttributeGroupRequest {
|
|
|
207
163
|
|
|
208
164
|
clientToken?: string;
|
|
209
165
|
}
|
|
210
|
-
export declare namespace CreateAttributeGroupRequest {
|
|
211
|
-
|
|
212
|
-
const filterSensitiveLog: (obj: CreateAttributeGroupRequest) => any;
|
|
213
|
-
}
|
|
214
166
|
export interface CreateAttributeGroupResponse {
|
|
215
167
|
|
|
216
168
|
attributeGroup?: AttributeGroup;
|
|
217
169
|
}
|
|
218
|
-
export declare namespace CreateAttributeGroupResponse {
|
|
219
|
-
|
|
220
|
-
const filterSensitiveLog: (obj: CreateAttributeGroupResponse) => any;
|
|
221
|
-
}
|
|
222
170
|
export interface DeleteApplicationRequest {
|
|
223
171
|
|
|
224
172
|
application: string | undefined;
|
|
225
173
|
}
|
|
226
|
-
export declare namespace DeleteApplicationRequest {
|
|
227
|
-
|
|
228
|
-
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
229
|
-
}
|
|
230
174
|
export interface DeleteApplicationResponse {
|
|
231
175
|
|
|
232
176
|
application?: ApplicationSummary;
|
|
233
177
|
}
|
|
234
|
-
export declare namespace DeleteApplicationResponse {
|
|
235
|
-
|
|
236
|
-
const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
237
|
-
}
|
|
238
178
|
export interface DeleteAttributeGroupRequest {
|
|
239
179
|
|
|
240
180
|
attributeGroup: string | undefined;
|
|
241
181
|
}
|
|
242
|
-
export declare namespace DeleteAttributeGroupRequest {
|
|
243
|
-
|
|
244
|
-
const filterSensitiveLog: (obj: DeleteAttributeGroupRequest) => any;
|
|
245
|
-
}
|
|
246
182
|
export interface DeleteAttributeGroupResponse {
|
|
247
183
|
|
|
248
184
|
attributeGroup?: AttributeGroupSummary;
|
|
249
185
|
}
|
|
250
|
-
export declare namespace DeleteAttributeGroupResponse {
|
|
251
|
-
|
|
252
|
-
const filterSensitiveLog: (obj: DeleteAttributeGroupResponse) => any;
|
|
253
|
-
}
|
|
254
186
|
export interface DisassociateAttributeGroupRequest {
|
|
255
187
|
|
|
256
188
|
application: string | undefined;
|
|
257
189
|
|
|
258
190
|
attributeGroup: string | undefined;
|
|
259
191
|
}
|
|
260
|
-
export declare namespace DisassociateAttributeGroupRequest {
|
|
261
|
-
|
|
262
|
-
const filterSensitiveLog: (obj: DisassociateAttributeGroupRequest) => any;
|
|
263
|
-
}
|
|
264
192
|
export interface DisassociateAttributeGroupResponse {
|
|
265
193
|
|
|
266
194
|
applicationArn?: string;
|
|
267
195
|
|
|
268
196
|
attributeGroupArn?: string;
|
|
269
197
|
}
|
|
270
|
-
export declare namespace DisassociateAttributeGroupResponse {
|
|
271
|
-
|
|
272
|
-
const filterSensitiveLog: (obj: DisassociateAttributeGroupResponse) => any;
|
|
273
|
-
}
|
|
274
198
|
export interface DisassociateResourceRequest {
|
|
275
199
|
|
|
276
200
|
application: string | undefined;
|
|
@@ -279,28 +203,16 @@ export interface DisassociateResourceRequest {
|
|
|
279
203
|
|
|
280
204
|
resource: string | undefined;
|
|
281
205
|
}
|
|
282
|
-
export declare namespace DisassociateResourceRequest {
|
|
283
|
-
|
|
284
|
-
const filterSensitiveLog: (obj: DisassociateResourceRequest) => any;
|
|
285
|
-
}
|
|
286
206
|
export interface DisassociateResourceResponse {
|
|
287
207
|
|
|
288
208
|
applicationArn?: string;
|
|
289
209
|
|
|
290
210
|
resourceArn?: string;
|
|
291
211
|
}
|
|
292
|
-
export declare namespace DisassociateResourceResponse {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: DisassociateResourceResponse) => any;
|
|
295
|
-
}
|
|
296
212
|
export interface GetApplicationRequest {
|
|
297
213
|
|
|
298
214
|
application: string | undefined;
|
|
299
215
|
}
|
|
300
|
-
export declare namespace GetApplicationRequest {
|
|
301
|
-
|
|
302
|
-
const filterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
303
|
-
}
|
|
304
216
|
export declare enum ResourceGroupState {
|
|
305
217
|
CREATE_COMPLETE = "CREATE_COMPLETE",
|
|
306
218
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -318,19 +230,11 @@ export interface ResourceGroup {
|
|
|
318
230
|
|
|
319
231
|
errorMessage?: string;
|
|
320
232
|
}
|
|
321
|
-
export declare namespace ResourceGroup {
|
|
322
|
-
|
|
323
|
-
const filterSensitiveLog: (obj: ResourceGroup) => any;
|
|
324
|
-
}
|
|
325
233
|
|
|
326
234
|
export interface Integrations {
|
|
327
235
|
|
|
328
236
|
resourceGroup?: ResourceGroup;
|
|
329
237
|
}
|
|
330
|
-
export declare namespace Integrations {
|
|
331
|
-
|
|
332
|
-
const filterSensitiveLog: (obj: Integrations) => any;
|
|
333
|
-
}
|
|
334
238
|
export interface GetApplicationResponse {
|
|
335
239
|
|
|
336
240
|
id?: string;
|
|
@@ -351,10 +255,6 @@ export interface GetApplicationResponse {
|
|
|
351
255
|
|
|
352
256
|
integrations?: Integrations;
|
|
353
257
|
}
|
|
354
|
-
export declare namespace GetApplicationResponse {
|
|
355
|
-
|
|
356
|
-
const filterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
357
|
-
}
|
|
358
258
|
export interface GetAssociatedResourceRequest {
|
|
359
259
|
|
|
360
260
|
application: string | undefined;
|
|
@@ -363,19 +263,11 @@ export interface GetAssociatedResourceRequest {
|
|
|
363
263
|
|
|
364
264
|
resource: string | undefined;
|
|
365
265
|
}
|
|
366
|
-
export declare namespace GetAssociatedResourceRequest {
|
|
367
|
-
|
|
368
|
-
const filterSensitiveLog: (obj: GetAssociatedResourceRequest) => any;
|
|
369
|
-
}
|
|
370
266
|
|
|
371
267
|
export interface ResourceIntegrations {
|
|
372
268
|
|
|
373
269
|
resourceGroup?: ResourceGroup;
|
|
374
270
|
}
|
|
375
|
-
export declare namespace ResourceIntegrations {
|
|
376
|
-
|
|
377
|
-
const filterSensitiveLog: (obj: ResourceIntegrations) => any;
|
|
378
|
-
}
|
|
379
271
|
|
|
380
272
|
export interface Resource {
|
|
381
273
|
|
|
@@ -387,26 +279,14 @@ export interface Resource {
|
|
|
387
279
|
|
|
388
280
|
integrations?: ResourceIntegrations;
|
|
389
281
|
}
|
|
390
|
-
export declare namespace Resource {
|
|
391
|
-
|
|
392
|
-
const filterSensitiveLog: (obj: Resource) => any;
|
|
393
|
-
}
|
|
394
282
|
export interface GetAssociatedResourceResponse {
|
|
395
283
|
|
|
396
284
|
resource?: Resource;
|
|
397
285
|
}
|
|
398
|
-
export declare namespace GetAssociatedResourceResponse {
|
|
399
|
-
|
|
400
|
-
const filterSensitiveLog: (obj: GetAssociatedResourceResponse) => any;
|
|
401
|
-
}
|
|
402
286
|
export interface GetAttributeGroupRequest {
|
|
403
287
|
|
|
404
288
|
attributeGroup: string | undefined;
|
|
405
289
|
}
|
|
406
|
-
export declare namespace GetAttributeGroupRequest {
|
|
407
|
-
|
|
408
|
-
const filterSensitiveLog: (obj: GetAttributeGroupRequest) => any;
|
|
409
|
-
}
|
|
410
290
|
export interface GetAttributeGroupResponse {
|
|
411
291
|
|
|
412
292
|
id?: string;
|
|
@@ -425,30 +305,18 @@ export interface GetAttributeGroupResponse {
|
|
|
425
305
|
|
|
426
306
|
tags?: Record<string, string>;
|
|
427
307
|
}
|
|
428
|
-
export declare namespace GetAttributeGroupResponse {
|
|
429
|
-
|
|
430
|
-
const filterSensitiveLog: (obj: GetAttributeGroupResponse) => any;
|
|
431
|
-
}
|
|
432
308
|
export interface ListApplicationsRequest {
|
|
433
309
|
|
|
434
310
|
nextToken?: string;
|
|
435
311
|
|
|
436
312
|
maxResults?: number;
|
|
437
313
|
}
|
|
438
|
-
export declare namespace ListApplicationsRequest {
|
|
439
|
-
|
|
440
|
-
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
441
|
-
}
|
|
442
314
|
export interface ListApplicationsResponse {
|
|
443
315
|
|
|
444
316
|
applications?: ApplicationSummary[];
|
|
445
317
|
|
|
446
318
|
nextToken?: string;
|
|
447
319
|
}
|
|
448
|
-
export declare namespace ListApplicationsResponse {
|
|
449
|
-
|
|
450
|
-
const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
451
|
-
}
|
|
452
320
|
export interface ListAssociatedAttributeGroupsRequest {
|
|
453
321
|
|
|
454
322
|
application: string | undefined;
|
|
@@ -457,20 +325,12 @@ export interface ListAssociatedAttributeGroupsRequest {
|
|
|
457
325
|
|
|
458
326
|
maxResults?: number;
|
|
459
327
|
}
|
|
460
|
-
export declare namespace ListAssociatedAttributeGroupsRequest {
|
|
461
|
-
|
|
462
|
-
const filterSensitiveLog: (obj: ListAssociatedAttributeGroupsRequest) => any;
|
|
463
|
-
}
|
|
464
328
|
export interface ListAssociatedAttributeGroupsResponse {
|
|
465
329
|
|
|
466
330
|
attributeGroups?: string[];
|
|
467
331
|
|
|
468
332
|
nextToken?: string;
|
|
469
333
|
}
|
|
470
|
-
export declare namespace ListAssociatedAttributeGroupsResponse {
|
|
471
|
-
|
|
472
|
-
const filterSensitiveLog: (obj: ListAssociatedAttributeGroupsResponse) => any;
|
|
473
|
-
}
|
|
474
334
|
export interface ListAssociatedResourcesRequest {
|
|
475
335
|
|
|
476
336
|
application: string | undefined;
|
|
@@ -479,10 +339,6 @@ export interface ListAssociatedResourcesRequest {
|
|
|
479
339
|
|
|
480
340
|
maxResults?: number;
|
|
481
341
|
}
|
|
482
|
-
export declare namespace ListAssociatedResourcesRequest {
|
|
483
|
-
|
|
484
|
-
const filterSensitiveLog: (obj: ListAssociatedResourcesRequest) => any;
|
|
485
|
-
}
|
|
486
342
|
|
|
487
343
|
export interface ResourceInfo {
|
|
488
344
|
|
|
@@ -490,40 +346,24 @@ export interface ResourceInfo {
|
|
|
490
346
|
|
|
491
347
|
arn?: string;
|
|
492
348
|
}
|
|
493
|
-
export declare namespace ResourceInfo {
|
|
494
|
-
|
|
495
|
-
const filterSensitiveLog: (obj: ResourceInfo) => any;
|
|
496
|
-
}
|
|
497
349
|
export interface ListAssociatedResourcesResponse {
|
|
498
350
|
|
|
499
351
|
resources?: ResourceInfo[];
|
|
500
352
|
|
|
501
353
|
nextToken?: string;
|
|
502
354
|
}
|
|
503
|
-
export declare namespace ListAssociatedResourcesResponse {
|
|
504
|
-
|
|
505
|
-
const filterSensitiveLog: (obj: ListAssociatedResourcesResponse) => any;
|
|
506
|
-
}
|
|
507
355
|
export interface ListAttributeGroupsRequest {
|
|
508
356
|
|
|
509
357
|
nextToken?: string;
|
|
510
358
|
|
|
511
359
|
maxResults?: number;
|
|
512
360
|
}
|
|
513
|
-
export declare namespace ListAttributeGroupsRequest {
|
|
514
|
-
|
|
515
|
-
const filterSensitiveLog: (obj: ListAttributeGroupsRequest) => any;
|
|
516
|
-
}
|
|
517
361
|
export interface ListAttributeGroupsResponse {
|
|
518
362
|
|
|
519
363
|
attributeGroups?: AttributeGroupSummary[];
|
|
520
364
|
|
|
521
365
|
nextToken?: string;
|
|
522
366
|
}
|
|
523
|
-
export declare namespace ListAttributeGroupsResponse {
|
|
524
|
-
|
|
525
|
-
const filterSensitiveLog: (obj: ListAttributeGroupsResponse) => any;
|
|
526
|
-
}
|
|
527
367
|
export interface ListAttributeGroupsForApplicationRequest {
|
|
528
368
|
|
|
529
369
|
application: string | undefined;
|
|
@@ -532,46 +372,26 @@ export interface ListAttributeGroupsForApplicationRequest {
|
|
|
532
372
|
|
|
533
373
|
maxResults?: number;
|
|
534
374
|
}
|
|
535
|
-
export declare namespace ListAttributeGroupsForApplicationRequest {
|
|
536
|
-
|
|
537
|
-
const filterSensitiveLog: (obj: ListAttributeGroupsForApplicationRequest) => any;
|
|
538
|
-
}
|
|
539
375
|
export interface ListAttributeGroupsForApplicationResponse {
|
|
540
376
|
|
|
541
377
|
attributeGroupsDetails?: AttributeGroupDetails[];
|
|
542
378
|
|
|
543
379
|
nextToken?: string;
|
|
544
380
|
}
|
|
545
|
-
export declare namespace ListAttributeGroupsForApplicationResponse {
|
|
546
|
-
|
|
547
|
-
const filterSensitiveLog: (obj: ListAttributeGroupsForApplicationResponse) => any;
|
|
548
|
-
}
|
|
549
381
|
export interface ListTagsForResourceRequest {
|
|
550
382
|
|
|
551
383
|
resourceArn: string | undefined;
|
|
552
384
|
}
|
|
553
|
-
export declare namespace ListTagsForResourceRequest {
|
|
554
|
-
|
|
555
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
556
|
-
}
|
|
557
385
|
export interface ListTagsForResourceResponse {
|
|
558
386
|
|
|
559
387
|
tags?: Record<string, string>;
|
|
560
388
|
}
|
|
561
|
-
export declare namespace ListTagsForResourceResponse {
|
|
562
|
-
|
|
563
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
564
|
-
}
|
|
565
389
|
export interface SyncResourceRequest {
|
|
566
390
|
|
|
567
391
|
resourceType: ResourceType | string | undefined;
|
|
568
392
|
|
|
569
393
|
resource: string | undefined;
|
|
570
394
|
}
|
|
571
|
-
export declare namespace SyncResourceRequest {
|
|
572
|
-
|
|
573
|
-
const filterSensitiveLog: (obj: SyncResourceRequest) => any;
|
|
574
|
-
}
|
|
575
395
|
export declare enum SyncAction {
|
|
576
396
|
NO_ACTION = "NO_ACTION",
|
|
577
397
|
START_SYNC = "START_SYNC"
|
|
@@ -584,42 +404,22 @@ export interface SyncResourceResponse {
|
|
|
584
404
|
|
|
585
405
|
actionTaken?: SyncAction | string;
|
|
586
406
|
}
|
|
587
|
-
export declare namespace SyncResourceResponse {
|
|
588
|
-
|
|
589
|
-
const filterSensitiveLog: (obj: SyncResourceResponse) => any;
|
|
590
|
-
}
|
|
591
407
|
export interface TagResourceRequest {
|
|
592
408
|
|
|
593
409
|
resourceArn: string | undefined;
|
|
594
410
|
|
|
595
411
|
tags: Record<string, string> | undefined;
|
|
596
412
|
}
|
|
597
|
-
export declare namespace TagResourceRequest {
|
|
598
|
-
|
|
599
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
600
|
-
}
|
|
601
413
|
export interface TagResourceResponse {
|
|
602
414
|
}
|
|
603
|
-
export declare namespace TagResourceResponse {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
606
|
-
}
|
|
607
415
|
export interface UntagResourceRequest {
|
|
608
416
|
|
|
609
417
|
resourceArn: string | undefined;
|
|
610
418
|
|
|
611
419
|
tagKeys: string[] | undefined;
|
|
612
420
|
}
|
|
613
|
-
export declare namespace UntagResourceRequest {
|
|
614
|
-
|
|
615
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
616
|
-
}
|
|
617
421
|
export interface UntagResourceResponse {
|
|
618
422
|
}
|
|
619
|
-
export declare namespace UntagResourceResponse {
|
|
620
|
-
|
|
621
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
622
|
-
}
|
|
623
423
|
export interface UpdateApplicationRequest {
|
|
624
424
|
|
|
625
425
|
application: string | undefined;
|
|
@@ -628,18 +428,10 @@ export interface UpdateApplicationRequest {
|
|
|
628
428
|
|
|
629
429
|
description?: string;
|
|
630
430
|
}
|
|
631
|
-
export declare namespace UpdateApplicationRequest {
|
|
632
|
-
|
|
633
|
-
const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
634
|
-
}
|
|
635
431
|
export interface UpdateApplicationResponse {
|
|
636
432
|
|
|
637
433
|
application?: Application;
|
|
638
434
|
}
|
|
639
|
-
export declare namespace UpdateApplicationResponse {
|
|
640
|
-
|
|
641
|
-
const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
642
|
-
}
|
|
643
435
|
export interface UpdateAttributeGroupRequest {
|
|
644
436
|
|
|
645
437
|
attributeGroup: string | undefined;
|
|
@@ -650,15 +442,115 @@ export interface UpdateAttributeGroupRequest {
|
|
|
650
442
|
|
|
651
443
|
attributes?: string;
|
|
652
444
|
}
|
|
653
|
-
export declare namespace UpdateAttributeGroupRequest {
|
|
654
|
-
|
|
655
|
-
const filterSensitiveLog: (obj: UpdateAttributeGroupRequest) => any;
|
|
656
|
-
}
|
|
657
445
|
export interface UpdateAttributeGroupResponse {
|
|
658
446
|
|
|
659
447
|
attributeGroup?: AttributeGroup;
|
|
660
448
|
}
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog-appregistry",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|