@aws-sdk/client-service-catalog-appregistry 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -5,6 +5,7 @@
5
5
  */
6
6
  export * from "./ServiceCatalogAppRegistryClient";
7
7
  export * from "./ServiceCatalogAppRegistry";
8
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
8
9
  export * from "./commands";
9
10
  export * from "./pagination";
10
11
  export * from "./models";
@@ -7,30 +7,37 @@ import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./
7
7
  */
8
8
  export interface Application {
9
9
  /**
10
+ * @public
10
11
  * <p>The identifier of the application.</p>
11
12
  */
12
13
  id?: string;
13
14
  /**
15
+ * @public
14
16
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
15
17
  */
16
18
  arn?: string;
17
19
  /**
20
+ * @public
18
21
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
19
22
  */
20
23
  name?: string;
21
24
  /**
25
+ * @public
22
26
  * <p>The description of the application.</p>
23
27
  */
24
28
  description?: string;
25
29
  /**
30
+ * @public
26
31
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
27
32
  */
28
33
  creationTime?: Date;
29
34
  /**
35
+ * @public
30
36
  * <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
31
37
  */
32
38
  lastUpdateTime?: Date;
33
39
  /**
40
+ * @public
34
41
  * <p>Key-value pairs you can use to associate with the application.</p>
35
42
  */
36
43
  tags?: Record<string, string>;
@@ -41,26 +48,32 @@ export interface Application {
41
48
  */
42
49
  export interface ApplicationSummary {
43
50
  /**
51
+ * @public
44
52
  * <p>The identifier of the application.</p>
45
53
  */
46
54
  id?: string;
47
55
  /**
56
+ * @public
48
57
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
49
58
  */
50
59
  arn?: string;
51
60
  /**
61
+ * @public
52
62
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
53
63
  */
54
64
  name?: string;
55
65
  /**
66
+ * @public
56
67
  * <p>The description of the application.</p>
57
68
  */
58
69
  description?: string;
59
70
  /**
71
+ * @public
60
72
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
61
73
  */
62
74
  creationTime?: Date;
63
75
  /**
76
+ * @public
64
77
  * <p> The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
65
78
  */
66
79
  lastUpdateTime?: Date;
@@ -77,6 +90,7 @@ export interface ApplicationSummary {
77
90
  */
78
91
  export interface TagQueryConfiguration {
79
92
  /**
93
+ * @public
80
94
  * <p>
81
95
  * Condition
82
96
  * in the IAM policy
@@ -95,6 +109,7 @@ export interface TagQueryConfiguration {
95
109
  */
96
110
  export interface AppRegistryConfiguration {
97
111
  /**
112
+ * @public
98
113
  * <p>
99
114
  * Includes the definition
100
115
  * of a <code>tagQuery</code>.
@@ -107,6 +122,7 @@ export interface AppRegistryConfiguration {
107
122
  */
108
123
  export interface AssociateAttributeGroupRequest {
109
124
  /**
125
+ * @public
110
126
  * <p>
111
127
  * The name, ID, or ARN
112
128
  * of the application.
@@ -114,6 +130,7 @@ export interface AssociateAttributeGroupRequest {
114
130
  */
115
131
  application: string | undefined;
116
132
  /**
133
+ * @public
117
134
  * <p>
118
135
  * The name, ID, or ARN
119
136
  * of the attribute group
@@ -128,10 +145,12 @@ export interface AssociateAttributeGroupRequest {
128
145
  */
129
146
  export interface AssociateAttributeGroupResponse {
130
147
  /**
148
+ * @public
131
149
  * <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
132
150
  */
133
151
  applicationArn?: string;
134
152
  /**
153
+ * @public
135
154
  * <p>The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.</p>
136
155
  */
137
156
  attributeGroupArn?: string;
@@ -217,6 +236,7 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
217
236
  */
218
237
  export interface AssociateResourceRequest {
219
238
  /**
239
+ * @public
220
240
  * <p>
221
241
  * The name, ID, or ARN
222
242
  * of the application.
@@ -224,10 +244,12 @@ export interface AssociateResourceRequest {
224
244
  */
225
245
  application: string | undefined;
226
246
  /**
247
+ * @public
227
248
  * <p>The type of resource of which the application will be associated.</p>
228
249
  */
229
250
  resourceType: ResourceType | string | undefined;
230
251
  /**
252
+ * @public
231
253
  * <p>The name or ID of the resource of which the application will be associated.</p>
232
254
  */
233
255
  resource: string | undefined;
@@ -237,10 +259,12 @@ export interface AssociateResourceRequest {
237
259
  */
238
260
  export interface AssociateResourceResponse {
239
261
  /**
262
+ * @public
240
263
  * <p>The Amazon resource name (ARN) of the application that was augmented with attributes.</p>
241
264
  */
242
265
  applicationArn?: string;
243
266
  /**
267
+ * @public
244
268
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
245
269
  */
246
270
  resourceArn?: string;
@@ -257,6 +281,7 @@ export declare class ThrottlingException extends __BaseException {
257
281
  readonly name: "ThrottlingException";
258
282
  readonly $fault: "client";
259
283
  /**
284
+ * @public
260
285
  * <p>The originating service code.</p>
261
286
  */
262
287
  serviceCode?: string;
@@ -271,30 +296,37 @@ export declare class ThrottlingException extends __BaseException {
271
296
  */
272
297
  export interface AttributeGroup {
273
298
  /**
299
+ * @public
274
300
  * <p>The globally unique attribute group identifier of the attribute group.</p>
275
301
  */
276
302
  id?: string;
277
303
  /**
304
+ * @public
278
305
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
279
306
  */
280
307
  arn?: string;
281
308
  /**
309
+ * @public
282
310
  * <p>The name of the attribute group.</p>
283
311
  */
284
312
  name?: string;
285
313
  /**
314
+ * @public
286
315
  * <p>The description of the attribute group that the user provides.</p>
287
316
  */
288
317
  description?: string;
289
318
  /**
319
+ * @public
290
320
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
291
321
  */
292
322
  creationTime?: Date;
293
323
  /**
324
+ * @public
294
325
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
295
326
  */
296
327
  lastUpdateTime?: Date;
297
328
  /**
329
+ * @public
298
330
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
299
331
  */
300
332
  tags?: Record<string, string>;
@@ -307,14 +339,17 @@ export interface AttributeGroup {
307
339
  */
308
340
  export interface AttributeGroupDetails {
309
341
  /**
342
+ * @public
310
343
  * <p>The unique identifier of the attribute group.</p>
311
344
  */
312
345
  id?: string;
313
346
  /**
347
+ * @public
314
348
  * <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
315
349
  */
316
350
  arn?: string;
317
351
  /**
352
+ * @public
318
353
  * @deprecated
319
354
  *
320
355
  * <important>
@@ -330,6 +365,7 @@ export interface AttributeGroupDetails {
330
365
  */
331
366
  name?: string;
332
367
  /**
368
+ * @public
333
369
  * <p>The service principal that created the attribute group.</p>
334
370
  */
335
371
  createdBy?: string;
@@ -340,30 +376,37 @@ export interface AttributeGroupDetails {
340
376
  */
341
377
  export interface AttributeGroupSummary {
342
378
  /**
379
+ * @public
343
380
  * <p>The globally unique attribute group identifier of the attribute group.</p>
344
381
  */
345
382
  id?: string;
346
383
  /**
384
+ * @public
347
385
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
348
386
  */
349
387
  arn?: string;
350
388
  /**
389
+ * @public
351
390
  * <p>The name of the attribute group.</p>
352
391
  */
353
392
  name?: string;
354
393
  /**
394
+ * @public
355
395
  * <p>The description of the attribute group that the user provides.</p>
356
396
  */
357
397
  description?: string;
358
398
  /**
399
+ * @public
359
400
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
360
401
  */
361
402
  creationTime?: Date;
362
403
  /**
404
+ * @public
363
405
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
364
406
  */
365
407
  lastUpdateTime?: Date;
366
408
  /**
409
+ * @public
367
410
  * <p>The service principal that created the attribute group.</p>
368
411
  */
369
412
  createdBy?: string;
@@ -373,18 +416,22 @@ export interface AttributeGroupSummary {
373
416
  */
374
417
  export interface CreateApplicationRequest {
375
418
  /**
419
+ * @public
376
420
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
377
421
  */
378
422
  name: string | undefined;
379
423
  /**
424
+ * @public
380
425
  * <p>The description of the application.</p>
381
426
  */
382
427
  description?: string;
383
428
  /**
429
+ * @public
384
430
  * <p>Key-value pairs you can use to associate with the application.</p>
385
431
  */
386
432
  tags?: Record<string, string>;
387
433
  /**
434
+ * @public
388
435
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
389
436
  * completed successfully using the same client token and the same parameters, the retry succeeds
390
437
  * without performing any further actions. If you retry a successful request using the same
@@ -397,6 +444,7 @@ export interface CreateApplicationRequest {
397
444
  */
398
445
  export interface CreateApplicationResponse {
399
446
  /**
447
+ * @public
400
448
  * <p>Information about the application.</p>
401
449
  */
402
450
  application?: Application;
@@ -406,22 +454,27 @@ export interface CreateApplicationResponse {
406
454
  */
407
455
  export interface CreateAttributeGroupRequest {
408
456
  /**
457
+ * @public
409
458
  * <p>The name of the attribute group.</p>
410
459
  */
411
460
  name: string | undefined;
412
461
  /**
462
+ * @public
413
463
  * <p>The description of the attribute group that the user provides.</p>
414
464
  */
415
465
  description?: string;
416
466
  /**
467
+ * @public
417
468
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
418
469
  */
419
470
  attributes: string | undefined;
420
471
  /**
472
+ * @public
421
473
  * <p>Key-value pairs you can use to associate with the attribute group.</p>
422
474
  */
423
475
  tags?: Record<string, string>;
424
476
  /**
477
+ * @public
425
478
  * <p>A unique identifier that you provide to ensure idempotency. If you retry a request that
426
479
  * completed successfully using the same client token and the same parameters, the retry succeeds
427
480
  * without performing any further actions. If you retry a successful request using the same
@@ -434,6 +487,7 @@ export interface CreateAttributeGroupRequest {
434
487
  */
435
488
  export interface CreateAttributeGroupResponse {
436
489
  /**
490
+ * @public
437
491
  * <p>Information about the attribute group.</p>
438
492
  */
439
493
  attributeGroup?: AttributeGroup;
@@ -443,6 +497,7 @@ export interface CreateAttributeGroupResponse {
443
497
  */
444
498
  export interface DeleteApplicationRequest {
445
499
  /**
500
+ * @public
446
501
  * <p>
447
502
  * The name, ID, or ARN
448
503
  * of the application.
@@ -455,6 +510,7 @@ export interface DeleteApplicationRequest {
455
510
  */
456
511
  export interface DeleteApplicationResponse {
457
512
  /**
513
+ * @public
458
514
  * <p>Information about the deleted application.</p>
459
515
  */
460
516
  application?: ApplicationSummary;
@@ -464,6 +520,7 @@ export interface DeleteApplicationResponse {
464
520
  */
465
521
  export interface DeleteAttributeGroupRequest {
466
522
  /**
523
+ * @public
467
524
  * <p>
468
525
  * The name, ID, or ARN
469
526
  * of the attribute group
@@ -478,6 +535,7 @@ export interface DeleteAttributeGroupRequest {
478
535
  */
479
536
  export interface DeleteAttributeGroupResponse {
480
537
  /**
538
+ * @public
481
539
  * <p>Information about the deleted attribute group.</p>
482
540
  */
483
541
  attributeGroup?: AttributeGroupSummary;
@@ -487,6 +545,7 @@ export interface DeleteAttributeGroupResponse {
487
545
  */
488
546
  export interface DisassociateAttributeGroupRequest {
489
547
  /**
548
+ * @public
490
549
  * <p>
491
550
  * The name, ID, or ARN
492
551
  * of the application.
@@ -494,6 +553,7 @@ export interface DisassociateAttributeGroupRequest {
494
553
  */
495
554
  application: string | undefined;
496
555
  /**
556
+ * @public
497
557
  * <p>
498
558
  * The name, ID, or ARN
499
559
  * of the attribute group
@@ -508,10 +568,12 @@ export interface DisassociateAttributeGroupRequest {
508
568
  */
509
569
  export interface DisassociateAttributeGroupResponse {
510
570
  /**
571
+ * @public
511
572
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
512
573
  */
513
574
  applicationArn?: string;
514
575
  /**
576
+ * @public
515
577
  * <p>The Amazon resource name (ARN) that specifies the attribute group.</p>
516
578
  */
517
579
  attributeGroupArn?: string;
@@ -521,14 +583,17 @@ export interface DisassociateAttributeGroupResponse {
521
583
  */
522
584
  export interface DisassociateResourceRequest {
523
585
  /**
586
+ * @public
524
587
  * <p>The name or ID of the application.</p>
525
588
  */
526
589
  application: string | undefined;
527
590
  /**
591
+ * @public
528
592
  * <p>The type of the resource that is being disassociated.</p>
529
593
  */
530
594
  resourceType: ResourceType | string | undefined;
531
595
  /**
596
+ * @public
532
597
  * <p>The name or ID of the resource.</p>
533
598
  */
534
599
  resource: string | undefined;
@@ -538,10 +603,12 @@ export interface DisassociateResourceRequest {
538
603
  */
539
604
  export interface DisassociateResourceResponse {
540
605
  /**
606
+ * @public
541
607
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
542
608
  */
543
609
  applicationArn?: string;
544
610
  /**
611
+ * @public
545
612
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
546
613
  */
547
614
  resourceArn?: string;
@@ -551,6 +618,7 @@ export interface DisassociateResourceResponse {
551
618
  */
552
619
  export interface GetApplicationRequest {
553
620
  /**
621
+ * @public
554
622
  * <p>
555
623
  * The name, ID, or ARN
556
624
  * of the application.
@@ -580,6 +648,7 @@ export type ResourceGroupState = (typeof ResourceGroupState)[keyof typeof Resour
580
648
  */
581
649
  export interface ResourceGroup {
582
650
  /**
651
+ * @public
583
652
  * <p>The state of the propagation process for the resource group. The states includes:</p>
584
653
  * <p>
585
654
  * <code>CREATING </code>if the resource group is in the process of being created.</p>
@@ -596,10 +665,12 @@ export interface ResourceGroup {
596
665
  */
597
666
  state?: ResourceGroupState | string;
598
667
  /**
668
+ * @public
599
669
  * <p>The Amazon resource name (ARN) of the resource group.</p>
600
670
  */
601
671
  arn?: string;
602
672
  /**
673
+ * @public
603
674
  * <p>The error message that generates when the propagation process for the resource group fails.</p>
604
675
  */
605
676
  errorMessage?: string;
@@ -610,6 +681,7 @@ export interface ResourceGroup {
610
681
  */
611
682
  export interface Integrations {
612
683
  /**
684
+ * @public
613
685
  * <p> The information about the resource group integration.</p>
614
686
  */
615
687
  resourceGroup?: ResourceGroup;
@@ -619,38 +691,47 @@ export interface Integrations {
619
691
  */
620
692
  export interface GetApplicationResponse {
621
693
  /**
694
+ * @public
622
695
  * <p>The identifier of the application.</p>
623
696
  */
624
697
  id?: string;
625
698
  /**
699
+ * @public
626
700
  * <p>The Amazon resource name (ARN) that specifies the application across services.</p>
627
701
  */
628
702
  arn?: string;
629
703
  /**
704
+ * @public
630
705
  * <p>The name of the application. The name must be unique in the region in which you are creating the application.</p>
631
706
  */
632
707
  name?: string;
633
708
  /**
709
+ * @public
634
710
  * <p>The description of the application.</p>
635
711
  */
636
712
  description?: string;
637
713
  /**
714
+ * @public
638
715
  * <p>The ISO-8601 formatted timestamp of the moment when the application was created.</p>
639
716
  */
640
717
  creationTime?: Date;
641
718
  /**
719
+ * @public
642
720
  * <p>The ISO-8601 formatted timestamp of the moment when the application was last updated.</p>
643
721
  */
644
722
  lastUpdateTime?: Date;
645
723
  /**
724
+ * @public
646
725
  * <p>The number of top-level resources that were registered as part of this application.</p>
647
726
  */
648
727
  associatedResourceCount?: number;
649
728
  /**
729
+ * @public
650
730
  * <p>Key-value pairs associated with the application.</p>
651
731
  */
652
732
  tags?: Record<string, string>;
653
733
  /**
734
+ * @public
654
735
  * <p>
655
736
  * The information
656
737
  * about the integration
@@ -667,6 +748,7 @@ export interface GetApplicationResponse {
667
748
  */
668
749
  export interface GetAssociatedResourceRequest {
669
750
  /**
751
+ * @public
670
752
  * <p>
671
753
  * The name, ID, or ARN
672
754
  * of the application.
@@ -674,10 +756,12 @@ export interface GetAssociatedResourceRequest {
674
756
  */
675
757
  application: string | undefined;
676
758
  /**
759
+ * @public
677
760
  * <p>The type of resource associated with the application.</p>
678
761
  */
679
762
  resourceType: ResourceType | string | undefined;
680
763
  /**
764
+ * @public
681
765
  * <p>The name or ID of the resource associated with the application.</p>
682
766
  */
683
767
  resource: string | undefined;
@@ -688,6 +772,7 @@ export interface GetAssociatedResourceRequest {
688
772
  */
689
773
  export interface ResourceIntegrations {
690
774
  /**
775
+ * @public
691
776
  * <p>The information about the integration of Resource Groups.</p>
692
777
  */
693
778
  resourceGroup?: ResourceGroup;
@@ -698,18 +783,22 @@ export interface ResourceIntegrations {
698
783
  */
699
784
  export interface Resource {
700
785
  /**
786
+ * @public
701
787
  * <p>The name of the resource.</p>
702
788
  */
703
789
  name?: string;
704
790
  /**
791
+ * @public
705
792
  * <p>The Amazon resource name (ARN) of the resource.</p>
706
793
  */
707
794
  arn?: string;
708
795
  /**
796
+ * @public
709
797
  * <p>The time the resource was associated with the application.</p>
710
798
  */
711
799
  associationTime?: Date;
712
800
  /**
801
+ * @public
713
802
  * <p>The service integration information about the resource.
714
803
  * </p>
715
804
  */
@@ -720,6 +809,7 @@ export interface Resource {
720
809
  */
721
810
  export interface GetAssociatedResourceResponse {
722
811
  /**
812
+ * @public
723
813
  * <p>The resource associated with the application.</p>
724
814
  */
725
815
  resource?: Resource;
@@ -729,6 +819,7 @@ export interface GetAssociatedResourceResponse {
729
819
  */
730
820
  export interface GetAttributeGroupRequest {
731
821
  /**
822
+ * @public
732
823
  * <p>
733
824
  * The name, ID, or ARN
734
825
  * of the attribute group
@@ -743,38 +834,47 @@ export interface GetAttributeGroupRequest {
743
834
  */
744
835
  export interface GetAttributeGroupResponse {
745
836
  /**
837
+ * @public
746
838
  * <p>The identifier of the attribute group.</p>
747
839
  */
748
840
  id?: string;
749
841
  /**
842
+ * @public
750
843
  * <p>The Amazon resource name (ARN) that specifies the attribute group across services.</p>
751
844
  */
752
845
  arn?: string;
753
846
  /**
847
+ * @public
754
848
  * <p>The name of the attribute group.</p>
755
849
  */
756
850
  name?: string;
757
851
  /**
852
+ * @public
758
853
  * <p>The description of the attribute group that the user provides.</p>
759
854
  */
760
855
  description?: string;
761
856
  /**
857
+ * @public
762
858
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
763
859
  */
764
860
  attributes?: string;
765
861
  /**
862
+ * @public
766
863
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was created.</p>
767
864
  */
768
865
  creationTime?: Date;
769
866
  /**
867
+ * @public
770
868
  * <p>The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.</p>
771
869
  */
772
870
  lastUpdateTime?: Date;
773
871
  /**
872
+ * @public
774
873
  * <p>Key-value pairs associated with the attribute group.</p>
775
874
  */
776
875
  tags?: Record<string, string>;
777
876
  /**
877
+ * @public
778
878
  * <p>The service principal that created the attribute group.</p>
779
879
  */
780
880
  createdBy?: string;
@@ -784,6 +884,7 @@ export interface GetAttributeGroupResponse {
784
884
  */
785
885
  export interface GetConfigurationResponse {
786
886
  /**
887
+ * @public
787
888
  * <p>
788
889
  * Retrieves <code>TagKey</code> configuration
789
890
  * from an account.
@@ -796,10 +897,12 @@ export interface GetConfigurationResponse {
796
897
  */
797
898
  export interface ListApplicationsRequest {
798
899
  /**
900
+ * @public
799
901
  * <p>The token to use to get the next page of results after a previous API call. </p>
800
902
  */
801
903
  nextToken?: string;
802
904
  /**
905
+ * @public
803
906
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
804
907
  */
805
908
  maxResults?: number;
@@ -809,10 +912,12 @@ export interface ListApplicationsRequest {
809
912
  */
810
913
  export interface ListApplicationsResponse {
811
914
  /**
915
+ * @public
812
916
  * <p>This list of applications.</p>
813
917
  */
814
918
  applications?: ApplicationSummary[];
815
919
  /**
920
+ * @public
816
921
  * <p>The token to use to get the next page of results after a previous API call. </p>
817
922
  */
818
923
  nextToken?: string;
@@ -822,14 +927,17 @@ export interface ListApplicationsResponse {
822
927
  */
823
928
  export interface ListAssociatedAttributeGroupsRequest {
824
929
  /**
930
+ * @public
825
931
  * <p>The name or ID of the application.</p>
826
932
  */
827
933
  application: string | undefined;
828
934
  /**
935
+ * @public
829
936
  * <p>The token to use to get the next page of results after a previous API call. </p>
830
937
  */
831
938
  nextToken?: string;
832
939
  /**
940
+ * @public
833
941
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
834
942
  */
835
943
  maxResults?: number;
@@ -839,10 +947,12 @@ export interface ListAssociatedAttributeGroupsRequest {
839
947
  */
840
948
  export interface ListAssociatedAttributeGroupsResponse {
841
949
  /**
950
+ * @public
842
951
  * <p>A list of attribute group IDs.</p>
843
952
  */
844
953
  attributeGroups?: string[];
845
954
  /**
955
+ * @public
846
956
  * <p>The token to use to get the next page of results after a previous API call. </p>
847
957
  */
848
958
  nextToken?: string;
@@ -852,6 +962,7 @@ export interface ListAssociatedAttributeGroupsResponse {
852
962
  */
853
963
  export interface ListAssociatedResourcesRequest {
854
964
  /**
965
+ * @public
855
966
  * <p>
856
967
  * The name, ID, or ARN
857
968
  * of the application.
@@ -859,10 +970,12 @@ export interface ListAssociatedResourcesRequest {
859
970
  */
860
971
  application: string | undefined;
861
972
  /**
973
+ * @public
862
974
  * <p>The token to use to get the next page of results after a previous API call. </p>
863
975
  */
864
976
  nextToken?: string;
865
977
  /**
978
+ * @public
866
979
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
867
980
  */
868
981
  maxResults?: number;
@@ -878,6 +991,7 @@ export interface ListAssociatedResourcesRequest {
878
991
  */
879
992
  export interface ResourceDetails {
880
993
  /**
994
+ * @public
881
995
  * <p>The value of the tag.</p>
882
996
  */
883
997
  tagValue?: string;
@@ -888,14 +1002,17 @@ export interface ResourceDetails {
888
1002
  */
889
1003
  export interface ResourceInfo {
890
1004
  /**
1005
+ * @public
891
1006
  * <p>The name of the resource.</p>
892
1007
  */
893
1008
  name?: string;
894
1009
  /**
1010
+ * @public
895
1011
  * <p>The Amazon resource name (ARN) that specifies the resource across services.</p>
896
1012
  */
897
1013
  arn?: string;
898
1014
  /**
1015
+ * @public
899
1016
  * <p>
900
1017
  * Provides information
901
1018
  * about the Service Catalog App Registry resource type.
@@ -903,6 +1020,7 @@ export interface ResourceInfo {
903
1020
  */
904
1021
  resourceType?: ResourceType | string;
905
1022
  /**
1023
+ * @public
906
1024
  * <p>
907
1025
  * The details related
908
1026
  * to
@@ -916,10 +1034,12 @@ export interface ResourceInfo {
916
1034
  */
917
1035
  export interface ListAssociatedResourcesResponse {
918
1036
  /**
1037
+ * @public
919
1038
  * <p>Information about the resources.</p>
920
1039
  */
921
1040
  resources?: ResourceInfo[];
922
1041
  /**
1042
+ * @public
923
1043
  * <p>The token to use to get the next page of results after a previous API call. </p>
924
1044
  */
925
1045
  nextToken?: string;
@@ -929,10 +1049,12 @@ export interface ListAssociatedResourcesResponse {
929
1049
  */
930
1050
  export interface ListAttributeGroupsRequest {
931
1051
  /**
1052
+ * @public
932
1053
  * <p>The token to use to get the next page of results after a previous API call. </p>
933
1054
  */
934
1055
  nextToken?: string;
935
1056
  /**
1057
+ * @public
936
1058
  * <p>The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.</p>
937
1059
  */
938
1060
  maxResults?: number;
@@ -942,10 +1064,12 @@ export interface ListAttributeGroupsRequest {
942
1064
  */
943
1065
  export interface ListAttributeGroupsResponse {
944
1066
  /**
1067
+ * @public
945
1068
  * <p>This list of attribute groups.</p>
946
1069
  */
947
1070
  attributeGroups?: AttributeGroupSummary[];
948
1071
  /**
1072
+ * @public
949
1073
  * <p>The token to use to get the next page of results after a previous API call. </p>
950
1074
  */
951
1075
  nextToken?: string;
@@ -955,14 +1079,17 @@ export interface ListAttributeGroupsResponse {
955
1079
  */
956
1080
  export interface ListAttributeGroupsForApplicationRequest {
957
1081
  /**
1082
+ * @public
958
1083
  * <p>The name or ID of the application.</p>
959
1084
  */
960
1085
  application: string | undefined;
961
1086
  /**
1087
+ * @public
962
1088
  * <p>This token retrieves the next page of results after a previous API call.</p>
963
1089
  */
964
1090
  nextToken?: string;
965
1091
  /**
1092
+ * @public
966
1093
  * <p>The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.</p>
967
1094
  */
968
1095
  maxResults?: number;
@@ -972,10 +1099,12 @@ export interface ListAttributeGroupsForApplicationRequest {
972
1099
  */
973
1100
  export interface ListAttributeGroupsForApplicationResponse {
974
1101
  /**
1102
+ * @public
975
1103
  * <p> The details related to a specific attribute group. </p>
976
1104
  */
977
1105
  attributeGroupsDetails?: AttributeGroupDetails[];
978
1106
  /**
1107
+ * @public
979
1108
  * <p>The token to use to get the next page of results after a previous API call.</p>
980
1109
  */
981
1110
  nextToken?: string;
@@ -985,6 +1114,7 @@ export interface ListAttributeGroupsForApplicationResponse {
985
1114
  */
986
1115
  export interface ListTagsForResourceRequest {
987
1116
  /**
1117
+ * @public
988
1118
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
989
1119
  */
990
1120
  resourceArn: string | undefined;
@@ -994,6 +1124,7 @@ export interface ListTagsForResourceRequest {
994
1124
  */
995
1125
  export interface ListTagsForResourceResponse {
996
1126
  /**
1127
+ * @public
997
1128
  * <p>The tags on the resource.</p>
998
1129
  */
999
1130
  tags?: Record<string, string>;
@@ -1003,6 +1134,7 @@ export interface ListTagsForResourceResponse {
1003
1134
  */
1004
1135
  export interface PutConfigurationRequest {
1005
1136
  /**
1137
+ * @public
1006
1138
  * <p>
1007
1139
  * Associates a <code>TagKey</code> configuration
1008
1140
  * to an account.
@@ -1015,10 +1147,12 @@ export interface PutConfigurationRequest {
1015
1147
  */
1016
1148
  export interface SyncResourceRequest {
1017
1149
  /**
1150
+ * @public
1018
1151
  * <p>The type of resource of which the application will be associated.</p>
1019
1152
  */
1020
1153
  resourceType: ResourceType | string | undefined;
1021
1154
  /**
1155
+ * @public
1022
1156
  * <p>An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an Amazon Web Services CloudFormation stack, or an Amazon S3 bucket.</p>
1023
1157
  */
1024
1158
  resource: string | undefined;
@@ -1040,14 +1174,17 @@ export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
1040
1174
  */
1041
1175
  export interface SyncResourceResponse {
1042
1176
  /**
1177
+ * @public
1043
1178
  * <p>The Amazon resource name (ARN) that specifies the application.</p>
1044
1179
  */
1045
1180
  applicationArn?: string;
1046
1181
  /**
1182
+ * @public
1047
1183
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
1048
1184
  */
1049
1185
  resourceArn?: string;
1050
1186
  /**
1187
+ * @public
1051
1188
  * <p>The results of the output if an application is associated with an ARN value, which could be <code>syncStarted</code> or None.</p>
1052
1189
  */
1053
1190
  actionTaken?: SyncAction | string;
@@ -1057,10 +1194,12 @@ export interface SyncResourceResponse {
1057
1194
  */
1058
1195
  export interface TagResourceRequest {
1059
1196
  /**
1197
+ * @public
1060
1198
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
1061
1199
  */
1062
1200
  resourceArn: string | undefined;
1063
1201
  /**
1202
+ * @public
1064
1203
  * <p>The new or modified tags for the resource.</p>
1065
1204
  */
1066
1205
  tags: Record<string, string> | undefined;
@@ -1075,10 +1214,12 @@ export interface TagResourceResponse {
1075
1214
  */
1076
1215
  export interface UntagResourceRequest {
1077
1216
  /**
1217
+ * @public
1078
1218
  * <p>The Amazon resource name (ARN) that specifies the resource.</p>
1079
1219
  */
1080
1220
  resourceArn: string | undefined;
1081
1221
  /**
1222
+ * @public
1082
1223
  * <p>A list of the tag keys to remove from the specified resource.</p>
1083
1224
  */
1084
1225
  tagKeys: string[] | undefined;
@@ -1093,6 +1234,7 @@ export interface UntagResourceResponse {
1093
1234
  */
1094
1235
  export interface UpdateApplicationRequest {
1095
1236
  /**
1237
+ * @public
1096
1238
  * <p>
1097
1239
  * The name, ID, or ARN
1098
1240
  * of the application
@@ -1101,6 +1243,7 @@ export interface UpdateApplicationRequest {
1101
1243
  */
1102
1244
  application: string | undefined;
1103
1245
  /**
1246
+ * @public
1104
1247
  * @deprecated
1105
1248
  *
1106
1249
  * <p>Deprecated: The new name of the application. The name must be unique in the region in which you are
@@ -1108,6 +1251,7 @@ export interface UpdateApplicationRequest {
1108
1251
  */
1109
1252
  name?: string;
1110
1253
  /**
1254
+ * @public
1111
1255
  * <p>The new description of the application.</p>
1112
1256
  */
1113
1257
  description?: string;
@@ -1117,6 +1261,7 @@ export interface UpdateApplicationRequest {
1117
1261
  */
1118
1262
  export interface UpdateApplicationResponse {
1119
1263
  /**
1264
+ * @public
1120
1265
  * <p>The updated information of the application.</p>
1121
1266
  */
1122
1267
  application?: Application;
@@ -1126,6 +1271,7 @@ export interface UpdateApplicationResponse {
1126
1271
  */
1127
1272
  export interface UpdateAttributeGroupRequest {
1128
1273
  /**
1274
+ * @public
1129
1275
  * <p>
1130
1276
  * The name, ID, or ARN
1131
1277
  * of the attribute group
@@ -1135,6 +1281,7 @@ export interface UpdateAttributeGroupRequest {
1135
1281
  */
1136
1282
  attributeGroup: string | undefined;
1137
1283
  /**
1284
+ * @public
1138
1285
  * @deprecated
1139
1286
  *
1140
1287
  * <p>Deprecated: The new name of the attribute group. The name must be unique in the region in which you are
@@ -1142,10 +1289,12 @@ export interface UpdateAttributeGroupRequest {
1142
1289
  */
1143
1290
  name?: string;
1144
1291
  /**
1292
+ * @public
1145
1293
  * <p>The description of the attribute group that the user provides.</p>
1146
1294
  */
1147
1295
  description?: string;
1148
1296
  /**
1297
+ * @public
1149
1298
  * <p>A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.</p>
1150
1299
  */
1151
1300
  attributes?: string;
@@ -1155,6 +1304,7 @@ export interface UpdateAttributeGroupRequest {
1155
1304
  */
1156
1305
  export interface UpdateAttributeGroupResponse {
1157
1306
  /**
1307
+ * @public
1158
1308
  * <p>The updated information of the attribute group.</p>
1159
1309
  */
1160
1310
  attributeGroup?: AttributeGroup;
@@ -1,5 +1,6 @@
1
1
  export * from "./ServiceCatalogAppRegistryClient";
2
2
  export * from "./ServiceCatalogAppRegistry";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
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.378.0",
4
+ "version": "3.382.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",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",