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