servicecatalog.d.ts
176 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class ServiceCatalog extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: ServiceCatalog.Types.ClientConfiguration)
config: Config & ServiceCatalog.Types.ClientConfiguration;
/**
* Accepts an offer to share the specified portfolio.
*/
acceptPortfolioShare(params: ServiceCatalog.Types.AcceptPortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AcceptPortfolioShareOutput) => void): Request<ServiceCatalog.Types.AcceptPortfolioShareOutput, AWSError>;
/**
* Accepts an offer to share the specified portfolio.
*/
acceptPortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.AcceptPortfolioShareOutput) => void): Request<ServiceCatalog.Types.AcceptPortfolioShareOutput, AWSError>;
/**
* Associates the specified budget with the specified resource.
*/
associateBudgetWithResource(params: ServiceCatalog.Types.AssociateBudgetWithResourceInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateBudgetWithResourceOutput) => void): Request<ServiceCatalog.Types.AssociateBudgetWithResourceOutput, AWSError>;
/**
* Associates the specified budget with the specified resource.
*/
associateBudgetWithResource(callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateBudgetWithResourceOutput) => void): Request<ServiceCatalog.Types.AssociateBudgetWithResourceOutput, AWSError>;
/**
* Associates the specified principal ARN with the specified portfolio.
*/
associatePrincipalWithPortfolio(params: ServiceCatalog.Types.AssociatePrincipalWithPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AssociatePrincipalWithPortfolioOutput) => void): Request<ServiceCatalog.Types.AssociatePrincipalWithPortfolioOutput, AWSError>;
/**
* Associates the specified principal ARN with the specified portfolio.
*/
associatePrincipalWithPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.AssociatePrincipalWithPortfolioOutput) => void): Request<ServiceCatalog.Types.AssociatePrincipalWithPortfolioOutput, AWSError>;
/**
* Associates the specified product with the specified portfolio.
*/
associateProductWithPortfolio(params: ServiceCatalog.Types.AssociateProductWithPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateProductWithPortfolioOutput) => void): Request<ServiceCatalog.Types.AssociateProductWithPortfolioOutput, AWSError>;
/**
* Associates the specified product with the specified portfolio.
*/
associateProductWithPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateProductWithPortfolioOutput) => void): Request<ServiceCatalog.Types.AssociateProductWithPortfolioOutput, AWSError>;
/**
* Associates a self-service action with a provisioning artifact.
*/
associateServiceActionWithProvisioningArtifact(params: ServiceCatalog.Types.AssociateServiceActionWithProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateServiceActionWithProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.AssociateServiceActionWithProvisioningArtifactOutput, AWSError>;
/**
* Associates a self-service action with a provisioning artifact.
*/
associateServiceActionWithProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateServiceActionWithProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.AssociateServiceActionWithProvisioningArtifactOutput, AWSError>;
/**
* Associate the specified TagOption with the specified portfolio or product.
*/
associateTagOptionWithResource(params: ServiceCatalog.Types.AssociateTagOptionWithResourceInput, callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateTagOptionWithResourceOutput) => void): Request<ServiceCatalog.Types.AssociateTagOptionWithResourceOutput, AWSError>;
/**
* Associate the specified TagOption with the specified portfolio or product.
*/
associateTagOptionWithResource(callback?: (err: AWSError, data: ServiceCatalog.Types.AssociateTagOptionWithResourceOutput) => void): Request<ServiceCatalog.Types.AssociateTagOptionWithResourceOutput, AWSError>;
/**
* Associates multiple self-service actions with provisioning artifacts.
*/
batchAssociateServiceActionWithProvisioningArtifact(params: ServiceCatalog.Types.BatchAssociateServiceActionWithProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.BatchAssociateServiceActionWithProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.BatchAssociateServiceActionWithProvisioningArtifactOutput, AWSError>;
/**
* Associates multiple self-service actions with provisioning artifacts.
*/
batchAssociateServiceActionWithProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.BatchAssociateServiceActionWithProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.BatchAssociateServiceActionWithProvisioningArtifactOutput, AWSError>;
/**
* Disassociates a batch of self-service actions from the specified provisioning artifact.
*/
batchDisassociateServiceActionFromProvisioningArtifact(params: ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput, AWSError>;
/**
* Disassociates a batch of self-service actions from the specified provisioning artifact.
*/
batchDisassociateServiceActionFromProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput, AWSError>;
/**
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same region or another region. This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus.
*/
copyProduct(params: ServiceCatalog.Types.CopyProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CopyProductOutput) => void): Request<ServiceCatalog.Types.CopyProductOutput, AWSError>;
/**
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same region or another region. This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus.
*/
copyProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.CopyProductOutput) => void): Request<ServiceCatalog.Types.CopyProductOutput, AWSError>;
/**
* Creates a constraint.
*/
createConstraint(params: ServiceCatalog.Types.CreateConstraintInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateConstraintOutput) => void): Request<ServiceCatalog.Types.CreateConstraintOutput, AWSError>;
/**
* Creates a constraint.
*/
createConstraint(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateConstraintOutput) => void): Request<ServiceCatalog.Types.CreateConstraintOutput, AWSError>;
/**
* Creates a portfolio.
*/
createPortfolio(params: ServiceCatalog.Types.CreatePortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioOutput, AWSError>;
/**
* Creates a portfolio.
*/
createPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioOutput, AWSError>;
/**
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the master account of an Organization. AWSOrganizationsAccess must be enabled in order to create a portfolio share to an organization node.
*/
createPortfolioShare(params: ServiceCatalog.Types.CreatePortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioShareOutput, AWSError>;
/**
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the master account of an Organization. AWSOrganizationsAccess must be enabled in order to create a portfolio share to an organization node.
*/
createPortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioShareOutput, AWSError>;
/**
* Creates a product.
*/
createProduct(params: ServiceCatalog.Types.CreateProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProductOutput) => void): Request<ServiceCatalog.Types.CreateProductOutput, AWSError>;
/**
* Creates a product.
*/
createProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProductOutput) => void): Request<ServiceCatalog.Types.CreateProductOutput, AWSError>;
/**
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan per provisioned product. To create a plan for an existing provisioned product, the product status must be AVAILBLE or TAINTED. To view the resource changes in the change set, use DescribeProvisionedProductPlan. To create or modify the provisioned product, use ExecuteProvisionedProductPlan.
*/
createProvisionedProductPlan(params: ServiceCatalog.Types.CreateProvisionedProductPlanInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.CreateProvisionedProductPlanOutput, AWSError>;
/**
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan per provisioned product. To create a plan for an existing provisioned product, the product status must be AVAILBLE or TAINTED. To view the resource changes in the change set, use DescribeProvisionedProductPlan. To create or modify the provisioned product, use ExecuteProvisionedProductPlan.
*/
createProvisionedProductPlan(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.CreateProvisionedProductPlanOutput, AWSError>;
/**
* Creates a provisioning artifact (also known as a version) for the specified product. You cannot create a provisioning artifact for a product that was shared with you.
*/
createProvisioningArtifact(params: ServiceCatalog.Types.CreateProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.CreateProvisioningArtifactOutput, AWSError>;
/**
* Creates a provisioning artifact (also known as a version) for the specified product. You cannot create a provisioning artifact for a product that was shared with you.
*/
createProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.CreateProvisioningArtifactOutput, AWSError>;
/**
* Creates a self-service action.
*/
createServiceAction(params: ServiceCatalog.Types.CreateServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateServiceActionOutput) => void): Request<ServiceCatalog.Types.CreateServiceActionOutput, AWSError>;
/**
* Creates a self-service action.
*/
createServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateServiceActionOutput) => void): Request<ServiceCatalog.Types.CreateServiceActionOutput, AWSError>;
/**
* Creates a TagOption.
*/
createTagOption(params: ServiceCatalog.Types.CreateTagOptionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateTagOptionOutput) => void): Request<ServiceCatalog.Types.CreateTagOptionOutput, AWSError>;
/**
* Creates a TagOption.
*/
createTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateTagOptionOutput) => void): Request<ServiceCatalog.Types.CreateTagOptionOutput, AWSError>;
/**
* Deletes the specified constraint.
*/
deleteConstraint(params: ServiceCatalog.Types.DeleteConstraintInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteConstraintOutput) => void): Request<ServiceCatalog.Types.DeleteConstraintOutput, AWSError>;
/**
* Deletes the specified constraint.
*/
deleteConstraint(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteConstraintOutput) => void): Request<ServiceCatalog.Types.DeleteConstraintOutput, AWSError>;
/**
* Deletes the specified portfolio. You cannot delete a portfolio if it was shared with you or if it has associated products, users, constraints, or shared accounts.
*/
deletePortfolio(params: ServiceCatalog.Types.DeletePortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioOutput, AWSError>;
/**
* Deletes the specified portfolio. You cannot delete a portfolio if it was shared with you or if it has associated products, users, constraints, or shared accounts.
*/
deletePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioOutput, AWSError>;
/**
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the master account of an Organization.
*/
deletePortfolioShare(params: ServiceCatalog.Types.DeletePortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioShareOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioShareOutput, AWSError>;
/**
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the master account of an Organization.
*/
deletePortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioShareOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioShareOutput, AWSError>;
/**
* Deletes the specified product. You cannot delete a product if it was shared with you or is associated with a portfolio.
*/
deleteProduct(params: ServiceCatalog.Types.DeleteProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProductOutput) => void): Request<ServiceCatalog.Types.DeleteProductOutput, AWSError>;
/**
* Deletes the specified product. You cannot delete a product if it was shared with you or is associated with a portfolio.
*/
deleteProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProductOutput) => void): Request<ServiceCatalog.Types.DeleteProductOutput, AWSError>;
/**
* Deletes the specified plan.
*/
deleteProvisionedProductPlan(params: ServiceCatalog.Types.DeleteProvisionedProductPlanInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.DeleteProvisionedProductPlanOutput, AWSError>;
/**
* Deletes the specified plan.
*/
deleteProvisionedProductPlan(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.DeleteProvisionedProductPlanOutput, AWSError>;
/**
* Deletes the specified provisioning artifact (also known as a version) for the specified product. You cannot delete a provisioning artifact associated with a product that was shared with you. You cannot delete the last provisioning artifact for a product, because a product must have at least one provisioning artifact.
*/
deleteProvisioningArtifact(params: ServiceCatalog.Types.DeleteProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DeleteProvisioningArtifactOutput, AWSError>;
/**
* Deletes the specified provisioning artifact (also known as a version) for the specified product. You cannot delete a provisioning artifact associated with a product that was shared with you. You cannot delete the last provisioning artifact for a product, because a product must have at least one provisioning artifact.
*/
deleteProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DeleteProvisioningArtifactOutput, AWSError>;
/**
* Deletes a self-service action.
*/
deleteServiceAction(params: ServiceCatalog.Types.DeleteServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteServiceActionOutput) => void): Request<ServiceCatalog.Types.DeleteServiceActionOutput, AWSError>;
/**
* Deletes a self-service action.
*/
deleteServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteServiceActionOutput) => void): Request<ServiceCatalog.Types.DeleteServiceActionOutput, AWSError>;
/**
* Deletes the specified TagOption. You cannot delete a TagOption if it is associated with a product or portfolio.
*/
deleteTagOption(params: ServiceCatalog.Types.DeleteTagOptionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteTagOptionOutput) => void): Request<ServiceCatalog.Types.DeleteTagOptionOutput, AWSError>;
/**
* Deletes the specified TagOption. You cannot delete a TagOption if it is associated with a product or portfolio.
*/
deleteTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.DeleteTagOptionOutput) => void): Request<ServiceCatalog.Types.DeleteTagOptionOutput, AWSError>;
/**
* Gets information about the specified constraint.
*/
describeConstraint(params: ServiceCatalog.Types.DescribeConstraintInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeConstraintOutput) => void): Request<ServiceCatalog.Types.DescribeConstraintOutput, AWSError>;
/**
* Gets information about the specified constraint.
*/
describeConstraint(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeConstraintOutput) => void): Request<ServiceCatalog.Types.DescribeConstraintOutput, AWSError>;
/**
* Gets the status of the specified copy product operation.
*/
describeCopyProductStatus(params: ServiceCatalog.Types.DescribeCopyProductStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeCopyProductStatusOutput) => void): Request<ServiceCatalog.Types.DescribeCopyProductStatusOutput, AWSError>;
/**
* Gets the status of the specified copy product operation.
*/
describeCopyProductStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeCopyProductStatusOutput) => void): Request<ServiceCatalog.Types.DescribeCopyProductStatusOutput, AWSError>;
/**
* Gets information about the specified portfolio.
*/
describePortfolio(params: ServiceCatalog.Types.DescribePortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioOutput, AWSError>;
/**
* Gets information about the specified portfolio.
*/
describePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioOutput, AWSError>;
/**
* Gets the status of the specified portfolio share operation. This API can only be called by the master account in the organization.
*/
describePortfolioShareStatus(params: ServiceCatalog.Types.DescribePortfolioShareStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioShareStatusOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioShareStatusOutput, AWSError>;
/**
* Gets the status of the specified portfolio share operation. This API can only be called by the master account in the organization.
*/
describePortfolioShareStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioShareStatusOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioShareStatusOutput, AWSError>;
/**
* Gets information about the specified product.
*/
describeProduct(params: ServiceCatalog.Types.DescribeProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductOutput) => void): Request<ServiceCatalog.Types.DescribeProductOutput, AWSError>;
/**
* Gets information about the specified product.
*/
describeProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductOutput) => void): Request<ServiceCatalog.Types.DescribeProductOutput, AWSError>;
/**
* Gets information about the specified product. This operation is run with administrator access.
*/
describeProductAsAdmin(params: ServiceCatalog.Types.DescribeProductAsAdminInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductAsAdminOutput) => void): Request<ServiceCatalog.Types.DescribeProductAsAdminOutput, AWSError>;
/**
* Gets information about the specified product. This operation is run with administrator access.
*/
describeProductAsAdmin(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductAsAdminOutput) => void): Request<ServiceCatalog.Types.DescribeProductAsAdminOutput, AWSError>;
/**
* Gets information about the specified product.
*/
describeProductView(params: ServiceCatalog.Types.DescribeProductViewInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductViewOutput) => void): Request<ServiceCatalog.Types.DescribeProductViewOutput, AWSError>;
/**
* Gets information about the specified product.
*/
describeProductView(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductViewOutput) => void): Request<ServiceCatalog.Types.DescribeProductViewOutput, AWSError>;
/**
* Gets information about the specified provisioned product.
*/
describeProvisionedProduct(params: ServiceCatalog.Types.DescribeProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisionedProductOutput) => void): Request<ServiceCatalog.Types.DescribeProvisionedProductOutput, AWSError>;
/**
* Gets information about the specified provisioned product.
*/
describeProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisionedProductOutput) => void): Request<ServiceCatalog.Types.DescribeProvisionedProductOutput, AWSError>;
/**
* Gets information about the resource changes for the specified plan.
*/
describeProvisionedProductPlan(params: ServiceCatalog.Types.DescribeProvisionedProductPlanInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.DescribeProvisionedProductPlanOutput, AWSError>;
/**
* Gets information about the resource changes for the specified plan.
*/
describeProvisionedProductPlan(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.DescribeProvisionedProductPlanOutput, AWSError>;
/**
* Gets information about the specified provisioning artifact (also known as a version) for the specified product.
*/
describeProvisioningArtifact(params: ServiceCatalog.Types.DescribeProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DescribeProvisioningArtifactOutput, AWSError>;
/**
* Gets information about the specified provisioning artifact (also known as a version) for the specified product.
*/
describeProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DescribeProvisioningArtifactOutput, AWSError>;
/**
* Gets information about the configuration required to provision the specified product using the specified provisioning artifact. If the output contains a TagOption key with an empty list of values, there is a TagOption conflict for that key. The end user cannot take action to fix the conflict, and launch is not blocked. In subsequent calls to ProvisionProduct, do not include conflicted TagOption keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value". Tag the provisioned product with the value sc-tagoption-conflict-portfolioId-productId.
*/
describeProvisioningParameters(params: ServiceCatalog.Types.DescribeProvisioningParametersInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisioningParametersOutput) => void): Request<ServiceCatalog.Types.DescribeProvisioningParametersOutput, AWSError>;
/**
* Gets information about the configuration required to provision the specified product using the specified provisioning artifact. If the output contains a TagOption key with an empty list of values, there is a TagOption conflict for that key. The end user cannot take action to fix the conflict, and launch is not blocked. In subsequent calls to ProvisionProduct, do not include conflicted TagOption keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value". Tag the provisioned product with the value sc-tagoption-conflict-portfolioId-productId.
*/
describeProvisioningParameters(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProvisioningParametersOutput) => void): Request<ServiceCatalog.Types.DescribeProvisioningParametersOutput, AWSError>;
/**
* Gets information about the specified request operation. Use this operation after calling a request operation (for example, ProvisionProduct, TerminateProvisionedProduct, or UpdateProvisionedProduct). If a provisioned product was transferred to a new owner using UpdateProvisionedProductProperties, the new owner will be able to describe all past records for that product. The previous owner will no longer be able to describe the records, but will be able to use ListRecordHistory to see the product's history from when he was the owner.
*/
describeRecord(params: ServiceCatalog.Types.DescribeRecordInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeRecordOutput) => void): Request<ServiceCatalog.Types.DescribeRecordOutput, AWSError>;
/**
* Gets information about the specified request operation. Use this operation after calling a request operation (for example, ProvisionProduct, TerminateProvisionedProduct, or UpdateProvisionedProduct). If a provisioned product was transferred to a new owner using UpdateProvisionedProductProperties, the new owner will be able to describe all past records for that product. The previous owner will no longer be able to describe the records, but will be able to use ListRecordHistory to see the product's history from when he was the owner.
*/
describeRecord(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeRecordOutput) => void): Request<ServiceCatalog.Types.DescribeRecordOutput, AWSError>;
/**
* Describes a self-service action.
*/
describeServiceAction(params: ServiceCatalog.Types.DescribeServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeServiceActionOutput) => void): Request<ServiceCatalog.Types.DescribeServiceActionOutput, AWSError>;
/**
* Describes a self-service action.
*/
describeServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeServiceActionOutput) => void): Request<ServiceCatalog.Types.DescribeServiceActionOutput, AWSError>;
/**
*
*/
describeServiceActionExecutionParameters(params: ServiceCatalog.Types.DescribeServiceActionExecutionParametersInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeServiceActionExecutionParametersOutput) => void): Request<ServiceCatalog.Types.DescribeServiceActionExecutionParametersOutput, AWSError>;
/**
*
*/
describeServiceActionExecutionParameters(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeServiceActionExecutionParametersOutput) => void): Request<ServiceCatalog.Types.DescribeServiceActionExecutionParametersOutput, AWSError>;
/**
* Gets information about the specified TagOption.
*/
describeTagOption(params: ServiceCatalog.Types.DescribeTagOptionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeTagOptionOutput) => void): Request<ServiceCatalog.Types.DescribeTagOptionOutput, AWSError>;
/**
* Gets information about the specified TagOption.
*/
describeTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeTagOptionOutput) => void): Request<ServiceCatalog.Types.DescribeTagOptionOutput, AWSError>;
/**
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the master account in the organization.
*/
disableAWSOrganizationsAccess(params: ServiceCatalog.Types.DisableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
/**
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the master account in the organization.
*/
disableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
/**
* Disassociates the specified budget from the specified resource.
*/
disassociateBudgetFromResource(params: ServiceCatalog.Types.DisassociateBudgetFromResourceInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateBudgetFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateBudgetFromResourceOutput, AWSError>;
/**
* Disassociates the specified budget from the specified resource.
*/
disassociateBudgetFromResource(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateBudgetFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateBudgetFromResourceOutput, AWSError>;
/**
* Disassociates a previously associated principal ARN from a specified portfolio.
*/
disassociatePrincipalFromPortfolio(params: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput, AWSError>;
/**
* Disassociates a previously associated principal ARN from a specified portfolio.
*/
disassociatePrincipalFromPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociatePrincipalFromPortfolioOutput, AWSError>;
/**
* Disassociates the specified product from the specified portfolio.
*/
disassociateProductFromPortfolio(params: ServiceCatalog.Types.DisassociateProductFromPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateProductFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociateProductFromPortfolioOutput, AWSError>;
/**
* Disassociates the specified product from the specified portfolio.
*/
disassociateProductFromPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateProductFromPortfolioOutput) => void): Request<ServiceCatalog.Types.DisassociateProductFromPortfolioOutput, AWSError>;
/**
* Disassociates the specified self-service action association from the specified provisioning artifact.
*/
disassociateServiceActionFromProvisioningArtifact(params: ServiceCatalog.Types.DisassociateServiceActionFromProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateServiceActionFromProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DisassociateServiceActionFromProvisioningArtifactOutput, AWSError>;
/**
* Disassociates the specified self-service action association from the specified provisioning artifact.
*/
disassociateServiceActionFromProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateServiceActionFromProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.DisassociateServiceActionFromProvisioningArtifactOutput, AWSError>;
/**
* Disassociates the specified TagOption from the specified resource.
*/
disassociateTagOptionFromResource(params: ServiceCatalog.Types.DisassociateTagOptionFromResourceInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput, AWSError>;
/**
* Disassociates the specified TagOption from the specified resource.
*/
disassociateTagOptionFromResource(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput, AWSError>;
/**
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the master account in the organization. By calling this API Service Catalog will make a call to organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure.
*/
enableAWSOrganizationsAccess(params: ServiceCatalog.Types.EnableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
/**
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the master account in the organization. By calling this API Service Catalog will make a call to organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure.
*/
enableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
/**
* Provisions or modifies a product based on the resource changes for the specified plan.
*/
executeProvisionedProductPlan(params: ServiceCatalog.Types.ExecuteProvisionedProductPlanInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductPlanOutput, AWSError>;
/**
* Provisions or modifies a product based on the resource changes for the specified plan.
*/
executeProvisionedProductPlan(callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductPlanOutput, AWSError>;
/**
* Executes a self-service action against a provisioned product.
*/
executeProvisionedProductServiceAction(params: ServiceCatalog.Types.ExecuteProvisionedProductServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput, AWSError>;
/**
* Executes a self-service action against a provisioned product.
*/
executeProvisionedProductServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput, AWSError>;
/**
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the master account in the organization.
*/
getAWSOrganizationsAccessStatus(params: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
/**
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the master account in the organization.
*/
getAWSOrganizationsAccessStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
/**
* Lists all portfolios for which sharing was accepted by this account.
*/
listAcceptedPortfolioShares(params: ServiceCatalog.Types.ListAcceptedPortfolioSharesInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListAcceptedPortfolioSharesOutput) => void): Request<ServiceCatalog.Types.ListAcceptedPortfolioSharesOutput, AWSError>;
/**
* Lists all portfolios for which sharing was accepted by this account.
*/
listAcceptedPortfolioShares(callback?: (err: AWSError, data: ServiceCatalog.Types.ListAcceptedPortfolioSharesOutput) => void): Request<ServiceCatalog.Types.ListAcceptedPortfolioSharesOutput, AWSError>;
/**
* Lists all the budgets associated to the specified resource.
*/
listBudgetsForResource(params: ServiceCatalog.Types.ListBudgetsForResourceInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListBudgetsForResourceOutput) => void): Request<ServiceCatalog.Types.ListBudgetsForResourceOutput, AWSError>;
/**
* Lists all the budgets associated to the specified resource.
*/
listBudgetsForResource(callback?: (err: AWSError, data: ServiceCatalog.Types.ListBudgetsForResourceOutput) => void): Request<ServiceCatalog.Types.ListBudgetsForResourceOutput, AWSError>;
/**
* Lists the constraints for the specified portfolio and product.
*/
listConstraintsForPortfolio(params: ServiceCatalog.Types.ListConstraintsForPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListConstraintsForPortfolioOutput) => void): Request<ServiceCatalog.Types.ListConstraintsForPortfolioOutput, AWSError>;
/**
* Lists the constraints for the specified portfolio and product.
*/
listConstraintsForPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.ListConstraintsForPortfolioOutput) => void): Request<ServiceCatalog.Types.ListConstraintsForPortfolioOutput, AWSError>;
/**
* Lists the paths to the specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.
*/
listLaunchPaths(params: ServiceCatalog.Types.ListLaunchPathsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListLaunchPathsOutput) => void): Request<ServiceCatalog.Types.ListLaunchPathsOutput, AWSError>;
/**
* Lists the paths to the specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.
*/
listLaunchPaths(callback?: (err: AWSError, data: ServiceCatalog.Types.ListLaunchPathsOutput) => void): Request<ServiceCatalog.Types.ListLaunchPathsOutput, AWSError>;
/**
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the master account in the organization.
*/
listOrganizationPortfolioAccess(params: ServiceCatalog.Types.ListOrganizationPortfolioAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput, AWSError>;
/**
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the master account in the organization.
*/
listOrganizationPortfolioAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput, AWSError>;
/**
* Lists the account IDs that have access to the specified portfolio.
*/
listPortfolioAccess(params: ServiceCatalog.Types.ListPortfolioAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListPortfolioAccessOutput, AWSError>;
/**
* Lists the account IDs that have access to the specified portfolio.
*/
listPortfolioAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListPortfolioAccessOutput, AWSError>;
/**
* Lists all portfolios in the catalog.
*/
listPortfolios(params: ServiceCatalog.Types.ListPortfoliosInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfoliosOutput) => void): Request<ServiceCatalog.Types.ListPortfoliosOutput, AWSError>;
/**
* Lists all portfolios in the catalog.
*/
listPortfolios(callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfoliosOutput) => void): Request<ServiceCatalog.Types.ListPortfoliosOutput, AWSError>;
/**
* Lists all portfolios that the specified product is associated with.
*/
listPortfoliosForProduct(params: ServiceCatalog.Types.ListPortfoliosForProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfoliosForProductOutput) => void): Request<ServiceCatalog.Types.ListPortfoliosForProductOutput, AWSError>;
/**
* Lists all portfolios that the specified product is associated with.
*/
listPortfoliosForProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ListPortfoliosForProductOutput) => void): Request<ServiceCatalog.Types.ListPortfoliosForProductOutput, AWSError>;
/**
* Lists all principal ARNs associated with the specified portfolio.
*/
listPrincipalsForPortfolio(params: ServiceCatalog.Types.ListPrincipalsForPortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListPrincipalsForPortfolioOutput) => void): Request<ServiceCatalog.Types.ListPrincipalsForPortfolioOutput, AWSError>;
/**
* Lists all principal ARNs associated with the specified portfolio.
*/
listPrincipalsForPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.ListPrincipalsForPortfolioOutput) => void): Request<ServiceCatalog.Types.ListPrincipalsForPortfolioOutput, AWSError>;
/**
* Lists the plans for the specified provisioned product or all plans to which the user has access.
*/
listProvisionedProductPlans(params: ServiceCatalog.Types.ListProvisionedProductPlansInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisionedProductPlansOutput) => void): Request<ServiceCatalog.Types.ListProvisionedProductPlansOutput, AWSError>;
/**
* Lists the plans for the specified provisioned product or all plans to which the user has access.
*/
listProvisionedProductPlans(callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisionedProductPlansOutput) => void): Request<ServiceCatalog.Types.ListProvisionedProductPlansOutput, AWSError>;
/**
* Lists all provisioning artifacts (also known as versions) for the specified product.
*/
listProvisioningArtifacts(params: ServiceCatalog.Types.ListProvisioningArtifactsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisioningArtifactsOutput) => void): Request<ServiceCatalog.Types.ListProvisioningArtifactsOutput, AWSError>;
/**
* Lists all provisioning artifacts (also known as versions) for the specified product.
*/
listProvisioningArtifacts(callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisioningArtifactsOutput) => void): Request<ServiceCatalog.Types.ListProvisioningArtifactsOutput, AWSError>;
/**
* Lists all provisioning artifacts (also known as versions) for the specified self-service action.
*/
listProvisioningArtifactsForServiceAction(params: ServiceCatalog.Types.ListProvisioningArtifactsForServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisioningArtifactsForServiceActionOutput) => void): Request<ServiceCatalog.Types.ListProvisioningArtifactsForServiceActionOutput, AWSError>;
/**
* Lists all provisioning artifacts (also known as versions) for the specified self-service action.
*/
listProvisioningArtifactsForServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.ListProvisioningArtifactsForServiceActionOutput) => void): Request<ServiceCatalog.Types.ListProvisioningArtifactsForServiceActionOutput, AWSError>;
/**
* Lists the specified requests or all performed requests.
*/
listRecordHistory(params: ServiceCatalog.Types.ListRecordHistoryInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListRecordHistoryOutput) => void): Request<ServiceCatalog.Types.ListRecordHistoryOutput, AWSError>;
/**
* Lists the specified requests or all performed requests.
*/
listRecordHistory(callback?: (err: AWSError, data: ServiceCatalog.Types.ListRecordHistoryOutput) => void): Request<ServiceCatalog.Types.ListRecordHistoryOutput, AWSError>;
/**
* Lists the resources associated with the specified TagOption.
*/
listResourcesForTagOption(params: ServiceCatalog.Types.ListResourcesForTagOptionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListResourcesForTagOptionOutput) => void): Request<ServiceCatalog.Types.ListResourcesForTagOptionOutput, AWSError>;
/**
* Lists the resources associated with the specified TagOption.
*/
listResourcesForTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.ListResourcesForTagOptionOutput) => void): Request<ServiceCatalog.Types.ListResourcesForTagOptionOutput, AWSError>;
/**
* Lists all self-service actions.
*/
listServiceActions(params: ServiceCatalog.Types.ListServiceActionsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListServiceActionsOutput) => void): Request<ServiceCatalog.Types.ListServiceActionsOutput, AWSError>;
/**
* Lists all self-service actions.
*/
listServiceActions(callback?: (err: AWSError, data: ServiceCatalog.Types.ListServiceActionsOutput) => void): Request<ServiceCatalog.Types.ListServiceActionsOutput, AWSError>;
/**
* Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID.
*/
listServiceActionsForProvisioningArtifact(params: ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput, AWSError>;
/**
* Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID.
*/
listServiceActionsForProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput, AWSError>;
/**
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific AWS account name or region.
*/
listStackInstancesForProvisionedProduct(params: ServiceCatalog.Types.ListStackInstancesForProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput, AWSError>;
/**
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific AWS account name or region.
*/
listStackInstancesForProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput, AWSError>;
/**
* Lists the specified TagOptions or all TagOptions.
*/
listTagOptions(params: ServiceCatalog.Types.ListTagOptionsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListTagOptionsOutput) => void): Request<ServiceCatalog.Types.ListTagOptionsOutput, AWSError>;
/**
* Lists the specified TagOptions or all TagOptions.
*/
listTagOptions(callback?: (err: AWSError, data: ServiceCatalog.Types.ListTagOptionsOutput) => void): Request<ServiceCatalog.Types.ListTagOptionsOutput, AWSError>;
/**
* Provisions the specified product. A provisioned product is a resourced instance of a product. For example, provisioning a product based on a CloudFormation template launches a CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord. If the request contains a tag key with an empty list of values, there is a tag conflict for that key. Do not include conflicted keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value".
*/
provisionProduct(params: ServiceCatalog.Types.ProvisionProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ProvisionProductOutput) => void): Request<ServiceCatalog.Types.ProvisionProductOutput, AWSError>;
/**
* Provisions the specified product. A provisioned product is a resourced instance of a product. For example, provisioning a product based on a CloudFormation template launches a CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord. If the request contains a tag key with an empty list of values, there is a tag conflict for that key. Do not include conflicted keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value".
*/
provisionProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ProvisionProductOutput) => void): Request<ServiceCatalog.Types.ProvisionProductOutput, AWSError>;
/**
* Rejects an offer to share the specified portfolio.
*/
rejectPortfolioShare(params: ServiceCatalog.Types.RejectPortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.RejectPortfolioShareOutput) => void): Request<ServiceCatalog.Types.RejectPortfolioShareOutput, AWSError>;
/**
* Rejects an offer to share the specified portfolio.
*/
rejectPortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.RejectPortfolioShareOutput) => void): Request<ServiceCatalog.Types.RejectPortfolioShareOutput, AWSError>;
/**
* Lists the provisioned products that are available (not terminated). To use additional filtering, see SearchProvisionedProducts.
*/
scanProvisionedProducts(params: ServiceCatalog.Types.ScanProvisionedProductsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ScanProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.ScanProvisionedProductsOutput, AWSError>;
/**
* Lists the provisioned products that are available (not terminated). To use additional filtering, see SearchProvisionedProducts.
*/
scanProvisionedProducts(callback?: (err: AWSError, data: ServiceCatalog.Types.ScanProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.ScanProvisionedProductsOutput, AWSError>;
/**
* Gets information about the products to which the caller has access.
*/
searchProducts(params: ServiceCatalog.Types.SearchProductsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsOutput) => void): Request<ServiceCatalog.Types.SearchProductsOutput, AWSError>;
/**
* Gets information about the products to which the caller has access.
*/
searchProducts(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsOutput) => void): Request<ServiceCatalog.Types.SearchProductsOutput, AWSError>;
/**
* Gets information about the products for the specified portfolio or all products.
*/
searchProductsAsAdmin(params: ServiceCatalog.Types.SearchProductsAsAdminInput, callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsAsAdminOutput) => void): Request<ServiceCatalog.Types.SearchProductsAsAdminOutput, AWSError>;
/**
* Gets information about the products for the specified portfolio or all products.
*/
searchProductsAsAdmin(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsAsAdminOutput) => void): Request<ServiceCatalog.Types.SearchProductsAsAdminOutput, AWSError>;
/**
* Gets information about the provisioned products that meet the specified criteria.
*/
searchProvisionedProducts(params: ServiceCatalog.Types.SearchProvisionedProductsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
/**
* Gets information about the provisioned products that meet the specified criteria.
*/
searchProvisionedProducts(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
/**
* Terminates the specified provisioned product. This operation does not delete any records associated with the provisioned product. You can check the status of this request using DescribeRecord.
*/
terminateProvisionedProduct(params: ServiceCatalog.Types.TerminateProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.TerminateProvisionedProductOutput) => void): Request<ServiceCatalog.Types.TerminateProvisionedProductOutput, AWSError>;
/**
* Terminates the specified provisioned product. This operation does not delete any records associated with the provisioned product. You can check the status of this request using DescribeRecord.
*/
terminateProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.TerminateProvisionedProductOutput) => void): Request<ServiceCatalog.Types.TerminateProvisionedProductOutput, AWSError>;
/**
* Updates the specified constraint.
*/
updateConstraint(params: ServiceCatalog.Types.UpdateConstraintInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateConstraintOutput) => void): Request<ServiceCatalog.Types.UpdateConstraintOutput, AWSError>;
/**
* Updates the specified constraint.
*/
updateConstraint(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateConstraintOutput) => void): Request<ServiceCatalog.Types.UpdateConstraintOutput, AWSError>;
/**
* Updates the specified portfolio. You cannot update a product that was shared with you.
*/
updatePortfolio(params: ServiceCatalog.Types.UpdatePortfolioInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdatePortfolioOutput) => void): Request<ServiceCatalog.Types.UpdatePortfolioOutput, AWSError>;
/**
* Updates the specified portfolio. You cannot update a product that was shared with you.
*/
updatePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdatePortfolioOutput) => void): Request<ServiceCatalog.Types.UpdatePortfolioOutput, AWSError>;
/**
* Updates the specified product.
*/
updateProduct(params: ServiceCatalog.Types.UpdateProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProductOutput) => void): Request<ServiceCatalog.Types.UpdateProductOutput, AWSError>;
/**
* Updates the specified product.
*/
updateProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProductOutput) => void): Request<ServiceCatalog.Types.UpdateProductOutput, AWSError>;
/**
* Requests updates to the configuration of the specified provisioned product. If there are tags associated with the object, they cannot be updated or added. Depending on the specific updates requested, this operation can update with no interruption, with some interruption, or replace the provisioned product entirely. You can check the status of this request using DescribeRecord.
*/
updateProvisionedProduct(params: ServiceCatalog.Types.UpdateProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisionedProductOutput) => void): Request<ServiceCatalog.Types.UpdateProvisionedProductOutput, AWSError>;
/**
* Requests updates to the configuration of the specified provisioned product. If there are tags associated with the object, they cannot be updated or added. Depending on the specific updates requested, this operation can update with no interruption, with some interruption, or replace the provisioned product entirely. You can check the status of this request using DescribeRecord.
*/
updateProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisionedProductOutput) => void): Request<ServiceCatalog.Types.UpdateProvisionedProductOutput, AWSError>;
/**
* Requests updates to the properties of the specified provisioned product.
*/
updateProvisionedProductProperties(params: ServiceCatalog.Types.UpdateProvisionedProductPropertiesInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisionedProductPropertiesOutput) => void): Request<ServiceCatalog.Types.UpdateProvisionedProductPropertiesOutput, AWSError>;
/**
* Requests updates to the properties of the specified provisioned product.
*/
updateProvisionedProductProperties(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisionedProductPropertiesOutput) => void): Request<ServiceCatalog.Types.UpdateProvisionedProductPropertiesOutput, AWSError>;
/**
* Updates the specified provisioning artifact (also known as a version) for the specified product. You cannot update a provisioning artifact for a product that was shared with you.
*/
updateProvisioningArtifact(params: ServiceCatalog.Types.UpdateProvisioningArtifactInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.UpdateProvisioningArtifactOutput, AWSError>;
/**
* Updates the specified provisioning artifact (also known as a version) for the specified product. You cannot update a provisioning artifact for a product that was shared with you.
*/
updateProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.UpdateProvisioningArtifactOutput, AWSError>;
/**
* Updates a self-service action.
*/
updateServiceAction(params: ServiceCatalog.Types.UpdateServiceActionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateServiceActionOutput) => void): Request<ServiceCatalog.Types.UpdateServiceActionOutput, AWSError>;
/**
* Updates a self-service action.
*/
updateServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateServiceActionOutput) => void): Request<ServiceCatalog.Types.UpdateServiceActionOutput, AWSError>;
/**
* Updates the specified TagOption.
*/
updateTagOption(params: ServiceCatalog.Types.UpdateTagOptionInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateTagOptionOutput) => void): Request<ServiceCatalog.Types.UpdateTagOptionOutput, AWSError>;
/**
* Updates the specified TagOption.
*/
updateTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdateTagOptionOutput) => void): Request<ServiceCatalog.Types.UpdateTagOptionOutput, AWSError>;
}
declare namespace ServiceCatalog {
export type AcceptLanguage = string;
export interface AcceptPortfolioShareInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The type of shared portfolios to accept. The default is to accept imported portfolios. AWS_ORGANIZATIONS - Accept portfolios shared by the master account of your organization. IMPORTED - Accept imported portfolios. AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.) For example, aws servicecatalog accept-portfolio-share --portfolio-id "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
*/
PortfolioShareType?: PortfolioShareType;
}
export interface AcceptPortfolioShareOutput {
}
export interface AccessLevelFilter {
/**
* The access level. Account - Filter results based on the account. Role - Filter results based on the federated role of the specified user. User - Filter results based on the specified user.
*/
Key?: AccessLevelFilterKey;
/**
* The user to which the access level applies. The only supported value is Self.
*/
Value?: AccessLevelFilterValue;
}
export type AccessLevelFilterKey = "Account"|"Role"|"User"|string;
export type AccessLevelFilterValue = string;
export type AccessStatus = "ENABLED"|"UNDER_CHANGE"|"DISABLED"|string;
export type AccountId = string;
export type AccountIds = AccountId[];
export type AddTags = Tag[];
export type AllowedValue = string;
export type AllowedValues = AllowedValue[];
export type ApproximateCount = number;
export interface AssociateBudgetWithResourceInput {
/**
* The name of the budget you want to associate.
*/
BudgetName: BudgetName;
/**
* The resource identifier. Either a portfolio-id or a product-id.
*/
ResourceId: Id;
}
export interface AssociateBudgetWithResourceOutput {
}
export interface AssociatePrincipalWithPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The ARN of the principal (IAM user, role, or group).
*/
PrincipalARN: PrincipalARN;
/**
* The principal type. The supported value is IAM.
*/
PrincipalType: PrincipalType;
}
export interface AssociatePrincipalWithPortfolioOutput {
}
export interface AssociateProductWithPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The identifier of the source portfolio.
*/
SourcePortfolioId?: Id;
}
export interface AssociateProductWithPortfolioOutput {
}
export interface AssociateServiceActionWithProvisioningArtifactInput {
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId: Id;
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId: Id;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface AssociateServiceActionWithProvisioningArtifactOutput {
}
export interface AssociateTagOptionWithResourceInput {
/**
* The resource identifier.
*/
ResourceId: ResourceId;
/**
* The TagOption identifier.
*/
TagOptionId: TagOptionId;
}
export interface AssociateTagOptionWithResourceOutput {
}
export type AttributeValue = string;
export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
/**
* One or more associations, each consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.
*/
ServiceActionAssociations: ServiceActionAssociations;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface BatchAssociateServiceActionWithProvisioningArtifactOutput {
/**
* An object that contains a list of errors, along with information to help you identify the self-service action.
*/
FailedServiceActionAssociations?: FailedServiceActionAssociations;
}
export interface BatchDisassociateServiceActionFromProvisioningArtifactInput {
/**
* One or more associations, each consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.
*/
ServiceActionAssociations: ServiceActionAssociations;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface BatchDisassociateServiceActionFromProvisioningArtifactOutput {
/**
* An object that contains a list of errors, along with information to help you identify the self-service action.
*/
FailedServiceActionAssociations?: FailedServiceActionAssociations;
}
export interface BudgetDetail {
/**
* Name of the associated budget.
*/
BudgetName?: BudgetName;
}
export type BudgetName = string;
export type Budgets = BudgetDetail[];
export type CausingEntity = string;
export type ChangeAction = "ADD"|"MODIFY"|"REMOVE"|string;
export interface CloudWatchDashboard {
/**
* The name of the CloudWatch dashboard.
*/
Name?: CloudWatchDashboardName;
}
export type CloudWatchDashboardName = string;
export type CloudWatchDashboards = CloudWatchDashboard[];
export type ConstraintDescription = string;
export interface ConstraintDetail {
/**
* The identifier of the constraint.
*/
ConstraintId?: Id;
/**
* The type of constraint. LAUNCH NOTIFICATION STACKSET TEMPLATE
*/
Type?: ConstraintType;
/**
* The description of the constraint.
*/
Description?: ConstraintDescription;
/**
* The owner of the constraint.
*/
Owner?: AccountId;
}
export type ConstraintDetails = ConstraintDetail[];
export type ConstraintParameters = string;
export type ConstraintSummaries = ConstraintSummary[];
export interface ConstraintSummary {
/**
* The type of constraint. LAUNCH NOTIFICATION STACKSET TEMPLATE
*/
Type?: ConstraintType;
/**
* The description of the constraint.
*/
Description?: ConstraintDescription;
}
export type ConstraintType = string;
export type CopyOption = "CopyTags"|string;
export type CopyOptions = CopyOption[];
export interface CopyProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The Amazon Resource Name (ARN) of the source product.
*/
SourceProductArn: ProductArn;
/**
* The identifier of the target product. By default, a new product is created.
*/
TargetProductId?: Id;
/**
* A name for the target product. The default is the name of the source product.
*/
TargetProductName?: ProductViewName;
/**
* The identifiers of the provisioning artifacts (also known as versions) of the product to copy. By default, all provisioning artifacts are copied.
*/
SourceProvisioningArtifactIdentifiers?: SourceProvisioningArtifactProperties;
/**
* The copy options. If the value is CopyTags, the tags from the source product are copied to the target product.
*/
CopyOptions?: CopyOptions;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CopyProductOutput {
/**
* The token to use to track the progress of the operation.
*/
CopyProductToken?: Id;
}
export type CopyProductStatus = "SUCCEEDED"|"IN_PROGRESS"|"FAILED"|string;
export interface CreateConstraintInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an AWS CloudFormation stack set. TEMPLATE Specify the Rules property. For more information, see Template Constraint Rules.
*/
Parameters: ConstraintParameters;
/**
* The type of constraint. LAUNCH NOTIFICATION RESOURCE_UPDATE STACKSET TEMPLATE
*/
Type: ConstraintType;
/**
* The description of the constraint.
*/
Description?: ConstraintDescription;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CreateConstraintOutput {
/**
* Information about the constraint.
*/
ConstraintDetail?: ConstraintDetail;
/**
* The constraint parameters.
*/
ConstraintParameters?: ConstraintParameters;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface CreatePortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The name to use for display purposes.
*/
DisplayName: PortfolioDisplayName;
/**
* The description of the portfolio.
*/
Description?: PortfolioDescription;
/**
* The name of the portfolio provider.
*/
ProviderName: ProviderName;
/**
* One or more tags.
*/
Tags?: AddTags;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CreatePortfolioOutput {
/**
* Information about the portfolio.
*/
PortfolioDetail?: PortfolioDetail;
/**
* Information about the tags associated with the portfolio.
*/
Tags?: Tags;
}
export interface CreatePortfolioShareInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The AWS account ID. For example, 123456789012.
*/
AccountId?: AccountId;
/**
* The organization node to whom you are going to share. If OrganizationNode is passed in, PortfolioShare will be created for the node and its children (when applies), and a PortfolioShareToken will be returned in the output in order for the administrator to monitor the status of the PortfolioShare creation process.
*/
OrganizationNode?: OrganizationNode;
}
export interface CreatePortfolioShareOutput {
/**
* The portfolio share unique identifier. This will only be returned if portfolio is shared to an organization node.
*/
PortfolioShareToken?: Id;
}
export interface CreateProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The name of the product.
*/
Name: ProductViewName;
/**
* The owner of the product.
*/
Owner: ProductViewOwner;
/**
* The description of the product.
*/
Description?: ProductViewShortDescription;
/**
* The distributor of the product.
*/
Distributor?: ProductViewOwner;
/**
* The support information about the product.
*/
SupportDescription?: SupportDescription;
/**
* The contact email for product support.
*/
SupportEmail?: SupportEmail;
/**
* The contact URL for product support.
*/
SupportUrl?: SupportUrl;
/**
* The type of product.
*/
ProductType: ProductType;
/**
* One or more tags.
*/
Tags?: AddTags;
/**
* The configuration of the provisioning artifact.
*/
ProvisioningArtifactParameters: ProvisioningArtifactProperties;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CreateProductOutput {
/**
* Information about the product view.
*/
ProductViewDetail?: ProductViewDetail;
/**
* Information about the provisioning artifact.
*/
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
/**
* Information about the tags associated with the product.
*/
Tags?: Tags;
}
export interface CreateProvisionedProductPlanInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The name of the plan.
*/
PlanName: ProvisionedProductPlanName;
/**
* The plan type.
*/
PlanType: ProvisionedProductPlanType;
/**
* Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
*/
NotificationArns?: NotificationArns;
/**
* The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.
*/
PathId?: Id;
/**
* The product identifier.
*/
ProductId: Id;
/**
* A user-friendly name for the provisioned product. This value must be unique for the AWS account and cannot be updated after the product is provisioned.
*/
ProvisionedProductName: ProvisionedProductName;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
/**
* Parameters specified by the administrator that are required for provisioning the product.
*/
ProvisioningParameters?: UpdateProvisioningParameters;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
/**
* One or more tags. If the plan is for an existing provisioned product, the product must have a RESOURCE_UPDATE constraint with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
*/
Tags?: Tags;
}
export interface CreateProvisionedProductPlanOutput {
/**
* The name of the plan.
*/
PlanName?: ProvisionedProductPlanName;
/**
* The plan identifier.
*/
PlanId?: Id;
/**
* The product identifier.
*/
ProvisionProductId?: Id;
/**
* The user-friendly name of the provisioned product.
*/
ProvisionedProductName?: ProvisionedProductName;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
}
export interface CreateProvisioningArtifactInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The configuration for the provisioning artifact.
*/
Parameters: ProvisioningArtifactProperties;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CreateProvisioningArtifactOutput {
/**
* Information about the provisioning artifact.
*/
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
/**
* The URL of the CloudFormation template in Amazon S3, in JSON format.
*/
Info?: ProvisioningArtifactInfo;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface CreateServiceActionInput {
/**
* The self-service action name.
*/
Name: ServiceActionName;
/**
* The service action definition type. For example, SSM_AUTOMATION.
*/
DefinitionType: ServiceActionDefinitionType;
/**
* The self-service action definition. Can be one of the following: Name The name of the AWS Systems Manager Document. For example, AWS-RestartEC2Instance. Version The AWS Systems Manager automation document version. For example, "Version": "1" AssumeRole The Amazon Resource Name (ARN) of the role that performs the self-service actions on your behalf. For example, "AssumeRole": "arn:aws:iam::12345678910:role/ActionRole". To reuse the provisioned product launch role, set to "AssumeRole": "LAUNCH_ROLE". Parameters The list of parameters in JSON format. For example: [{\"Name\":\"InstanceId\",\"Type\":\"TARGET\"}].
*/
Definition: ServiceActionDefinitionMap;
/**
* The self-service action description.
*/
Description?: ServiceActionDescription;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface CreateServiceActionOutput {
/**
* An object containing information about the self-service action.
*/
ServiceActionDetail?: ServiceActionDetail;
}
export interface CreateTagOptionInput {
/**
* The TagOption key.
*/
Key: TagOptionKey;
/**
* The TagOption value.
*/
Value: TagOptionValue;
}
export interface CreateTagOptionOutput {
/**
* Information about the TagOption.
*/
TagOptionDetail?: TagOptionDetail;
}
export type CreatedTime = Date;
export type CreationTime = Date;
export type DefaultValue = string;
export interface DeleteConstraintInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the constraint.
*/
Id: Id;
}
export interface DeleteConstraintOutput {
}
export interface DeletePortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
Id: Id;
}
export interface DeletePortfolioOutput {
}
export interface DeletePortfolioShareInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The AWS account ID.
*/
AccountId?: AccountId;
/**
* The organization node to whom you are going to stop sharing.
*/
OrganizationNode?: OrganizationNode;
}
export interface DeletePortfolioShareOutput {
/**
* The portfolio share unique identifier. This will only be returned if delete is made to an organization node.
*/
PortfolioShareToken?: Id;
}
export interface DeleteProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
Id: Id;
}
export interface DeleteProductOutput {
}
export interface DeleteProvisionedProductPlanInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The plan identifier.
*/
PlanId: Id;
/**
* If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources.
*/
IgnoreErrors?: IgnoreErrors;
}
export interface DeleteProvisionedProductPlanOutput {
}
export interface DeleteProvisioningArtifactInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
}
export interface DeleteProvisioningArtifactOutput {
}
export interface DeleteServiceActionInput {
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
Id: Id;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface DeleteServiceActionOutput {
}
export interface DeleteTagOptionInput {
/**
* The TagOption identifier.
*/
Id: TagOptionId;
}
export interface DeleteTagOptionOutput {
}
export interface DescribeConstraintInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the constraint.
*/
Id: Id;
}
export interface DescribeConstraintOutput {
/**
* Information about the constraint.
*/
ConstraintDetail?: ConstraintDetail;
/**
* The constraint parameters.
*/
ConstraintParameters?: ConstraintParameters;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface DescribeCopyProductStatusInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The token for the copy product operation. This token is returned by CopyProduct.
*/
CopyProductToken: Id;
}
export interface DescribeCopyProductStatusOutput {
/**
* The status of the copy product operation.
*/
CopyProductStatus?: CopyProductStatus;
/**
* The identifier of the copied product.
*/
TargetProductId?: Id;
/**
* The status message.
*/
StatusDetail?: StatusDetail;
}
export interface DescribePortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
Id: Id;
}
export interface DescribePortfolioOutput {
/**
* Information about the portfolio.
*/
PortfolioDetail?: PortfolioDetail;
/**
* Information about the tags associated with the portfolio.
*/
Tags?: Tags;
/**
* Information about the TagOptions associated with the portfolio.
*/
TagOptions?: TagOptionDetails;
/**
* Information about the associated budgets.
*/
Budgets?: Budgets;
}
export interface DescribePortfolioShareStatusInput {
/**
* The token for the portfolio share operation. This token is returned either by CreatePortfolioShare or by DeletePortfolioShare.
*/
PortfolioShareToken: Id;
}
export interface DescribePortfolioShareStatusOutput {
/**
* The token for the portfolio share operation. For example, share-6v24abcdefghi.
*/
PortfolioShareToken?: Id;
/**
* The portfolio identifier.
*/
PortfolioId?: Id;
/**
* Organization node identifier. It can be either account id, organizational unit id or organization id.
*/
OrganizationNodeValue?: OrganizationNodeValue;
/**
* Status of the portfolio share operation.
*/
Status?: ShareStatus;
/**
* Information about the portfolio share operation.
*/
ShareDetails?: ShareDetails;
}
export interface DescribeProductAsAdminInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
Id: Id;
}
export interface DescribeProductAsAdminOutput {
/**
* Information about the product view.
*/
ProductViewDetail?: ProductViewDetail;
/**
* Information about the provisioning artifacts (also known as versions) for the specified product.
*/
ProvisioningArtifactSummaries?: ProvisioningArtifactSummaries;
/**
* Information about the tags associated with the product.
*/
Tags?: Tags;
/**
* Information about the TagOptions associated with the product.
*/
TagOptions?: TagOptionDetails;
/**
* Information about the associated budgets.
*/
Budgets?: Budgets;
}
export interface DescribeProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
Id: Id;
}
export interface DescribeProductOutput {
/**
* Summary information about the product view.
*/
ProductViewSummary?: ProductViewSummary;
/**
* Information about the provisioning artifacts for the specified product.
*/
ProvisioningArtifacts?: ProvisioningArtifacts;
/**
* Information about the associated budgets.
*/
Budgets?: Budgets;
}
export interface DescribeProductViewInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product view identifier.
*/
Id: Id;
}
export interface DescribeProductViewOutput {
/**
* Summary information about the product.
*/
ProductViewSummary?: ProductViewSummary;
/**
* Information about the provisioning artifacts for the product.
*/
ProvisioningArtifacts?: ProvisioningArtifacts;
}
export interface DescribeProvisionedProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The provisioned product identifier.
*/
Id: Id;
}
export interface DescribeProvisionedProductOutput {
/**
* Information about the provisioned product.
*/
ProvisionedProductDetail?: ProvisionedProductDetail;
/**
* Any CloudWatch dashboards that were created when provisioning the product.
*/
CloudWatchDashboards?: CloudWatchDashboards;
}
export interface DescribeProvisionedProductPlanInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The plan identifier.
*/
PlanId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface DescribeProvisionedProductPlanOutput {
/**
* Information about the plan.
*/
ProvisionedProductPlanDetails?: ProvisionedProductPlanDetails;
/**
* Information about the resource changes that will occur when the plan is executed.
*/
ResourceChanges?: ResourceChanges;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface DescribeProvisioningArtifactInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
/**
* The product identifier.
*/
ProductId: Id;
/**
* Indicates whether a verbose level of detail is enabled.
*/
Verbose?: Verbose;
}
export interface DescribeProvisioningArtifactOutput {
/**
* Information about the provisioning artifact.
*/
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
/**
* The URL of the CloudFormation template in Amazon S3.
*/
Info?: ProvisioningArtifactInfo;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface DescribeProvisioningParametersInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
/**
* The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.
*/
PathId?: Id;
}
export interface DescribeProvisioningParametersOutput {
/**
* Information about the parameters used to provision the product.
*/
ProvisioningArtifactParameters?: ProvisioningArtifactParameters;
/**
* Information about the constraints used to provision the product.
*/
ConstraintSummaries?: ConstraintSummaries;
/**
* Any additional metadata specifically related to the provisioning of the product. For example, see the Version field of the CloudFormation template.
*/
UsageInstructions?: UsageInstructions;
/**
* Information about the TagOptions associated with the resource.
*/
TagOptions?: TagOptionSummaries;
/**
* An object that contains information about preferences, such as regions and accounts, for the provisioning artifact.
*/
ProvisioningArtifactPreferences?: ProvisioningArtifactPreferences;
}
export interface DescribeRecordInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The record identifier of the provisioned product. This identifier is returned by the request operation.
*/
Id: Id;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
}
export interface DescribeRecordOutput {
/**
* Information about the product.
*/
RecordDetail?: RecordDetail;
/**
* Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
*/
RecordOutputs?: RecordOutputs;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface DescribeServiceActionExecutionParametersInput {
ProvisionedProductId: Id;
ServiceActionId: Id;
AcceptLanguage?: AcceptLanguage;
}
export interface DescribeServiceActionExecutionParametersOutput {
ServiceActionParameters?: ExecutionParameters;
}
export interface DescribeServiceActionInput {
/**
* The self-service action identifier.
*/
Id: Id;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface DescribeServiceActionOutput {
/**
* Detailed information about the self-service action.
*/
ServiceActionDetail?: ServiceActionDetail;
}
export interface DescribeTagOptionInput {
/**
* The TagOption identifier.
*/
Id: TagOptionId;
}
export interface DescribeTagOptionOutput {
/**
* Information about the TagOption.
*/
TagOptionDetail?: TagOptionDetail;
}
export type Description = string;
export interface DisableAWSOrganizationsAccessInput {
}
export interface DisableAWSOrganizationsAccessOutput {
}
export type DisableTemplateValidation = boolean;
export interface DisassociateBudgetFromResourceInput {
/**
* The name of the budget you want to disassociate.
*/
BudgetName: BudgetName;
/**
* The resource identifier you want to disassociate from. Either a portfolio-id or a product-id.
*/
ResourceId: Id;
}
export interface DisassociateBudgetFromResourceOutput {
}
export interface DisassociatePrincipalFromPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The ARN of the principal (IAM user, role, or group).
*/
PrincipalARN: PrincipalARN;
}
export interface DisassociatePrincipalFromPortfolioOutput {
}
export interface DisassociateProductFromPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
}
export interface DisassociateProductFromPortfolioOutput {
}
export interface DisassociateServiceActionFromProvisioningArtifactInput {
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId: Id;
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId: Id;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface DisassociateServiceActionFromProvisioningArtifactOutput {
}
export interface DisassociateTagOptionFromResourceInput {
/**
* The resource identifier.
*/
ResourceId: ResourceId;
/**
* The TagOption identifier.
*/
TagOptionId: TagOptionId;
}
export interface DisassociateTagOptionFromResourceOutput {
}
export interface EnableAWSOrganizationsAccessInput {
}
export interface EnableAWSOrganizationsAccessOutput {
}
export type Error = string;
export type ErrorCode = string;
export type ErrorDescription = string;
export type EvaluationType = "STATIC"|"DYNAMIC"|string;
export interface ExecuteProvisionedProductPlanInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The plan identifier.
*/
PlanId: Id;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface ExecuteProvisionedProductPlanOutput {
/**
* Information about the result of provisioning the product.
*/
RecordDetail?: RecordDetail;
}
export interface ExecuteProvisionedProductServiceActionInput {
/**
* The identifier of the provisioned product.
*/
ProvisionedProductId: Id;
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId: Id;
/**
* An idempotency token that uniquely identifies the execute request.
*/
ExecuteToken: IdempotencyToken;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
Parameters?: ExecutionParameterMap;
}
export interface ExecuteProvisionedProductServiceActionOutput {
/**
* An object containing detailed information about the result of provisioning the product.
*/
RecordDetail?: RecordDetail;
}
export interface ExecutionParameter {
Name?: ExecutionParameterKey;
Type?: ExecutionParameterType;
DefaultValues?: ExecutionParameterValueList;
}
export type ExecutionParameterKey = string;
export type ExecutionParameterMap = {[key: string]: ExecutionParameterValueList};
export type ExecutionParameterType = string;
export type ExecutionParameterValue = string;
export type ExecutionParameterValueList = ExecutionParameterValue[];
export type ExecutionParameters = ExecutionParameter[];
export interface FailedServiceActionAssociation {
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId?: Id;
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId?: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId?: Id;
/**
* The error code. Valid values are listed below.
*/
ErrorCode?: ServiceActionAssociationErrorCode;
/**
* A text description of the error.
*/
ErrorMessage?: ServiceActionAssociationErrorMessage;
}
export type FailedServiceActionAssociations = FailedServiceActionAssociation[];
export interface GetAWSOrganizationsAccessStatusInput {
}
export interface GetAWSOrganizationsAccessStatusOutput {
/**
* The status of the portfolio share feature.
*/
AccessStatus?: AccessStatus;
}
export type HasDefaultPath = boolean;
export type Id = string;
export type IdempotencyToken = string;
export type IgnoreErrors = boolean;
export type InstructionType = string;
export type InstructionValue = string;
export type LastRequestId = string;
export type LaunchPathSummaries = LaunchPathSummary[];
export interface LaunchPathSummary {
/**
* The identifier of the product path.
*/
Id?: Id;
/**
* The constraints on the portfolio-product relationship.
*/
ConstraintSummaries?: ConstraintSummaries;
/**
* The tags associated with this product path.
*/
Tags?: Tags;
/**
* The name of the portfolio to which the user was assigned.
*/
Name?: PortfolioName;
}
export interface ListAcceptedPortfolioSharesInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The type of shared portfolios to list. The default is to list imported portfolios. AWS_ORGANIZATIONS - List portfolios shared by the master account of your organization AWS_SERVICECATALOG - List default portfolios IMPORTED - List imported portfolios
*/
PortfolioShareType?: PortfolioShareType;
}
export interface ListAcceptedPortfolioSharesOutput {
/**
* Information about the portfolios.
*/
PortfolioDetails?: PortfolioDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListBudgetsForResourceInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The resource identifier.
*/
ResourceId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListBudgetsForResourceOutput {
/**
* Information about the associated budgets.
*/
Budgets?: Budgets;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListConstraintsForPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The product identifier.
*/
ProductId?: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListConstraintsForPortfolioOutput {
/**
* Information about the constraints.
*/
ConstraintDetails?: ConstraintDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListLaunchPathsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListLaunchPathsOutput {
/**
* Information about the launch path.
*/
LaunchPathSummaries?: LaunchPathSummaries;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListOrganizationPortfolioAccessInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier. For example, port-2abcdext3y5fk.
*/
PortfolioId: Id;
/**
* The organization node type that will be returned in the output. ORGANIZATION - Organization that has access to the portfolio. ORGANIZATIONAL_UNIT - Organizational unit that has access to the portfolio within your organization. ACCOUNT - Account that has access to the portfolio within your organization.
*/
OrganizationNodeType: OrganizationNodeType;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
}
export interface ListOrganizationPortfolioAccessOutput {
/**
* Displays information about the organization nodes.
*/
OrganizationNodes?: OrganizationNodes;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListPortfolioAccessInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
}
export interface ListPortfolioAccessOutput {
/**
* Information about the AWS accounts with access to the portfolio.
*/
AccountIds?: AccountIds;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListPortfoliosForProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
}
export interface ListPortfoliosForProductOutput {
/**
* Information about the portfolios.
*/
PortfolioDetails?: PortfolioDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListPortfoliosInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
}
export interface ListPortfoliosOutput {
/**
* Information about the portfolios.
*/
PortfolioDetails?: PortfolioDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListPrincipalsForPortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListPrincipalsForPortfolioOutput {
/**
* The IAM principals (users or roles) associated with the portfolio.
*/
Principals?: Principals;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListProvisionedProductPlansInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProvisionProductId?: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The access level to use to obtain results. The default is User.
*/
AccessLevelFilter?: AccessLevelFilter;
}
export interface ListProvisionedProductPlansOutput {
/**
* Information about the plans.
*/
ProvisionedProductPlans?: ProvisionedProductPlans;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListProvisioningArtifactsForServiceActionInput {
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface ListProvisioningArtifactsForServiceActionOutput {
/**
* An array of objects with information about product views and provisioning artifacts.
*/
ProvisioningArtifactViews?: ProvisioningArtifactViews;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListProvisioningArtifactsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
}
export interface ListProvisioningArtifactsOutput {
/**
* Information about the provisioning artifacts.
*/
ProvisioningArtifactDetails?: ProvisioningArtifactDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListRecordHistoryInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The access level to use to obtain results. The default is User.
*/
AccessLevelFilter?: AccessLevelFilter;
/**
* The search filter to scope the results.
*/
SearchFilter?: ListRecordHistorySearchFilter;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListRecordHistoryOutput {
/**
* The records, in reverse chronological order.
*/
RecordDetails?: RecordDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListRecordHistorySearchFilter {
/**
* The filter key. product - Filter results based on the specified product identifier. provisionedproduct - Filter results based on the provisioned product identifier.
*/
Key?: SearchFilterKey;
/**
* The filter value.
*/
Value?: SearchFilterValue;
}
export interface ListResourcesForTagOptionInput {
/**
* The TagOption identifier.
*/
TagOptionId: TagOptionId;
/**
* The resource type. Portfolio Product
*/
ResourceType?: ResourceType;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListResourcesForTagOptionOutput {
/**
* Information about the resources.
*/
ResourceDetails?: ResourceDetails;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListServiceActionsForProvisioningArtifactInput {
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId: Id;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface ListServiceActionsForProvisioningArtifactOutput {
/**
* An object containing information about the self-service actions associated with the provisioning artifact.
*/
ServiceActionSummaries?: ServiceActionSummaries;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListServiceActionsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListServiceActionsOutput {
/**
* An object containing information about the service actions associated with the provisioning artifact.
*/
ServiceActionSummaries?: ServiceActionSummaries;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListStackInstancesForProvisionedProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the provisioned product.
*/
ProvisionedProductId: Id;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
}
export interface ListStackInstancesForProvisionedProductOutput {
/**
* List of stack instances.
*/
StackInstances?: StackInstances;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface ListTagOptionsFilters {
/**
* The TagOption key.
*/
Key?: TagOptionKey;
/**
* The TagOption value.
*/
Value?: TagOptionValue;
/**
* The active state.
*/
Active?: TagOptionActive;
}
export interface ListTagOptionsInput {
/**
* The search filters. If no search filters are specified, the output includes all TagOptions.
*/
Filters?: ListTagOptionsFilters;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ListTagOptionsOutput {
/**
* Information about the TagOptions.
*/
TagOptionDetails?: TagOptionDetails;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export type LogicalResourceId = string;
export type Message = string;
export type Namespaces = AccountId[];
export type NoEcho = boolean;
export type NotificationArn = string;
export type NotificationArns = NotificationArn[];
export interface OrganizationNode {
/**
* The organization node type.
*/
Type?: OrganizationNodeType;
/**
* The identifier of the organization node.
*/
Value?: OrganizationNodeValue;
}
export type OrganizationNodeType = "ORGANIZATION"|"ORGANIZATIONAL_UNIT"|"ACCOUNT"|string;
export type OrganizationNodeValue = string;
export type OrganizationNodes = OrganizationNode[];
export type OutputKey = string;
export type OutputValue = string;
export type PageSize = number;
export type PageToken = string;
export interface ParameterConstraints {
/**
* The values that the administrator has allowed for the parameter.
*/
AllowedValues?: AllowedValues;
}
export type ParameterKey = string;
export type ParameterType = string;
export type ParameterValue = string;
export type PhysicalId = string;
export type PhysicalResourceId = string;
export type PlanResourceType = string;
export type PortfolioDescription = string;
export interface PortfolioDetail {
/**
* The portfolio identifier.
*/
Id?: Id;
/**
* The ARN assigned to the portfolio.
*/
ARN?: ResourceARN;
/**
* The name to use for display purposes.
*/
DisplayName?: PortfolioDisplayName;
/**
* The description of the portfolio.
*/
Description?: PortfolioDescription;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreationTime;
/**
* The name of the portfolio provider.
*/
ProviderName?: ProviderName;
}
export type PortfolioDetails = PortfolioDetail[];
export type PortfolioDisplayName = string;
export type PortfolioName = string;
export type PortfolioShareType = "IMPORTED"|"AWS_SERVICECATALOG"|"AWS_ORGANIZATIONS"|string;
export interface Principal {
/**
* The ARN of the principal (IAM user, role, or group).
*/
PrincipalARN?: PrincipalARN;
/**
* The principal type. The supported value is IAM.
*/
PrincipalType?: PrincipalType;
}
export type PrincipalARN = string;
export type PrincipalType = "IAM"|string;
export type Principals = Principal[];
export type ProductArn = string;
export type ProductSource = "ACCOUNT"|string;
export type ProductType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|string;
export type ProductViewAggregationType = string;
export interface ProductViewAggregationValue {
/**
* The value of the product view aggregation.
*/
Value?: AttributeValue;
/**
* An approximate count of the products that match the value.
*/
ApproximateCount?: ApproximateCount;
}
export type ProductViewAggregationValues = ProductViewAggregationValue[];
export type ProductViewAggregations = {[key: string]: ProductViewAggregationValues};
export interface ProductViewDetail {
/**
* Summary information about the product view.
*/
ProductViewSummary?: ProductViewSummary;
/**
* The status of the product. AVAILABLE - The product is ready for use. CREATING - Product creation has started; the product is not ready for use. FAILED - An action failed.
*/
Status?: Status;
/**
* The ARN of the product.
*/
ProductARN?: ResourceARN;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreatedTime;
}
export type ProductViewDetails = ProductViewDetail[];
export type ProductViewDistributor = string;
export type ProductViewFilterBy = "FullTextSearch"|"Owner"|"ProductType"|"SourceProductId"|string;
export type ProductViewFilterValue = string;
export type ProductViewFilterValues = ProductViewFilterValue[];
export type ProductViewFilters = {[key: string]: ProductViewFilterValues};
export type ProductViewName = string;
export type ProductViewOwner = string;
export type ProductViewShortDescription = string;
export type ProductViewSortBy = "Title"|"VersionCount"|"CreationDate"|string;
export type ProductViewSummaries = ProductViewSummary[];
export interface ProductViewSummary {
/**
* The product view identifier.
*/
Id?: Id;
/**
* The product identifier.
*/
ProductId?: Id;
/**
* The name of the product.
*/
Name?: ProductViewName;
/**
* The owner of the product. Contact the product administrator for the significance of this value.
*/
Owner?: ProductViewOwner;
/**
* Short description of the product.
*/
ShortDescription?: ProductViewShortDescription;
/**
* The product type. Contact the product administrator for the significance of this value. If this value is MARKETPLACE, the product was created by AWS Marketplace.
*/
Type?: ProductType;
/**
* The distributor of the product. Contact the product administrator for the significance of this value.
*/
Distributor?: ProductViewDistributor;
/**
* Indicates whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.
*/
HasDefaultPath?: HasDefaultPath;
/**
* The email contact information to obtain support for this Product.
*/
SupportEmail?: SupportEmail;
/**
* The description of the support for this Product.
*/
SupportDescription?: SupportDescription;
/**
* The URL information to obtain support for this Product.
*/
SupportUrl?: SupportUrl;
}
export type PropertyKey = "OWNER"|string;
export type PropertyName = string;
export type PropertyValue = string;
export type ProviderName = string;
export interface ProvisionProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
/**
* The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.
*/
PathId?: Id;
/**
* A user-friendly name for the provisioned product. This value must be unique for the AWS account and cannot be updated after the product is provisioned.
*/
ProvisionedProductName: ProvisionedProductName;
/**
* Parameters specified by the administrator that are required for provisioning the product.
*/
ProvisioningParameters?: ProvisioningParameters;
/**
* An object that contains information about the provisioning preferences for a stack set.
*/
ProvisioningPreferences?: ProvisioningPreferences;
/**
* One or more tags.
*/
Tags?: Tags;
/**
* Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
*/
NotificationArns?: NotificationArns;
/**
* An idempotency token that uniquely identifies the provisioning request.
*/
ProvisionToken: IdempotencyToken;
}
export interface ProvisionProductOutput {
/**
* Information about the result of provisioning the product.
*/
RecordDetail?: RecordDetail;
}
export interface ProvisionedProductAttribute {
/**
* The user-friendly name of the provisioned product.
*/
Name?: ProvisionedProductNameOrArn;
/**
* The ARN of the provisioned product.
*/
Arn?: ProvisionedProductNameOrArn;
/**
* The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
*/
Type?: ProvisionedProductType;
/**
* The identifier of the provisioned product.
*/
Id?: Id;
/**
* The current status of the provisioned product. AVAILABLE - Stable state, ready to perform any operation. The most recent operation succeeded and completed. UNDER_CHANGE - Transitive state. Operations performed might not have valid results. Wait for an AVAILABLE status before performing operations. TAINTED - Stable state, ready to perform any operation. The stack has completed the requested operation but is not exactly what was requested. For example, a request to update to a new version failed and the stack rolled back to the current version. ERROR - An unexpected error occurred. The provisioned product exists but the stack is not running. For example, CloudFormation received a parameter value that was not valid and could not launch the stack. PLAN_IN_PROGRESS - Transitive state. The plan operations were performed to provision a new product, but resources have not yet been created. After reviewing the list of resources to be created, execute the plan. Wait for an AVAILABLE status before performing operations.
*/
Status?: ProvisionedProductStatus;
/**
* The current status message of the provisioned product.
*/
StatusMessage?: ProvisionedProductStatusMessage;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreatedTime;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken?: IdempotencyToken;
/**
* The record identifier of the last request performed on this provisioned product.
*/
LastRecordId?: Id;
/**
* One or more tags.
*/
Tags?: Tags;
/**
* The assigned identifier for the resource, such as an EC2 instance ID or an S3 bucket name.
*/
PhysicalId?: PhysicalId;
/**
* The product identifier.
*/
ProductId?: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
/**
* The Amazon Resource Name (ARN) of the IAM user.
*/
UserArn?: UserArn;
/**
* The ARN of the IAM user in the session. This ARN might contain a session ID.
*/
UserArnSession?: UserArnSession;
}
export type ProvisionedProductAttributes = ProvisionedProductAttribute[];
export interface ProvisionedProductDetail {
/**
* The user-friendly name of the provisioned product.
*/
Name?: ProvisionedProductNameOrArn;
/**
* The ARN of the provisioned product.
*/
Arn?: ProvisionedProductNameOrArn;
/**
* The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
*/
Type?: ProvisionedProductType;
/**
* The identifier of the provisioned product.
*/
Id?: ProvisionedProductId;
/**
* The current status of the provisioned product. AVAILABLE - Stable state, ready to perform any operation. The most recent operation succeeded and completed. UNDER_CHANGE - Transitive state. Operations performed might not have valid results. Wait for an AVAILABLE status before performing operations. TAINTED - Stable state, ready to perform any operation. The stack has completed the requested operation but is not exactly what was requested. For example, a request to update to a new version failed and the stack rolled back to the current version. ERROR - An unexpected error occurred. The provisioned product exists but the stack is not running. For example, CloudFormation received a parameter value that was not valid and could not launch the stack. PLAN_IN_PROGRESS - Transitive state. The plan operations were performed to provision a new product, but resources have not yet been created. After reviewing the list of resources to be created, execute the plan. Wait for an AVAILABLE status before performing operations.
*/
Status?: ProvisionedProductStatus;
/**
* The current status message of the provisioned product.
*/
StatusMessage?: ProvisionedProductStatusMessage;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreatedTime;
/**
* A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
*/
IdempotencyToken?: IdempotencyToken;
/**
* The record identifier of the last request performed on this provisioned product.
*/
LastRecordId?: LastRequestId;
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId?: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId?: Id;
}
export type ProvisionedProductDetails = ProvisionedProductDetail[];
export type ProvisionedProductFilters = {[key: string]: ProvisionedProductViewFilterValues};
export type ProvisionedProductId = string;
export type ProvisionedProductName = string;
export type ProvisionedProductNameOrArn = string;
export interface ProvisionedProductPlanDetails {
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreatedTime;
/**
* The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.
*/
PathId?: Id;
/**
* The product identifier.
*/
ProductId?: Id;
/**
* The name of the plan.
*/
PlanName?: ProvisionedProductPlanName;
/**
* The plan identifier.
*/
PlanId?: Id;
/**
* The product identifier.
*/
ProvisionProductId?: Id;
/**
* The user-friendly name of the provisioned product.
*/
ProvisionProductName?: ProvisionedProductName;
/**
* The plan type.
*/
PlanType?: ProvisionedProductPlanType;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
/**
* The status.
*/
Status?: ProvisionedProductPlanStatus;
/**
* The time when the plan was last updated.
*/
UpdatedTime?: UpdatedTime;
/**
* Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
*/
NotificationArns?: NotificationArns;
/**
* Parameters specified by the administrator that are required for provisioning the product.
*/
ProvisioningParameters?: UpdateProvisioningParameters;
/**
* One or more tags.
*/
Tags?: Tags;
/**
* The status message.
*/
StatusMessage?: StatusMessage;
}
export type ProvisionedProductPlanName = string;
export type ProvisionedProductPlanStatus = "CREATE_IN_PROGRESS"|"CREATE_SUCCESS"|"CREATE_FAILED"|"EXECUTE_IN_PROGRESS"|"EXECUTE_SUCCESS"|"EXECUTE_FAILED"|string;
export interface ProvisionedProductPlanSummary {
/**
* The name of the plan.
*/
PlanName?: ProvisionedProductPlanName;
/**
* The plan identifier.
*/
PlanId?: Id;
/**
* The product identifier.
*/
ProvisionProductId?: Id;
/**
* The user-friendly name of the provisioned product.
*/
ProvisionProductName?: ProvisionedProductName;
/**
* The plan type.
*/
PlanType?: ProvisionedProductPlanType;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
}
export type ProvisionedProductPlanType = "CLOUDFORMATION"|string;
export type ProvisionedProductPlans = ProvisionedProductPlanSummary[];
export type ProvisionedProductProperties = {[key: string]: PropertyValue};
export type ProvisionedProductStatus = "AVAILABLE"|"UNDER_CHANGE"|"TAINTED"|"ERROR"|"PLAN_IN_PROGRESS"|string;
export type ProvisionedProductStatusMessage = string;
export type ProvisionedProductType = string;
export type ProvisionedProductViewFilterBy = "SearchQuery"|string;
export type ProvisionedProductViewFilterValue = string;
export type ProvisionedProductViewFilterValues = ProvisionedProductViewFilterValue[];
export interface ProvisioningArtifact {
/**
* The identifier of the provisioning artifact.
*/
Id?: Id;
/**
* The name of the provisioning artifact.
*/
Name?: ProvisioningArtifactName;
/**
* The description of the provisioning artifact.
*/
Description?: ProvisioningArtifactDescription;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: ProvisioningArtifactCreatedTime;
/**
* Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.
*/
Guidance?: ProvisioningArtifactGuidance;
}
export type ProvisioningArtifactActive = boolean;
export type ProvisioningArtifactCreatedTime = Date;
export type ProvisioningArtifactDescription = string;
export interface ProvisioningArtifactDetail {
/**
* The identifier of the provisioning artifact.
*/
Id?: Id;
/**
* The name of the provisioning artifact.
*/
Name?: ProvisioningArtifactName;
/**
* The description of the provisioning artifact.
*/
Description?: ProvisioningArtifactName;
/**
* The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - AWS CloudFormation template MARKETPLACE_AMI - AWS Marketplace AMI MARKETPLACE_CAR - AWS Marketplace Clusters and AWS Resources
*/
Type?: ProvisioningArtifactType;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreationTime;
/**
* Indicates whether the product version is active.
*/
Active?: ProvisioningArtifactActive;
/**
* Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.
*/
Guidance?: ProvisioningArtifactGuidance;
}
export type ProvisioningArtifactDetails = ProvisioningArtifactDetail[];
export type ProvisioningArtifactGuidance = "DEFAULT"|"DEPRECATED"|string;
export type ProvisioningArtifactInfo = {[key: string]: ProvisioningArtifactInfoValue};
export type ProvisioningArtifactInfoKey = string;
export type ProvisioningArtifactInfoValue = string;
export type ProvisioningArtifactName = string;
export interface ProvisioningArtifactParameter {
/**
* The parameter key.
*/
ParameterKey?: ParameterKey;
/**
* The default value.
*/
DefaultValue?: DefaultValue;
/**
* The parameter type.
*/
ParameterType?: ParameterType;
/**
* If this value is true, the value for this parameter is obfuscated from view when the parameter is retrieved. This parameter is used to hide sensitive information.
*/
IsNoEcho?: NoEcho;
/**
* The description of the parameter.
*/
Description?: Description;
/**
* Constraints that the administrator has put on a parameter.
*/
ParameterConstraints?: ParameterConstraints;
}
export type ProvisioningArtifactParameters = ProvisioningArtifactParameter[];
export interface ProvisioningArtifactPreferences {
/**
* One or more AWS accounts where stack instances are deployed from the stack set. These accounts can be scoped in ProvisioningPreferences$StackSetAccounts and UpdateProvisioningPreferences$StackSetAccounts. Applicable only to a CFN_STACKSET provisioned product type.
*/
StackSetAccounts?: StackSetAccounts;
/**
* One or more AWS Regions where stack instances are deployed from the stack set. These regions can be scoped in ProvisioningPreferences$StackSetRegions and UpdateProvisioningPreferences$StackSetRegions. Applicable only to a CFN_STACKSET provisioned product type.
*/
StackSetRegions?: StackSetRegions;
}
export interface ProvisioningArtifactProperties {
/**
* The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
*/
Name?: ProvisioningArtifactName;
/**
* The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
*/
Description?: ProvisioningArtifactDescription;
/**
* The URL of the CloudFormation template in Amazon S3. Specify the URL in JSON format as follows: "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
*/
Info: ProvisioningArtifactInfo;
/**
* The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - AWS CloudFormation template MARKETPLACE_AMI - AWS Marketplace AMI MARKETPLACE_CAR - AWS Marketplace Clusters and AWS Resources
*/
Type?: ProvisioningArtifactType;
/**
* If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
*/
DisableTemplateValidation?: DisableTemplateValidation;
}
export type ProvisioningArtifactPropertyName = "Id"|string;
export type ProvisioningArtifactPropertyValue = string;
export type ProvisioningArtifactSummaries = ProvisioningArtifactSummary[];
export interface ProvisioningArtifactSummary {
/**
* The identifier of the provisioning artifact.
*/
Id?: Id;
/**
* The name of the provisioning artifact.
*/
Name?: ProvisioningArtifactName;
/**
* The description of the provisioning artifact.
*/
Description?: ProvisioningArtifactDescription;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: ProvisioningArtifactCreatedTime;
/**
* The metadata for the provisioning artifact. This is used with AWS Marketplace products.
*/
ProvisioningArtifactMetadata?: ProvisioningArtifactInfo;
}
export type ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|string;
export interface ProvisioningArtifactView {
/**
* Summary information about a product view.
*/
ProductViewSummary?: ProductViewSummary;
/**
* Information about a provisioning artifact. A provisioning artifact is also known as a product version.
*/
ProvisioningArtifact?: ProvisioningArtifact;
}
export type ProvisioningArtifactViews = ProvisioningArtifactView[];
export type ProvisioningArtifacts = ProvisioningArtifact[];
export interface ProvisioningParameter {
/**
* The parameter key.
*/
Key?: ParameterKey;
/**
* The parameter value.
*/
Value?: ParameterValue;
}
export type ProvisioningParameters = ProvisioningParameter[];
export interface ProvisioningPreferences {
/**
* One or more AWS accounts that will have access to the provisioned product. Applicable only to a CFN_STACKSET provisioned product type. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all accounts from the STACKSET constraint.
*/
StackSetAccounts?: StackSetAccounts;
/**
* One or more AWS Regions where the provisioned product will be available. Applicable only to a CFN_STACKSET provisioned product type. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all regions from the STACKSET constraint.
*/
StackSetRegions?: StackSetRegions;
/**
* The number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both. The default value is 0 if no value is specified.
*/
StackSetFailureToleranceCount?: StackSetFailureToleranceCount;
/**
* The percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both.
*/
StackSetFailureTolerancePercentage?: StackSetFailureTolerancePercentage;
/**
* The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of StackSetFailureToleranceCount. StackSetMaxConcurrentCount is at most one more than the StackSetFailureToleranceCount. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
*/
StackSetMaxConcurrencyCount?: StackSetMaxConcurrencyCount;
/**
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
*/
StackSetMaxConcurrencyPercentage?: StackSetMaxConcurrencyPercentage;
}
export interface RecordDetail {
/**
* The identifier of the record.
*/
RecordId?: Id;
/**
* The user-friendly name of the provisioned product.
*/
ProvisionedProductName?: ProvisionedProductName;
/**
* The status of the provisioned product. CREATED - The request was created but the operation has not started. IN_PROGRESS - The requested operation is in progress. IN_PROGRESS_IN_ERROR - The provisioned product is under change but the requested operation failed and some remediation is occurring. For example, a rollback. SUCCEEDED - The requested operation has successfully completed. FAILED - The requested operation has unsuccessfully completed. Investigate using the error messages returned.
*/
Status?: RecordStatus;
/**
* The UTC time stamp of the creation time.
*/
CreatedTime?: CreatedTime;
/**
* The time when the record was last updated.
*/
UpdatedTime?: UpdatedTime;
/**
* The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
*/
ProvisionedProductType?: ProvisionedProductType;
/**
* The record type. PROVISION_PRODUCT UPDATE_PROVISIONED_PRODUCT TERMINATE_PROVISIONED_PRODUCT
*/
RecordType?: RecordType;
/**
* The identifier of the provisioned product.
*/
ProvisionedProductId?: Id;
/**
* The product identifier.
*/
ProductId?: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
/**
* The path identifier.
*/
PathId?: Id;
/**
* The errors that occurred.
*/
RecordErrors?: RecordErrors;
/**
* One or more tags.
*/
RecordTags?: RecordTags;
}
export type RecordDetails = RecordDetail[];
export interface RecordError {
/**
* The numeric value of the error.
*/
Code?: ErrorCode;
/**
* The description of the error.
*/
Description?: ErrorDescription;
}
export type RecordErrors = RecordError[];
export interface RecordOutput {
/**
* The output key.
*/
OutputKey?: OutputKey;
/**
* The output value.
*/
OutputValue?: OutputValue;
/**
* The description of the output.
*/
Description?: Description;
}
export type RecordOutputs = RecordOutput[];
export type RecordStatus = "CREATED"|"IN_PROGRESS"|"IN_PROGRESS_IN_ERROR"|"SUCCEEDED"|"FAILED"|string;
export interface RecordTag {
/**
* The key for this tag.
*/
Key?: RecordTagKey;
/**
* The value for this tag.
*/
Value?: RecordTagValue;
}
export type RecordTagKey = string;
export type RecordTagValue = string;
export type RecordTags = RecordTag[];
export type RecordType = string;
export type Region = string;
export interface RejectPortfolioShareInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId: Id;
/**
* The type of shared portfolios to reject. The default is to reject imported portfolios. AWS_ORGANIZATIONS - Reject portfolios shared by the master account of your organization. IMPORTED - Reject imported portfolios. AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.) For example, aws servicecatalog reject-portfolio-share --portfolio-id "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
*/
PortfolioShareType?: PortfolioShareType;
}
export interface RejectPortfolioShareOutput {
}
export type Replacement = "TRUE"|"FALSE"|"CONDITIONAL"|string;
export type RequiresRecreation = "NEVER"|"CONDITIONALLY"|"ALWAYS"|string;
export type ResourceARN = string;
export type ResourceAttribute = "PROPERTIES"|"METADATA"|"CREATIONPOLICY"|"UPDATEPOLICY"|"DELETIONPOLICY"|"TAGS"|string;
export interface ResourceChange {
/**
* The change action.
*/
Action?: ChangeAction;
/**
* The ID of the resource, as defined in the CloudFormation template.
*/
LogicalResourceId?: LogicalResourceId;
/**
* The ID of the resource, if it was already created.
*/
PhysicalResourceId?: PhysicalResourceId;
/**
* The type of resource.
*/
ResourceType?: PlanResourceType;
/**
* If the change type is Modify, indicates whether the existing resource is deleted and replaced with a new one.
*/
Replacement?: Replacement;
/**
* The change scope.
*/
Scope?: Scope;
/**
* Information about the resource changes.
*/
Details?: ResourceChangeDetails;
}
export interface ResourceChangeDetail {
/**
* Information about the resource attribute to be modified.
*/
Target?: ResourceTargetDefinition;
/**
* For static evaluations, the value of the resource attribute will change and the new value is known. For dynamic evaluations, the value might change, and any new value will be determined when the plan is updated.
*/
Evaluation?: EvaluationType;
/**
* The ID of the entity that caused the change.
*/
CausingEntity?: CausingEntity;
}
export type ResourceChangeDetails = ResourceChangeDetail[];
export type ResourceChanges = ResourceChange[];
export interface ResourceDetail {
/**
* The identifier of the resource.
*/
Id?: ResourceDetailId;
/**
* The ARN of the resource.
*/
ARN?: ResourceDetailARN;
/**
* The name of the resource.
*/
Name?: ResourceDetailName;
/**
* The description of the resource.
*/
Description?: ResourceDetailDescription;
/**
* The creation time of the resource.
*/
CreatedTime?: ResourceDetailCreatedTime;
}
export type ResourceDetailARN = string;
export type ResourceDetailCreatedTime = Date;
export type ResourceDetailDescription = string;
export type ResourceDetailId = string;
export type ResourceDetailName = string;
export type ResourceDetails = ResourceDetail[];
export type ResourceId = string;
export interface ResourceTargetDefinition {
/**
* The attribute to be changed.
*/
Attribute?: ResourceAttribute;
/**
* If the attribute is Properties, the value is the name of the property. Otherwise, the value is null.
*/
Name?: PropertyName;
/**
* If the attribute is Properties, indicates whether a change to this property causes the resource to be re-created.
*/
RequiresRecreation?: RequiresRecreation;
}
export type ResourceType = string;
export interface ScanProvisionedProductsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The access level to use to obtain results. The default is User.
*/
AccessLevelFilter?: AccessLevelFilter;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface ScanProvisionedProductsOutput {
/**
* Information about the provisioned products.
*/
ProvisionedProducts?: ProvisionedProductDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export type Scope = ResourceAttribute[];
export type SearchFilterKey = string;
export type SearchFilterValue = string;
export interface SearchProductsAsAdminInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
PortfolioId?: Id;
/**
* The search filters. If no search filters are specified, the output includes all products to which the administrator has access.
*/
Filters?: ProductViewFilters;
/**
* The sort field. If no value is specified, the results are not sorted.
*/
SortBy?: ProductViewSortBy;
/**
* The sort order. If no value is specified, the results are not sorted.
*/
SortOrder?: SortOrder;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* Access level of the source of the product.
*/
ProductSource?: ProductSource;
}
export interface SearchProductsAsAdminOutput {
/**
* Information about the product views.
*/
ProductViewDetails?: ProductViewDetails;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface SearchProductsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The search filters. If no search filters are specified, the output includes all products to which the caller has access.
*/
Filters?: ProductViewFilters;
/**
* The maximum number of items to return with this call.
*/
PageSize?: PageSize;
/**
* The sort field. If no value is specified, the results are not sorted.
*/
SortBy?: ProductViewSortBy;
/**
* The sort order. If no value is specified, the results are not sorted.
*/
SortOrder?: SortOrder;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface SearchProductsOutput {
/**
* Information about the product views.
*/
ProductViewSummaries?: ProductViewSummaries;
/**
* The product view aggregations.
*/
ProductViewAggregations?: ProductViewAggregations;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export interface SearchProvisionedProductsInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The access level to use to obtain results. The default is User.
*/
AccessLevelFilter?: AccessLevelFilter;
/**
* The search filters. When the key is SearchQuery, the searchable fields are arn, createdTime, id, lastRecordId, idempotencyToken, name, physicalId, productId, provisioningArtifact, type, status, tags, userArn, and userArnSession. Example: "SearchQuery":["status:AVAILABLE"]
*/
Filters?: ProvisionedProductFilters;
/**
* The sort field. If no value is specified, the results are not sorted. The valid values are arn, id, name, and lastRecordId.
*/
SortBy?: SortField;
/**
* The sort order. If no value is specified, the results are not sorted.
*/
SortOrder?: SortOrder;
/**
* The maximum number of items to return with this call.
*/
PageSize?: SearchProvisionedProductsPageSize;
/**
* The page token for the next set of results. To retrieve the first set of results, use null.
*/
PageToken?: PageToken;
}
export interface SearchProvisionedProductsOutput {
/**
* Information about the provisioned products.
*/
ProvisionedProducts?: ProvisionedProductAttributes;
/**
* The number of provisioned products found.
*/
TotalResultsCount?: TotalResultsCount;
/**
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
*/
NextPageToken?: PageToken;
}
export type SearchProvisionedProductsPageSize = number;
export interface ServiceActionAssociation {
/**
* The self-service action identifier. For example, act-fs7abcd89wxyz.
*/
ServiceActionId: Id;
/**
* The product identifier. For example, prod-abcdzk7xy33qa.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.
*/
ProvisioningArtifactId: Id;
}
export type ServiceActionAssociationErrorCode = "DUPLICATE_RESOURCE"|"INTERNAL_FAILURE"|"LIMIT_EXCEEDED"|"RESOURCE_NOT_FOUND"|"THROTTLING"|string;
export type ServiceActionAssociationErrorMessage = string;
export type ServiceActionAssociations = ServiceActionAssociation[];
export type ServiceActionDefinitionKey = "Name"|"Version"|"AssumeRole"|"Parameters"|string;
export type ServiceActionDefinitionMap = {[key: string]: ServiceActionDefinitionValue};
export type ServiceActionDefinitionType = "SSM_AUTOMATION"|string;
export type ServiceActionDefinitionValue = string;
export type ServiceActionDescription = string;
export interface ServiceActionDetail {
/**
* Summary information about the self-service action.
*/
ServiceActionSummary?: ServiceActionSummary;
/**
* A map that defines the self-service action.
*/
Definition?: ServiceActionDefinitionMap;
}
export type ServiceActionName = string;
export type ServiceActionSummaries = ServiceActionSummary[];
export interface ServiceActionSummary {
/**
* The self-service action identifier.
*/
Id?: Id;
/**
* The self-service action name.
*/
Name?: ServiceActionName;
/**
* The self-service action description.
*/
Description?: ServiceActionDescription;
/**
* The self-service action definition type. For example, SSM_AUTOMATION.
*/
DefinitionType?: ServiceActionDefinitionType;
}
export interface ShareDetails {
/**
* List of accounts for whom the operation succeeded.
*/
SuccessfulShares?: SuccessfulShares;
/**
* List of errors.
*/
ShareErrors?: ShareErrors;
}
export interface ShareError {
/**
* List of accounts impacted by the error.
*/
Accounts?: Namespaces;
/**
* Information about the error.
*/
Message?: Message;
/**
* Error type that happened when processing the operation.
*/
Error?: Error;
}
export type ShareErrors = ShareError[];
export type ShareStatus = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"ERROR"|string;
export type SortField = string;
export type SortOrder = "ASCENDING"|"DESCENDING"|string;
export type SourceProvisioningArtifactProperties = SourceProvisioningArtifactPropertiesMap[];
export type SourceProvisioningArtifactPropertiesMap = {[key: string]: ProvisioningArtifactPropertyValue};
export interface StackInstance {
/**
* The name of the AWS account that the stack instance is associated with.
*/
Account?: AccountId;
/**
* The name of the AWS region that the stack instance is associated with.
*/
Region?: Region;
/**
* The status of the stack instance, in terms of its synchronization with its associated stack set. INOPERABLE: A DeleteStackInstances operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further UpdateStackSet operations. You might need to perform a DeleteStackInstances operation, with RetainStacks set to true, to delete the stack instance, and then delete the stack manually. OUTDATED: The stack isn't currently up to date with the stack set because either the associated stack failed during a CreateStackSet or UpdateStackSet operation, or the stack was part of a CreateStackSet or UpdateStackSet operation that failed or was stopped before the stack was created or updated. CURRENT: The stack is currently up to date with the stack set.
*/
StackInstanceStatus?: StackInstanceStatus;
}
export type StackInstanceStatus = "CURRENT"|"OUTDATED"|"INOPERABLE"|string;
export type StackInstances = StackInstance[];
export type StackSetAccounts = AccountId[];
export type StackSetFailureToleranceCount = number;
export type StackSetFailureTolerancePercentage = number;
export type StackSetMaxConcurrencyCount = number;
export type StackSetMaxConcurrencyPercentage = number;
export type StackSetOperationType = "CREATE"|"UPDATE"|"DELETE"|string;
export type StackSetRegions = Region[];
export type Status = "AVAILABLE"|"CREATING"|"FAILED"|string;
export type StatusDetail = string;
export type StatusMessage = string;
export type SuccessfulShares = AccountId[];
export type SupportDescription = string;
export type SupportEmail = string;
export type SupportUrl = string;
export interface Tag {
/**
* The tag key.
*/
Key: TagKey;
/**
* The value for this key.
*/
Value: TagValue;
}
export type TagKey = string;
export type TagKeys = TagKey[];
export type TagOptionActive = boolean;
export interface TagOptionDetail {
/**
* The TagOption key.
*/
Key?: TagOptionKey;
/**
* The TagOption value.
*/
Value?: TagOptionValue;
/**
* The TagOption active state.
*/
Active?: TagOptionActive;
/**
* The TagOption identifier.
*/
Id?: TagOptionId;
}
export type TagOptionDetails = TagOptionDetail[];
export type TagOptionId = string;
export type TagOptionKey = string;
export type TagOptionSummaries = TagOptionSummary[];
export interface TagOptionSummary {
/**
* The TagOption key.
*/
Key?: TagOptionKey;
/**
* The TagOption value.
*/
Values?: TagOptionValues;
}
export type TagOptionValue = string;
export type TagOptionValues = TagOptionValue[];
export type TagValue = string;
export type Tags = Tag[];
export interface TerminateProvisionedProductInput {
/**
* The name of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.
*/
ProvisionedProductName?: ProvisionedProductNameOrArn;
/**
* The identifier of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.
*/
ProvisionedProductId?: Id;
/**
* An idempotency token that uniquely identifies the termination request. This token is only valid during the termination process. After the provisioned product is terminated, subsequent requests to terminate the same provisioned product always return ResourceNotFound.
*/
TerminateToken: IdempotencyToken;
/**
* If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources.
*/
IgnoreErrors?: IgnoreErrors;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface TerminateProvisionedProductOutput {
/**
* Information about the result of this request.
*/
RecordDetail?: RecordDetail;
}
export type TotalResultsCount = number;
export interface UpdateConstraintInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the constraint.
*/
Id: Id;
/**
* The updated description of the constraint.
*/
Description?: ConstraintDescription;
/**
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an AWS CloudFormation stack set. TEMPLATE Specify the Rules property. For more information, see Template Constraint Rules.
*/
Parameters?: ConstraintParameters;
}
export interface UpdateConstraintOutput {
/**
* Information about the constraint.
*/
ConstraintDetail?: ConstraintDetail;
/**
* The constraint parameters.
*/
ConstraintParameters?: ConstraintParameters;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface UpdatePortfolioInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The portfolio identifier.
*/
Id: Id;
/**
* The name to use for display purposes.
*/
DisplayName?: PortfolioDisplayName;
/**
* The updated description of the portfolio.
*/
Description?: PortfolioDescription;
/**
* The updated name of the portfolio provider.
*/
ProviderName?: ProviderName;
/**
* The tags to add.
*/
AddTags?: AddTags;
/**
* The tags to remove.
*/
RemoveTags?: TagKeys;
}
export interface UpdatePortfolioOutput {
/**
* Information about the portfolio.
*/
PortfolioDetail?: PortfolioDetail;
/**
* Information about the tags associated with the portfolio.
*/
Tags?: Tags;
}
export interface UpdateProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
Id: Id;
/**
* The updated product name.
*/
Name?: ProductViewName;
/**
* The updated owner of the product.
*/
Owner?: ProductViewOwner;
/**
* The updated description of the product.
*/
Description?: ProductViewShortDescription;
/**
* The updated distributor of the product.
*/
Distributor?: ProductViewOwner;
/**
* The updated support description for the product.
*/
SupportDescription?: SupportDescription;
/**
* The updated support email for the product.
*/
SupportEmail?: SupportEmail;
/**
* The updated support URL for the product.
*/
SupportUrl?: SupportUrl;
/**
* The tags to add to the product.
*/
AddTags?: AddTags;
/**
* The tags to remove from the product.
*/
RemoveTags?: TagKeys;
}
export interface UpdateProductOutput {
/**
* Information about the product view.
*/
ProductViewDetail?: ProductViewDetail;
/**
* Information about the tags associated with the product.
*/
Tags?: Tags;
}
export interface UpdateProvisionedProductInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The name of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.
*/
ProvisionedProductName?: ProvisionedProductNameOrArn;
/**
* The identifier of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.
*/
ProvisionedProductId?: Id;
/**
* The identifier of the product.
*/
ProductId?: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId?: Id;
/**
* The new path identifier. This value is optional if the product has a default path, and required if the product has more than one path.
*/
PathId?: Id;
/**
* The new parameters.
*/
ProvisioningParameters?: UpdateProvisioningParameters;
/**
* An object that contains information about the provisioning preferences for a stack set.
*/
ProvisioningPreferences?: UpdateProvisioningPreferences;
/**
* One or more tags. Requires the product to have RESOURCE_UPDATE constraint with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
*/
Tags?: Tags;
/**
* The idempotency token that uniquely identifies the provisioning update request.
*/
UpdateToken: IdempotencyToken;
}
export interface UpdateProvisionedProductOutput {
/**
* Information about the result of the request.
*/
RecordDetail?: RecordDetail;
}
export interface UpdateProvisionedProductPropertiesInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The identifier of the provisioned product.
*/
ProvisionedProductId: Id;
/**
* A map that contains the provisioned product properties to be updated. The OWNER key only accepts user ARNs. The owner is the user that is allowed to see, update, terminate, and execute service actions in the provisioned product. The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory. If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.
*/
ProvisionedProductProperties: ProvisionedProductProperties;
/**
* The idempotency token that uniquely identifies the provisioning product update request.
*/
IdempotencyToken: IdempotencyToken;
}
export interface UpdateProvisionedProductPropertiesOutput {
/**
* The provisioned product identifier.
*/
ProvisionedProductId?: Id;
/**
* A map that contains the properties updated.
*/
ProvisionedProductProperties?: ProvisionedProductProperties;
/**
* The identifier of the record.
*/
RecordId?: Id;
/**
* The status of the request.
*/
Status?: RecordStatus;
}
export interface UpdateProvisioningArtifactInput {
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
/**
* The product identifier.
*/
ProductId: Id;
/**
* The identifier of the provisioning artifact.
*/
ProvisioningArtifactId: Id;
/**
* The updated name of the provisioning artifact.
*/
Name?: ProvisioningArtifactName;
/**
* The updated description of the provisioning artifact.
*/
Description?: ProvisioningArtifactDescription;
/**
* Indicates whether the product version is active.
*/
Active?: ProvisioningArtifactActive;
/**
* Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. The DEFAULT value indicates that the product version is active. The administrator can set the guidance to DEPRECATED to inform users that the product version is deprecated. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
*/
Guidance?: ProvisioningArtifactGuidance;
}
export interface UpdateProvisioningArtifactOutput {
/**
* Information about the provisioning artifact.
*/
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
/**
* The URL of the CloudFormation template in Amazon S3.
*/
Info?: ProvisioningArtifactInfo;
/**
* The status of the current request.
*/
Status?: Status;
}
export interface UpdateProvisioningParameter {
/**
* The parameter key.
*/
Key?: ParameterKey;
/**
* The parameter value.
*/
Value?: ParameterValue;
/**
* If set to true, Value is ignored and the previous parameter value is kept.
*/
UsePreviousValue?: UsePreviousValue;
}
export type UpdateProvisioningParameters = UpdateProvisioningParameter[];
export interface UpdateProvisioningPreferences {
/**
* One or more AWS accounts that will have access to the provisioned product. Applicable only to a CFN_STACKSET provisioned product type. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all accounts from the STACKSET constraint.
*/
StackSetAccounts?: StackSetAccounts;
/**
* One or more AWS Regions where the provisioned product will be available. Applicable only to a CFN_STACKSET provisioned product type. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all regions from the STACKSET constraint.
*/
StackSetRegions?: StackSetRegions;
/**
* The number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both. The default value is 0 if no value is specified.
*/
StackSetFailureToleranceCount?: StackSetFailureToleranceCount;
/**
* The percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both.
*/
StackSetFailureTolerancePercentage?: StackSetFailureTolerancePercentage;
/**
* The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of StackSetFailureToleranceCount. StackSetMaxConcurrentCount is at most one more than the StackSetFailureToleranceCount. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
*/
StackSetMaxConcurrencyCount?: StackSetMaxConcurrencyCount;
/**
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
*/
StackSetMaxConcurrencyPercentage?: StackSetMaxConcurrencyPercentage;
/**
* Determines what action AWS Service Catalog performs to a stack set or a stack instance represented by the provisioned product. The default value is UPDATE if nothing is specified. Applicable only to a CFN_STACKSET provisioned product type. CREATE Creates a new stack instance in the stack set represented by the provisioned product. In this case, only new stack instances are created based on accounts and regions; if new ProductId or ProvisioningArtifactID are passed, they will be ignored. UPDATE Updates the stack set represented by the provisioned product and also its stack instances. DELETE Deletes a stack instance in the stack set represented by the provisioned product.
*/
StackSetOperationType?: StackSetOperationType;
}
export interface UpdateServiceActionInput {
/**
* The self-service action identifier.
*/
Id: Id;
/**
* The self-service action name.
*/
Name?: ServiceActionName;
/**
* A map that defines the self-service action.
*/
Definition?: ServiceActionDefinitionMap;
/**
* The self-service action description.
*/
Description?: ServiceActionDescription;
/**
* The language code. en - English (default) jp - Japanese zh - Chinese
*/
AcceptLanguage?: AcceptLanguage;
}
export interface UpdateServiceActionOutput {
/**
* Detailed information about the self-service action.
*/
ServiceActionDetail?: ServiceActionDetail;
}
export interface UpdateTagOptionInput {
/**
* The TagOption identifier.
*/
Id: TagOptionId;
/**
* The updated value.
*/
Value?: TagOptionValue;
/**
* The updated active state.
*/
Active?: TagOptionActive;
}
export interface UpdateTagOptionOutput {
/**
* Information about the TagOption.
*/
TagOptionDetail?: TagOptionDetail;
}
export type UpdatedTime = Date;
export interface UsageInstruction {
/**
* The usage instruction type for the value.
*/
Type?: InstructionType;
/**
* The usage instruction value for this type.
*/
Value?: InstructionValue;
}
export type UsageInstructions = UsageInstruction[];
export type UsePreviousValue = boolean;
export type UserArn = string;
export type UserArnSession = string;
export type Verbose = boolean;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2015-12-10"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the ServiceCatalog client.
*/
export import Types = ServiceCatalog;
}
export = ServiceCatalog;