@aws-sdk/client-service-catalog-appregistry 3.295.0 → 3.297.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/dist-types/ServiceCatalogAppRegistry.d.ts +25 -0
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +24 -4
- package/dist-types/commands/AssociateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SyncResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/models/ServiceCatalogAppRegistryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +165 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAssociatedResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributeGroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry application that is the top-level node in a hierarchy of related
|
|
5
6
|
* cloud resource abstractions.</p>
|
|
6
7
|
*/
|
|
@@ -35,6 +36,7 @@ export interface Application {
|
|
|
35
36
|
tags?: Record<string, string>;
|
|
36
37
|
}
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Summary of a Amazon Web Services Service Catalog AppRegistry application.</p>
|
|
39
41
|
*/
|
|
40
42
|
export interface ApplicationSummary {
|
|
@@ -64,6 +66,7 @@ export interface ApplicationSummary {
|
|
|
64
66
|
lastUpdateTime?: Date;
|
|
65
67
|
}
|
|
66
68
|
/**
|
|
69
|
+
* @public
|
|
67
70
|
* <p>
|
|
68
71
|
* The
|
|
69
72
|
* definition
|
|
@@ -84,6 +87,7 @@ export interface TagQueryConfiguration {
|
|
|
84
87
|
tagKey?: string;
|
|
85
88
|
}
|
|
86
89
|
/**
|
|
90
|
+
* @public
|
|
87
91
|
* <p>
|
|
88
92
|
* Includes all
|
|
89
93
|
* of the Service Catalog AppRegistry settings.
|
|
@@ -98,6 +102,9 @@ export interface AppRegistryConfiguration {
|
|
|
98
102
|
*/
|
|
99
103
|
tagQueryConfiguration?: TagQueryConfiguration;
|
|
100
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
101
108
|
export interface AssociateAttributeGroupRequest {
|
|
102
109
|
/**
|
|
103
110
|
* <p>The name or ID of the application.</p>
|
|
@@ -108,6 +115,9 @@ export interface AssociateAttributeGroupRequest {
|
|
|
108
115
|
*/
|
|
109
116
|
attributeGroup: string | undefined;
|
|
110
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
111
121
|
export interface AssociateAttributeGroupResponse {
|
|
112
122
|
/**
|
|
113
123
|
* <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
|
|
@@ -119,6 +129,7 @@ export interface AssociateAttributeGroupResponse {
|
|
|
119
129
|
attributeGroupArn?: string;
|
|
120
130
|
}
|
|
121
131
|
/**
|
|
132
|
+
* @public
|
|
122
133
|
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
123
134
|
* name already exists within the account).</p>
|
|
124
135
|
*/
|
|
@@ -131,6 +142,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
131
142
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
132
143
|
}
|
|
133
144
|
/**
|
|
145
|
+
* @public
|
|
134
146
|
* <p>The service is experiencing internal problems.</p>
|
|
135
147
|
*/
|
|
136
148
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -142,6 +154,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
142
154
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
143
155
|
}
|
|
144
156
|
/**
|
|
157
|
+
* @public
|
|
145
158
|
* <p>The specified resource does not exist.</p>
|
|
146
159
|
*/
|
|
147
160
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -153,6 +166,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
153
166
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
154
167
|
}
|
|
155
168
|
/**
|
|
169
|
+
* @public
|
|
156
170
|
* <p>The maximum number of resources per account has been reached.</p>
|
|
157
171
|
*/
|
|
158
172
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -164,6 +178,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
164
178
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
165
179
|
}
|
|
166
180
|
/**
|
|
181
|
+
* @public
|
|
167
182
|
* <p>The request has invalid or missing parameters.</p>
|
|
168
183
|
*/
|
|
169
184
|
export declare class ValidationException extends __BaseException {
|
|
@@ -174,10 +189,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
174
189
|
*/
|
|
175
190
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
176
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
177
195
|
export declare enum ResourceType {
|
|
178
196
|
CFN_STACK = "CFN_STACK",
|
|
179
197
|
RESOURCE_TAG_VALUE = "RESOURCE_TAG_VALUE"
|
|
180
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
181
202
|
export interface AssociateResourceRequest {
|
|
182
203
|
/**
|
|
183
204
|
* <p>The name or ID of the application.</p>
|
|
@@ -192,6 +213,9 @@ export interface AssociateResourceRequest {
|
|
|
192
213
|
*/
|
|
193
214
|
resource: string | undefined;
|
|
194
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
195
219
|
export interface AssociateResourceResponse {
|
|
196
220
|
/**
|
|
197
221
|
* <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
|
|
@@ -203,6 +227,7 @@ export interface AssociateResourceResponse {
|
|
|
203
227
|
resourceArn?: string;
|
|
204
228
|
}
|
|
205
229
|
/**
|
|
230
|
+
* @public
|
|
206
231
|
* <p>Represents a Amazon Web Services Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.</p>
|
|
207
232
|
*/
|
|
208
233
|
export interface AttributeGroup {
|
|
@@ -236,6 +261,7 @@ export interface AttributeGroup {
|
|
|
236
261
|
tags?: Record<string, string>;
|
|
237
262
|
}
|
|
238
263
|
/**
|
|
264
|
+
* @public
|
|
239
265
|
* <p>
|
|
240
266
|
* The details related to a specific AttributeGroup.
|
|
241
267
|
* </p>
|
|
@@ -266,6 +292,7 @@ export interface AttributeGroupDetails {
|
|
|
266
292
|
name?: string;
|
|
267
293
|
}
|
|
268
294
|
/**
|
|
295
|
+
* @public
|
|
269
296
|
* <p>Summary of a Amazon Web Services Service Catalog AppRegistry attribute group.</p>
|
|
270
297
|
*/
|
|
271
298
|
export interface AttributeGroupSummary {
|
|
@@ -294,6 +321,9 @@ export interface AttributeGroupSummary {
|
|
|
294
321
|
*/
|
|
295
322
|
lastUpdateTime?: Date;
|
|
296
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
297
327
|
export interface CreateApplicationRequest {
|
|
298
328
|
/**
|
|
299
329
|
* <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
|
|
@@ -315,12 +345,18 @@ export interface CreateApplicationRequest {
|
|
|
315
345
|
*/
|
|
316
346
|
clientToken?: string;
|
|
317
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
318
351
|
export interface CreateApplicationResponse {
|
|
319
352
|
/**
|
|
320
353
|
* <p>Information about the application.</p>
|
|
321
354
|
*/
|
|
322
355
|
application?: Application;
|
|
323
356
|
}
|
|
357
|
+
/**
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
324
360
|
export interface CreateAttributeGroupRequest {
|
|
325
361
|
/**
|
|
326
362
|
* <p>The name of the attribute group.</p>
|
|
@@ -346,36 +382,54 @@ export interface CreateAttributeGroupRequest {
|
|
|
346
382
|
*/
|
|
347
383
|
clientToken?: string;
|
|
348
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* @public
|
|
387
|
+
*/
|
|
349
388
|
export interface CreateAttributeGroupResponse {
|
|
350
389
|
/**
|
|
351
390
|
* <p>Information about the attribute group.</p>
|
|
352
391
|
*/
|
|
353
392
|
attributeGroup?: AttributeGroup;
|
|
354
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
355
397
|
export interface DeleteApplicationRequest {
|
|
356
398
|
/**
|
|
357
399
|
* <p>The name or ID of the application.</p>
|
|
358
400
|
*/
|
|
359
401
|
application: string | undefined;
|
|
360
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
361
406
|
export interface DeleteApplicationResponse {
|
|
362
407
|
/**
|
|
363
408
|
* <p>Information about the deleted application.</p>
|
|
364
409
|
*/
|
|
365
410
|
application?: ApplicationSummary;
|
|
366
411
|
}
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
367
415
|
export interface DeleteAttributeGroupRequest {
|
|
368
416
|
/**
|
|
369
417
|
* <p>The name or ID of the attribute group that holds the attributes to describe the application.</p>
|
|
370
418
|
*/
|
|
371
419
|
attributeGroup: string | undefined;
|
|
372
420
|
}
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
373
424
|
export interface DeleteAttributeGroupResponse {
|
|
374
425
|
/**
|
|
375
426
|
* <p>Information about the deleted attribute group.</p>
|
|
376
427
|
*/
|
|
377
428
|
attributeGroup?: AttributeGroupSummary;
|
|
378
429
|
}
|
|
430
|
+
/**
|
|
431
|
+
* @public
|
|
432
|
+
*/
|
|
379
433
|
export interface DisassociateAttributeGroupRequest {
|
|
380
434
|
/**
|
|
381
435
|
* <p>The name or ID of the application.</p>
|
|
@@ -386,6 +440,9 @@ export interface DisassociateAttributeGroupRequest {
|
|
|
386
440
|
*/
|
|
387
441
|
attributeGroup: string | undefined;
|
|
388
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
389
446
|
export interface DisassociateAttributeGroupResponse {
|
|
390
447
|
/**
|
|
391
448
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
@@ -396,6 +453,9 @@ export interface DisassociateAttributeGroupResponse {
|
|
|
396
453
|
*/
|
|
397
454
|
attributeGroupArn?: string;
|
|
398
455
|
}
|
|
456
|
+
/**
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
399
459
|
export interface DisassociateResourceRequest {
|
|
400
460
|
/**
|
|
401
461
|
* <p>The name or ID of the application.</p>
|
|
@@ -410,6 +470,9 @@ export interface DisassociateResourceRequest {
|
|
|
410
470
|
*/
|
|
411
471
|
resource: string | undefined;
|
|
412
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
*/
|
|
413
476
|
export interface DisassociateResourceResponse {
|
|
414
477
|
/**
|
|
415
478
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
@@ -420,12 +483,18 @@ export interface DisassociateResourceResponse {
|
|
|
420
483
|
*/
|
|
421
484
|
resourceArn?: string;
|
|
422
485
|
}
|
|
486
|
+
/**
|
|
487
|
+
* @public
|
|
488
|
+
*/
|
|
423
489
|
export interface GetApplicationRequest {
|
|
424
490
|
/**
|
|
425
491
|
* <p>The name or ID of the application.</p>
|
|
426
492
|
*/
|
|
427
493
|
application: string | undefined;
|
|
428
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
429
498
|
export declare enum ResourceGroupState {
|
|
430
499
|
CREATE_COMPLETE = "CREATE_COMPLETE",
|
|
431
500
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -435,6 +504,7 @@ export declare enum ResourceGroupState {
|
|
|
435
504
|
UPDATING = "UPDATING"
|
|
436
505
|
}
|
|
437
506
|
/**
|
|
507
|
+
* @public
|
|
438
508
|
* <p>The information about the resource group integration.</p>
|
|
439
509
|
*/
|
|
440
510
|
export interface ResourceGroup {
|
|
@@ -464,6 +534,7 @@ export interface ResourceGroup {
|
|
|
464
534
|
errorMessage?: string;
|
|
465
535
|
}
|
|
466
536
|
/**
|
|
537
|
+
* @public
|
|
467
538
|
* <p> The information about the service integration.</p>
|
|
468
539
|
*/
|
|
469
540
|
export interface Integrations {
|
|
@@ -472,6 +543,9 @@ export interface Integrations {
|
|
|
472
543
|
*/
|
|
473
544
|
resourceGroup?: ResourceGroup;
|
|
474
545
|
}
|
|
546
|
+
/**
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
475
549
|
export interface GetApplicationResponse {
|
|
476
550
|
/**
|
|
477
551
|
* <p>The identifier of the application.</p>
|
|
@@ -517,6 +591,9 @@ export interface GetApplicationResponse {
|
|
|
517
591
|
*/
|
|
518
592
|
integrations?: Integrations;
|
|
519
593
|
}
|
|
594
|
+
/**
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
520
597
|
export interface GetAssociatedResourceRequest {
|
|
521
598
|
/**
|
|
522
599
|
* <p>The name or ID of the application.</p>
|
|
@@ -532,6 +609,7 @@ export interface GetAssociatedResourceRequest {
|
|
|
532
609
|
resource: string | undefined;
|
|
533
610
|
}
|
|
534
611
|
/**
|
|
612
|
+
* @public
|
|
535
613
|
* <p>The service integration information about the resource.</p>
|
|
536
614
|
*/
|
|
537
615
|
export interface ResourceIntegrations {
|
|
@@ -541,6 +619,7 @@ export interface ResourceIntegrations {
|
|
|
541
619
|
resourceGroup?: ResourceGroup;
|
|
542
620
|
}
|
|
543
621
|
/**
|
|
622
|
+
* @public
|
|
544
623
|
* <p> The information about the resource.</p>
|
|
545
624
|
*/
|
|
546
625
|
export interface Resource {
|
|
@@ -562,18 +641,27 @@ export interface Resource {
|
|
|
562
641
|
*/
|
|
563
642
|
integrations?: ResourceIntegrations;
|
|
564
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
565
647
|
export interface GetAssociatedResourceResponse {
|
|
566
648
|
/**
|
|
567
649
|
* <p>The resource associated with the application.</p>
|
|
568
650
|
*/
|
|
569
651
|
resource?: Resource;
|
|
570
652
|
}
|
|
653
|
+
/**
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
571
656
|
export interface GetAttributeGroupRequest {
|
|
572
657
|
/**
|
|
573
658
|
* <p>The name or ID of the attribute group that holds the attributes to describe the application.</p>
|
|
574
659
|
*/
|
|
575
660
|
attributeGroup: string | undefined;
|
|
576
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
577
665
|
export interface GetAttributeGroupResponse {
|
|
578
666
|
/**
|
|
579
667
|
* <p>The identifier of the attribute group.</p>
|
|
@@ -608,6 +696,9 @@ export interface GetAttributeGroupResponse {
|
|
|
608
696
|
*/
|
|
609
697
|
tags?: Record<string, string>;
|
|
610
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
611
702
|
export interface GetConfigurationResponse {
|
|
612
703
|
/**
|
|
613
704
|
* <p>
|
|
@@ -617,6 +708,9 @@ export interface GetConfigurationResponse {
|
|
|
617
708
|
*/
|
|
618
709
|
configuration?: AppRegistryConfiguration;
|
|
619
710
|
}
|
|
711
|
+
/**
|
|
712
|
+
* @public
|
|
713
|
+
*/
|
|
620
714
|
export interface ListApplicationsRequest {
|
|
621
715
|
/**
|
|
622
716
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
@@ -627,6 +721,9 @@ export interface ListApplicationsRequest {
|
|
|
627
721
|
*/
|
|
628
722
|
maxResults?: number;
|
|
629
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
630
727
|
export interface ListApplicationsResponse {
|
|
631
728
|
/**
|
|
632
729
|
* <p>This list of applications.</p>
|
|
@@ -637,6 +734,9 @@ export interface ListApplicationsResponse {
|
|
|
637
734
|
*/
|
|
638
735
|
nextToken?: string;
|
|
639
736
|
}
|
|
737
|
+
/**
|
|
738
|
+
* @public
|
|
739
|
+
*/
|
|
640
740
|
export interface ListAssociatedAttributeGroupsRequest {
|
|
641
741
|
/**
|
|
642
742
|
* <p>The name or ID of the application.</p>
|
|
@@ -651,6 +751,9 @@ export interface ListAssociatedAttributeGroupsRequest {
|
|
|
651
751
|
*/
|
|
652
752
|
maxResults?: number;
|
|
653
753
|
}
|
|
754
|
+
/**
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
654
757
|
export interface ListAssociatedAttributeGroupsResponse {
|
|
655
758
|
/**
|
|
656
759
|
* <p>A list of attribute group IDs.</p>
|
|
@@ -661,6 +764,9 @@ export interface ListAssociatedAttributeGroupsResponse {
|
|
|
661
764
|
*/
|
|
662
765
|
nextToken?: string;
|
|
663
766
|
}
|
|
767
|
+
/**
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
664
770
|
export interface ListAssociatedResourcesRequest {
|
|
665
771
|
/**
|
|
666
772
|
* <p>The name or ID of the application.</p>
|
|
@@ -676,6 +782,7 @@ export interface ListAssociatedResourcesRequest {
|
|
|
676
782
|
maxResults?: number;
|
|
677
783
|
}
|
|
678
784
|
/**
|
|
785
|
+
* @public
|
|
679
786
|
* <p>
|
|
680
787
|
* The details
|
|
681
788
|
* related
|
|
@@ -690,6 +797,7 @@ export interface ResourceDetails {
|
|
|
690
797
|
tagValue?: string;
|
|
691
798
|
}
|
|
692
799
|
/**
|
|
800
|
+
* @public
|
|
693
801
|
* <p>The information about the resource.</p>
|
|
694
802
|
*/
|
|
695
803
|
export interface ResourceInfo {
|
|
@@ -717,6 +825,9 @@ export interface ResourceInfo {
|
|
|
717
825
|
*/
|
|
718
826
|
resourceDetails?: ResourceDetails;
|
|
719
827
|
}
|
|
828
|
+
/**
|
|
829
|
+
* @public
|
|
830
|
+
*/
|
|
720
831
|
export interface ListAssociatedResourcesResponse {
|
|
721
832
|
/**
|
|
722
833
|
* <p>Information about the resources.</p>
|
|
@@ -727,6 +838,9 @@ export interface ListAssociatedResourcesResponse {
|
|
|
727
838
|
*/
|
|
728
839
|
nextToken?: string;
|
|
729
840
|
}
|
|
841
|
+
/**
|
|
842
|
+
* @public
|
|
843
|
+
*/
|
|
730
844
|
export interface ListAttributeGroupsRequest {
|
|
731
845
|
/**
|
|
732
846
|
* <p>The token to use to get the next page of results after a previous API call. </p>
|
|
@@ -737,6 +851,9 @@ export interface ListAttributeGroupsRequest {
|
|
|
737
851
|
*/
|
|
738
852
|
maxResults?: number;
|
|
739
853
|
}
|
|
854
|
+
/**
|
|
855
|
+
* @public
|
|
856
|
+
*/
|
|
740
857
|
export interface ListAttributeGroupsResponse {
|
|
741
858
|
/**
|
|
742
859
|
* <p>This list of attribute groups.</p>
|
|
@@ -747,6 +864,9 @@ export interface ListAttributeGroupsResponse {
|
|
|
747
864
|
*/
|
|
748
865
|
nextToken?: string;
|
|
749
866
|
}
|
|
867
|
+
/**
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
750
870
|
export interface ListAttributeGroupsForApplicationRequest {
|
|
751
871
|
/**
|
|
752
872
|
* <p>The name or ID of the application.</p>
|
|
@@ -761,6 +881,9 @@ export interface ListAttributeGroupsForApplicationRequest {
|
|
|
761
881
|
*/
|
|
762
882
|
maxResults?: number;
|
|
763
883
|
}
|
|
884
|
+
/**
|
|
885
|
+
* @public
|
|
886
|
+
*/
|
|
764
887
|
export interface ListAttributeGroupsForApplicationResponse {
|
|
765
888
|
/**
|
|
766
889
|
* <p> The details related to a specific attribute group. </p>
|
|
@@ -771,18 +894,27 @@ export interface ListAttributeGroupsForApplicationResponse {
|
|
|
771
894
|
*/
|
|
772
895
|
nextToken?: string;
|
|
773
896
|
}
|
|
897
|
+
/**
|
|
898
|
+
* @public
|
|
899
|
+
*/
|
|
774
900
|
export interface ListTagsForResourceRequest {
|
|
775
901
|
/**
|
|
776
902
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
777
903
|
*/
|
|
778
904
|
resourceArn: string | undefined;
|
|
779
905
|
}
|
|
906
|
+
/**
|
|
907
|
+
* @public
|
|
908
|
+
*/
|
|
780
909
|
export interface ListTagsForResourceResponse {
|
|
781
910
|
/**
|
|
782
911
|
* <p>The tags on the resource.</p>
|
|
783
912
|
*/
|
|
784
913
|
tags?: Record<string, string>;
|
|
785
914
|
}
|
|
915
|
+
/**
|
|
916
|
+
* @public
|
|
917
|
+
*/
|
|
786
918
|
export interface PutConfigurationRequest {
|
|
787
919
|
/**
|
|
788
920
|
* <p>
|
|
@@ -792,6 +924,9 @@ export interface PutConfigurationRequest {
|
|
|
792
924
|
*/
|
|
793
925
|
configuration: AppRegistryConfiguration | undefined;
|
|
794
926
|
}
|
|
927
|
+
/**
|
|
928
|
+
* @public
|
|
929
|
+
*/
|
|
795
930
|
export interface SyncResourceRequest {
|
|
796
931
|
/**
|
|
797
932
|
* <p>The type of resource of which the application will be associated.</p>
|
|
@@ -802,10 +937,16 @@ export interface SyncResourceRequest {
|
|
|
802
937
|
*/
|
|
803
938
|
resource: string | undefined;
|
|
804
939
|
}
|
|
940
|
+
/**
|
|
941
|
+
* @public
|
|
942
|
+
*/
|
|
805
943
|
export declare enum SyncAction {
|
|
806
944
|
NO_ACTION = "NO_ACTION",
|
|
807
945
|
START_SYNC = "START_SYNC"
|
|
808
946
|
}
|
|
947
|
+
/**
|
|
948
|
+
* @public
|
|
949
|
+
*/
|
|
809
950
|
export interface SyncResourceResponse {
|
|
810
951
|
/**
|
|
811
952
|
* <p>The Amazon resource name (ARN) that specifies the application.</p>
|
|
@@ -820,6 +961,9 @@ export interface SyncResourceResponse {
|
|
|
820
961
|
*/
|
|
821
962
|
actionTaken?: SyncAction | string;
|
|
822
963
|
}
|
|
964
|
+
/**
|
|
965
|
+
* @public
|
|
966
|
+
*/
|
|
823
967
|
export interface TagResourceRequest {
|
|
824
968
|
/**
|
|
825
969
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
@@ -830,8 +974,14 @@ export interface TagResourceRequest {
|
|
|
830
974
|
*/
|
|
831
975
|
tags: Record<string, string> | undefined;
|
|
832
976
|
}
|
|
977
|
+
/**
|
|
978
|
+
* @public
|
|
979
|
+
*/
|
|
833
980
|
export interface TagResourceResponse {
|
|
834
981
|
}
|
|
982
|
+
/**
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
835
985
|
export interface UntagResourceRequest {
|
|
836
986
|
/**
|
|
837
987
|
* <p>The Amazon resource name (ARN) that specifies the resource.</p>
|
|
@@ -842,8 +992,14 @@ export interface UntagResourceRequest {
|
|
|
842
992
|
*/
|
|
843
993
|
tagKeys: string[] | undefined;
|
|
844
994
|
}
|
|
995
|
+
/**
|
|
996
|
+
* @public
|
|
997
|
+
*/
|
|
845
998
|
export interface UntagResourceResponse {
|
|
846
999
|
}
|
|
1000
|
+
/**
|
|
1001
|
+
* @public
|
|
1002
|
+
*/
|
|
847
1003
|
export interface UpdateApplicationRequest {
|
|
848
1004
|
/**
|
|
849
1005
|
* <p>The name or ID of the application that will be updated.</p>
|
|
@@ -861,12 +1017,18 @@ export interface UpdateApplicationRequest {
|
|
|
861
1017
|
*/
|
|
862
1018
|
description?: string;
|
|
863
1019
|
}
|
|
1020
|
+
/**
|
|
1021
|
+
* @public
|
|
1022
|
+
*/
|
|
864
1023
|
export interface UpdateApplicationResponse {
|
|
865
1024
|
/**
|
|
866
1025
|
* <p>The updated information of the application.</p>
|
|
867
1026
|
*/
|
|
868
1027
|
application?: Application;
|
|
869
1028
|
}
|
|
1029
|
+
/**
|
|
1030
|
+
* @public
|
|
1031
|
+
*/
|
|
870
1032
|
export interface UpdateAttributeGroupRequest {
|
|
871
1033
|
/**
|
|
872
1034
|
* <p>The name or ID of the attribute group that holds the attributes to describe the application.</p>
|
|
@@ -888,6 +1050,9 @@ export interface UpdateAttributeGroupRequest {
|
|
|
888
1050
|
*/
|
|
889
1051
|
attributes?: string;
|
|
890
1052
|
}
|
|
1053
|
+
/**
|
|
1054
|
+
* @public
|
|
1055
|
+
*/
|
|
891
1056
|
export interface UpdateAttributeGroupResponse {
|
|
892
1057
|
/**
|
|
893
1058
|
* <p>The updated information of the attribute group.</p>
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { ServiceCatalogAppRegistryClient } from "../ServiceCatalogAppRegistryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface ServiceCatalogAppRegistryPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: ServiceCatalogAppRegistryClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
3
|
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplications(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
|
|
3
3
|
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAssociatedAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
|
|
3
3
|
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAssociatedResources(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedResourcesCommandInput, ...additionalArguments: any): Paginator<ListAssociatedResourcesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
|
|
3
3
|
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAttributeGroupsForApplication(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsForApplicationCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
|
|
3
3
|
import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsCommandOutput>;
|