summaryrefslogtreecommitdiff
path: root/data/en_us/eiam-developerapi/2022-02-25/api-docs.php
blob: ba5dbfa69c0c723dbc4eee59af63546127ce25c6 (plain)
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
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'ROA', 'product' => 'Eiam-developerapi', 'version' => '2022-02-25'],
    'directories' => [
        [
            'children' => ['ObtainJwtAuthenticationToken', 'FetchOAuthAuthenticationToken', 'GenerateJwtAuthenticationToken', 'ListAuthenticationTokens', 'ObtainJwtAuthenticationTokenByDerivedShortToken', 'ReinstateAuthenticationToken', 'ReinstateAuthenticationTokenByConsumer', 'RevokeAuthenticationToken', 'RevokeAuthenticationTokenByConsumer', 'ValidateAuthenticationToken'],
            'type' => 'directory',
            'title' => 'Authentication token API',
        ],
        [
            'children' => ['CreateUserExclusiveCredential', 'ObtainCredential'],
            'type' => 'directory',
            'title' => 'Credential API',
        ],
        [
            'children' => ['ObtainCloudAccountRoleAccessCredential'],
            'type' => 'directory',
            'title' => 'Cloud role access credential API',
        ],
        [
            'children' => ['GenerateTokenByAuthorizationServer', 'GenerateToken', 'GenerateDeviceCode', 'GetUserInfo', 'RevokeToken'],
            'type' => 'directory',
            'title' => 'OIDC API',
        ],
        [
            'children' => ['GetApplicationProvisioningScope'],
            'type' => 'directory',
            'title' => 'Authorization scope API',
        ],
        [
            'children' => ['CreateOrganizationalUnit', 'PatchOrganizationalUnit', 'GetOrganizationalUnit', 'DeleteOrganizationalUnit', 'ListOrganizationalUnits', 'ListOrganizationalUnitParentIds', 'GetOrganizationalUnitIdByExternalId'],
            'type' => 'directory',
            'title' => 'Organization management API',
        ],
        [
            'children' => ['CreateUser', 'PatchUser', 'GetUser', 'UpdateUserPassword', 'EnableUser', 'DisableUser', 'GetUserIdByEmail', 'GetUserIdByPhoneNumber', 'GetUserIdByUserExternalId', 'GetUserIdByUsername', 'SetUserPrimaryOrganizationalUnit', 'AddUserToOrganizationalUnits', 'RemoveUserFromOrganizationalUnits', 'ListGroupsForUser'],
            'type' => 'directory',
            'title' => 'Account management API',
        ],
        [
            'children' => ['GetGroup', 'PatchGroup', 'AddUsersToGroup', 'ListUsersForGroup'],
            'type' => 'directory',
            'title' => 'Account group management API',
        ],
        [
            'children' => ['CreateGroup', 'DeleteGroup', 'DeleteUser', 'ListGroups', 'ListUsers', 'RemoveUsersFromGroup'],
            'title' => 'Others',
            'type' => 'directory',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'AddUserToOrganizationalUnits' => [
            'summary' => 'Adds an EIAM account to one or more EIAM organizations. These organizations serve as subordinate organizations for the account. If the account is already a member of a specified organization, no update is performed.',
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/addUserToOrganizationalUnits',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information.'."\n"
                        .'Format: Bearer ${access\\_token}.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitIds' => [
                                'title' => '',
                                'description' => 'A list of organization IDs.',
                                'type' => 'array',
                                'items' => ['description' => 'The organization ID.', 'type' => 'string', 'required' => false, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                'required' => true,
                                'example' => '[ou_wovwffm62xifdziem7an7xxxxx]',
                            ],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'AddUserToOrganizationalUnits',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'AddUsersToGroup' => [
            'summary' => 'Adds multiple Employee Identity and Access Management (EIAM) accounts to an EIAM group. If the accounts are already added to the specified group, no update is performed.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}/actions/addUsersToGroup',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasIEJFYH'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['title' => '', 'description' => 'The authentication information. The value is in the Bearer ${access_token} format. Example: Bearer ATxxxx.'."\n", 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The instance ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The application ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The group ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'group_wovwffm62xifdziem7an7xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.'."\n",
                        'type' => 'object',
                        'properties' => [
                            'userIds' => [
                                'title' => '',
                                'description' => 'The account IDs.'."\n",
                                'type' => 'array',
                                'items' => ['description' => 'The account ID.'."\n", 'type' => 'string', 'required' => false, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                                'required' => true,
                                'example' => '[user_d6sbsuumeta4h66ec3il7yxxxx}',
                            ],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'AddUsersToGroup',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'CreateGroup' => [
            'path' => '/v2/{instanceId}/{applicationId}/groups',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas7VNWU7'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'groupName' => ['description' => 'The organization name.', 'type' => 'string', 'required' => true, 'example' => 'name001', 'title' => ''],
                            'groupExternalId' => ['description' => 'The external ID.', 'type' => 'string', 'example' => 'group_2bo6lefcewdausyyxxxx', 'title' => '', 'required' => false],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'GroupIdObject',
                        'description' => 'GroupIdObject',
                        'type' => 'object',
                        'properties' => [
                            'groupId' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'group_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateGroup',
            'summary' => 'Creates a group.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"groupId\\": \\"group_wovwffm62xifdziem7an7xxxxx\\"\\n}","type":"json"}]',
        ],
        'CreateOrganizationalUnit' => [
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitName' => ['description' => 'The name of the organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'name001', 'title' => ''],
                            'parentId' => ['description' => 'The ID of the parent organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'organizationalUnitExternalId' => ['description' => 'The external ID of the organizational unit. The external ID can be used to map external data to the data of the organizational unit in Employee Identity and Access Management (EIAM) of Identity as a Service (IDaaS). By default, the external ID is the organizational unit ID.'."\n"
                                ."\n"
                                .'For organizational units with the same source type and source ID, each organizational unit has a unique external ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => '', 'required' => false],
                            'description' => ['description' => 'The description of the organizational unit.', 'type' => 'string', 'example' => '测试组织', 'title' => '', 'required' => false],
                        ],
                        'required' => false,
                        'example' => 'app_xx001',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'OrganizationalUnitIdObject',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitId' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateOrganizationalUnit',
            'summary' => 'Creates an organizational unit.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内|'."\n"
                .'| 400  | MissingParameter.OrganizationalUnitName | The specified parameter:OrganizationalUnitName is required!  | 缺少组织名称参数|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx| 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:manage_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"organizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\"\\n}","type":"json"}]',
        ],
        'CreateUser' => [
            'summary' => 'Creates a new EIAM account in a specified organization.',
            'path' => '/v2/{instanceId}/{applicationId}/users',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information.'."\n"
                        .'Format: `Bearer ${access_token}`.'."\n"
                        .'Example: `Bearer ATxxxx`.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the instance.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the application.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'username' => ['description' => 'The username. It can contain letters, digits, and the following special characters: underscore (`_`), period (`.`), at sign (`@`), and hyphen (`-`). The maximum length is 256 characters.', 'type' => 'string', 'required' => true, 'example' => 'name001', 'title' => ''],
                            'displayName' => ['description' => 'The display name. The maximum length is 128 characters.', 'type' => 'string', 'example' => 'display_name001', 'title' => '', 'required' => false],
                            'password' => ['description' => 'The account password. For password complexity rules, see the password policy in the IDaaS console.', 'type' => 'string', 'example' => 'xxxxx', 'title' => '', 'required' => false],
                            'phoneRegion' => ['description' => 'The phone region code. For example, the code for the Chinese mainland is `86`. Do not include a `00` prefix or a plus sign (`+`). This parameter is required if `phoneNumber` is set.', 'type' => 'string', 'example' => '86', 'title' => '', 'required' => false],
                            'phoneNumber' => ['description' => 'The account phone number. It must be 6 to 15 digits long.', 'type' => 'string', 'example' => '156xxxxxxx', 'title' => '', 'required' => false],
                            'phoneNumberVerified' => ['description' => 'Specifies whether the phone number is verified. This parameter is required if `phoneNumber` is set. Typically, set this to `true`.', 'type' => 'boolean', 'example' => 'true', 'title' => '', 'required' => false],
                            'email' => ['description' => 'The email address. The local-part of the address can contain uppercase and lowercase letters, digits, periods (`.`), underscores (`_`), and hyphens (`-`). The maximum length is 128 characters.', 'type' => 'string', 'example' => 'example@example.com', 'title' => '', 'required' => false],
                            'emailVerified' => ['description' => 'Specifies whether the email is verified. This parameter is required if `email` is set. Typically, set this to `true`.', 'type' => 'boolean', 'example' => 'true', 'title' => '', 'required' => false],
                            'userExternalId' => ['description' => 'The external user ID, used to associate the account with an external system. The maximum length is 128 characters. If unspecified, it defaults to the account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => '', 'required' => false],
                            'primaryOrganizationalUnitId' => ['description' => 'The ID of the primary organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'description' => ['description' => 'The account description. The maximum length is 256 characters.', 'type' => 'string', 'example' => '测试账户', 'title' => '', 'required' => false],
                            'passwordInitializationConfig' => [
                                'title' => '',
                                'description' => 'The password initialization configuration.',
                                'type' => 'object',
                                'properties' => [
                                    'passwordInitializationPolicyPriority' => ['description' => 'The priority of the password initialization policy. Valid values:'."\n"
                                        ."\n"
                                        .'- `global`: Uses the instance-level password initialization policy and ignores the custom settings in this request. For more information, see the password initialization policy configuration in the IDaaS console.'."\n"
                                        ."\n"
                                        .'- `custom`: Uses the custom password initialization policy defined in this request. This includes settings for forced password updates, the initialization type, and notification channels.', 'type' => 'string', 'example' => 'global', 'title' => '', 'required' => false],
                                    'passwordForcedUpdateStatus' => ['description' => 'The password forced update status. By default, this feature is disabled. Valid values:'."\n"
                                        ."\n"
                                        .'- `enabled`: Enables the feature.'."\n"
                                        ."\n"
                                        .'- `disabled`: Disables the feature.', 'type' => 'string', 'example' => 'enabled', 'title' => '', 'required' => false],
                                    'userNotificationChannels' => [
                                        'title' => '',
                                        'description' => 'The user notification channels. Valid values:'."\n"
                                            ."\n"
                                            .'- `email`: Email'."\n"
                                            ."\n"
                                            .'- `sms`: SMS',
                                        'type' => 'array',
                                        'items' => ['description' => 'The user notification channel.', 'type' => 'string', 'required' => false, 'example' => 'email', 'title' => ''],
                                        'required' => false,
                                        'example' => 'sms',
                                    ],
                                    'passwordInitializationType' => ['description' => 'The password initialization type. Valid values:'."\n"
                                        ."\n"
                                        .'- `random`: A randomly generated password.', 'type' => 'string', 'example' => 'random', 'title' => '', 'required' => false],
                                ],
                                'required' => false,
                                'example' => '',
                            ],
                            'customFields' => [
                                'title' => '',
                                'description' => 'A list of custom fields for the account.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'An object containing the name and value of a custom field.',
                                    'type' => 'object',
                                    'properties' => [
                                        'fieldName' => ['description' => 'The name of the custom field. You can view the field\'s data type and value range in the IDaaS console.', 'type' => 'string', 'example' => 'age', 'title' => '', 'required' => false],
                                        'fieldValue' => ['description' => 'The value of the custom field.', 'type' => 'string', 'example' => 'fieldValue_001', 'title' => '', 'required' => false],
                                    ],
                                    'required' => false,
                                    'title' => '',
                                    'example' => '',
                                ],
                                'required' => false,
                                'example' => '',
                            ],
                        ],
                        'required' => false,
                        'example' => 'app_xx001',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response object.',
                        'type' => 'object',
                        'properties' => [
                            'userId' => ['description' => 'The user ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\"\\n}","type":"json"}]',
            'title' => 'CreateUser',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | invalid_request | Access token application id not match  | 请求无效,token信息与参数应用ID不一致|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不存在或组织不在同步范围内|'."\n"
                .'| 404  | instance\\_not\\_found | Instance id not found: idaas_ue2jvisn35ea5lmthk267xxxxx | 实例不存在 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 400  | MissingParameter.Username | The specified parameter:Username is required!  | 缺少账户名参数 |'."\n"
                .'| 400  | MissingParameter.PhoneRegion | The specified parameter:PhoneRegion is required!  | 缺少手机区号参数,若已设置手机号,此为必填项 |'."\n"
                .'| 400  | MissingParameter.PhoneNumberVerified | The specified parameter:PhoneRegion is required!  | 缺少手机区号是否已验证参数,若已设置手机号,此为必填项 |'."\n"
                .'| 400  | MissingParameter.Email | The specified parameter:Email is required!  | 缺少邮箱是否已验证参数,若已设置邮箱,此为必填项 |'."\n"
                .'| 400  | MissingParameter.Username | The specified parameter:Username is required!  | 缺少账户名参数 |'."\n"
                .'| 400  | MissingParameter.PrimaryOrganizationalUnitId | The specified parameter:PrimaryOrganizationalUnitId is required!  | 缺少主组织参数 |'."\n"
                .'| 400  | InvalidParameter.PhoneNumber | The specified parameter:PhoneNumber is invalid.  | 无效的手机号 |'."\n"
                .'| 400  | InvalidParameter.PhoneRegion | The specified parameter:PhoneRegion is invalid.  | 无效的手机区号 |'."\n"
                .'| 400  | InvalidParameter.Password | The specified parameter:Password is invalid.  | 密码不符合规则,请参考IDaaS控制台密码规则 |'."\n"
                .'| 400  | InvalidParameter.Email | The specified parameter:Email is invalid.  | 无效的邮箱 |'."\n"
                .'| 400  | InvalidParameter.DisplayName | The specified parameter:DisplayName is invalid.  | 账户显示名过长 |'."\n"
                .'| 400  | InvalidParameter.Description | The specified parameter:Description is invalid.  | 账户描述过长 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'CreateUserExclusiveCredential' => [
            'summary' => 'Creates a user exclusive credential.',
            'path' => '/v2/{instanceId}/credentials/_/actions/createUserExclusive',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value must be in the `Bearer ${access_token}` format.'."\n"
                        ."\n"
                        .'> The access token must be issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the IDaaS instance.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'credentialIdentifier' => ['description' => 'The credential identifier.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'credential_identifier_test'],
                            'credentialName' => ['description' => 'The credential name.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'credential_name'],
                            'credentialScenarioLabel' => ['description' => 'The use case for the credential. Valid values:'."\n"
                                ."\n"
                                .'- `llm`: Large Language Model (LLM).'."\n"
                                ."\n"
                                .'- `saas`: Third-party Software as a Service (SaaS).', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'llm'],
                            'credentialType' => ['description' => 'The credential type. Valid values:'."\n"
                                ."\n"
                                .'- `api_key`: API key credential.'."\n"
                                ."\n"
                                .'- `oauth_client`: OAuth client credential.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'api_key'],
                            'credentialContent' => [
                                'type' => 'object',
                                'properties' => [
                                    'apiKeyContent' => [
                                        'type' => 'object',
                                        'properties' => [
                                            'apiKey' => ['description' => 'The value of the API key. This parameter is required if `credentialType` is set to `api_key`.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'sk-nsklncmwizncxxxx'],
                                        ],
                                        'title' => '',
                                        'description' => 'The content of the API key credential. This parameter is required if `credentialType` is set to `api_key`.',
                                        'required' => false,
                                        'example' => '',
                                    ],
                                ],
                                'required' => true,
                                'title' => '',
                                'description' => 'The content of the credential.',
                                'example' => '',
                            ],
                            'description' => ['description' => 'The description of the credential.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'credential_description'],
                            'credentialExternalId' => ['type' => 'string', 'description' => '', 'title' => '', 'example' => ''],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'credentialId' => ['description' => 'The credential ID.', 'type' => 'string', 'title' => '', 'example' => 'cred_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                            'credentialIdentifier' => ['description' => 'The credential identifier.', 'type' => 'string', 'title' => '', 'example' => 'credential_identifier_test'],
                        ],
                        'description' => 'The response body.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'CreateUserExclusiveCredential',
            'description' => 'This API operation uses an IDaaS-issued access token for authentication and authorization.'."\n"
                ."\n"
                .'The access token must have the "Manage Static Credentials" permission for the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The required scope is `urn:cloud:idaas:pam|credential:manage`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"credentialId\\": \\"cred_mkv7rgt4d7i4u7zqtzev2mxxxx\\",\\n  \\"credentialIdentifier\\": \\"credential_identifier_test\\"\\n}","type":"json"}]',
        ],
        'DeleteGroup' => [
            'summary' => 'Deletes a group.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}',
            'methods' => ['delete'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasJ7WKML', 'FEATUREidaas7VNWU7'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['title' => '', 'description' => 'The authentication information. The value is in the Bearer ${access_token} format. Example: Bearer ATxxxx.'."\n", 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The instance ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The application ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The group ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'group_wovwffm62xifdziem7an7xxxxx'],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'DeleteGroup',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DeleteOrganizationalUnit' => [
            'summary' => 'Deletes an organizational unit.',
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits/{organizationalUnitId}',
            'methods' => ['delete'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij'."\n", 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'organizationalUnitId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'DeleteOrganizationalUnit',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内或不存在|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:manage_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'DeleteUser' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}',
            'methods' => ['delete'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'DeleteUser',
            'summary' => 'Deletes an Employee Identity and Access Management (EIAM) account.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | ResourceNotFound.User | The specified User resource: user_d6sbsuumeta4h66ec3il7yxxxx not found.  | 账户不存在 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'DisableUser' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/disable',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas1FXU07'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_001', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'DisableUser',
            'summary' => 'Disables an Employee Identity and Access Management (EIAM) account.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400 | invalid_token | Access token is not valid | '."\n"
                .'| 404 | ResourceNotFound.User | The specified User resource: user_xxxx not found. | '."\n"
                .'| 404 | application_not_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | '."\n"
                .'| 403 | application_disabled | Application is disabled | '."\n"
                .'| 403 | application_api_disabled | Application api invoke disabled | '."\n"
                .'| 403 | permission_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | '."\n"
                .'| 500 | Internal Server Error | Internal Server Error |',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'EnableUser' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/enable',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas1FXU07'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_001', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'EnableUser',
            'summary' => 'Enables an Employee Identity and Access Management (EIAM) account.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400 | invalid_token | Access token is not valid | '."\n"
                .'| 404 | ResourceNotFound.User | The specified User resource: user_xxxx not found. | '."\n"
                .'| 404 | application_not_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | '."\n"
                .'| 403 | application_disabled | Application is disabled | '."\n"
                .'| 403 | application_api_disabled | Application api invoke disabled | '."\n"
                .'| 403 | permission_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | '."\n"
                .'| 500 | Internal Server Error | Internal Server Error |',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'FetchOAuthAuthenticationToken' => [
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/fetchOAuthAccessToken',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The format is \\`Bearer ${access\\_token}\\`.'."\n"
                        ."\n"
                        .'> Enter the access token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'credentialProviderIdentifier' => ['description' => 'The identifier of the credential provider.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_example_identifier'],
                            'scope' => ['description' => 'The scope for the OAuth protocol.'."\n"
                                ."\n"
                                .'> If you do not specify this parameter, the scope of the issued OAuth access token is determined by the scope configuration of the credential provider.'."\n"
                                ."\n"
                                .'><notice>'."\n"
                                ."\n"
                                .'Separate multiple scope values with spaces.'."\n"
                                ."\n"
                                .'></notice>', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'example:test_01 example:test_02'],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                            'authenticationTokenId' => ['description' => 'The authentication token ID.', 'type' => 'string', 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                            'credentialProviderId' => ['description' => 'The credential provider ID.', 'type' => 'string', 'title' => '', 'example' => 'atp_01kr2cmj5gxxx4fvmls2e93dxxxxx'],
                            'createTime' => ['description' => 'The time when the authentication token was created. This is a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'updateTime' => ['description' => 'The time when the authentication token was last updated. This is a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'authenticationTokenType' => ['description' => 'The type of the authentication token.'."\n"
                                ."\n"
                                .'> The value is fixed to `oauth_access_token`, which indicates an OAuth access token.', 'type' => 'string', 'title' => '', 'example' => 'oauth_access_token'],
                            'revoked' => ['description' => 'Indicates whether the authentication token is revoked.', 'type' => 'boolean', 'title' => '', 'example' => 'false'],
                            'creatorType' => ['description' => 'The type of the creator of the authentication token. Valid value:'."\n"
                                ."\n"
                                .'- \\`application\\`: An application.', 'type' => 'string', 'title' => '', 'example' => 'application'],
                            'creatorId' => ['description' => 'The ID of the creator of the authentication token.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                            'consumerType' => ['description' => 'The type of the consumer of the authentication token. Valid values:'."\n"
                                ."\n"
                                .'- \\`application\\`: An application.'."\n"
                                ."\n"
                                .'- \\`custom\\`: A custom type.', 'type' => 'string', 'title' => '', 'example' => 'application'],
                            'consumerId' => ['description' => 'The ID of the consumer of the authentication token.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                            'expirationTime' => ['description' => 'The time when the authentication token expires. This is a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1772693568000'],
                            'oauthAccessTokenContent' => [
                                'type' => 'object',
                                'properties' => [
                                    'accessTokenValue' => ['description' => 'The \\`access\\_token\\` field in the response from the token endpoint of the OAuth protocol.', 'type' => 'string', 'title' => '', 'example' => 'DgEBAGP2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                                    'tokenType' => ['description' => 'The \\`token\\_type\\` field in the response from the token endpoint of the OAuth protocol.', 'type' => 'string', 'title' => '', 'example' => 'Bearer'],
                                    'scope' => ['description' => 'The \\`scope\\` field in the response from the token endpoint of the OAuth protocol.', 'type' => 'string', 'title' => '', 'example' => 'example:test_01 example:test_02'],
                                ],
                                'title' => '',
                                'description' => 'The content of the OAuth access token.',
                                'example' => '',
                            ],
                        ],
                        'description' => 'The details of the OAuth authentication token.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'FetchOAuthAuthenticationToken',
            'summary' => 'Fetches a valid OAuth authentication token.',
            'description' => 'This API performs identity authentication and authorization using an access token issued by IDaaS.'."\n"
                ."\n"
                .'Ensure that the access token has permission to obtain authentication tokens from the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|authentication_token:obtain`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"authenticationTokenId\\": \\"atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx\\",\\n  \\"credentialProviderId\\": \\"atp_01kr2cmj5gxxx4fvmls2e93dxxxxx\\",\\n  \\"createTime\\": 1649830225000,\\n  \\"updateTime\\": 1649830225000,\\n  \\"authenticationTokenType\\": \\"oauth_access_token\\",\\n  \\"revoked\\": false,\\n  \\"creatorType\\": \\"application\\",\\n  \\"creatorId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n  \\"consumerType\\": \\"application\\",\\n  \\"consumerId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n  \\"expirationTime\\": 1772693568000,\\n  \\"oauthAccessTokenContent\\": {\\n    \\"accessTokenValue\\": \\"DgEBAGP2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\\",\\n    \\"tokenType\\": \\"Bearer\\",\\n    \\"scope\\": \\"example:test_01 example:test_02\\"\\n  }\\n}","type":"json"}]',
        ],
        'GenerateDeviceCode' => [
            'summary' => 'Generates a device code.',
            'path' => '/v2/{instanceId}/{applicationId}/oauth2/device/code',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasUATW0R', 'FEATUREidaasLUEH19'],
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'scope',
                    'in' => 'query',
                    'schema' => ['description' => 'The authorization scope.', 'type' => 'string', 'example' => 'xxx', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeviceCodeResponse',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'device_code' => ['description' => 'The device code.', 'type' => 'string', 'example' => 'xxxxx', 'title' => ''],
                            'user_code' => ['description' => 'The user authorization code.', 'type' => 'string', 'example' => 'xxxxx', 'title' => ''],
                            'verification_uri' => ['description' => 'The verification URI.', 'type' => 'string', 'example' => 'https://example.com/authorize/device', 'title' => ''],
                            'verification_uri_complete' => ['description' => 'The complete verification URI.', 'type' => 'string', 'example' => 'https://example.com/authorize/device?user_code='."\n"
                                .'xxxx', 'title' => ''],
                            'expires_in' => ['description' => 'The remaining validity period of the device code. Unit: seconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1200', 'title' => ''],
                            'expires_at' => ['description' => 'The time when the token expires. This value is a UNIX timestamp representing the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1653288641'],
                            'interval' => ['description' => 'The timeout period of the request token. Unit: seconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '5', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GenerateDeviceCode',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_request | Application is not turn device grant flow on| 设备流授权未开启 |'."\n"
                .'| 400  | invalid\\_request | Invalid client id| client id无效 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"device_code\\": \\"xxxxx\\",\\n  \\"user_code\\": \\"xxxxx\\",\\n  \\"verification_uri\\": \\"https://example.com/authorize/device\\",\\n  \\"verification_uri_complete\\": \\"https://example.com/authorize/device?user_code=\\\\nxxxx\\",\\n  \\"expires_in\\": 1200,\\n  \\"expires_at\\": 1653288641,\\n  \\"interval\\": 5\\n}","type":"json"}]',
        ],
        'GenerateJwtAuthenticationToken' => [
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/generateJwt',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter the Access Token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'credentialProviderIdentifier' => ['description' => 'Credential provider identity.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_example_identifier'],
                            'issuer' => ['description' => 'The \\`iss\\` field of the JWT.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'https://test.issuer.com'],
                            'subject' => ['description' => 'The \\`sub\\` field of the JWT.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_jwt_subject'],
                            'audiences' => [
                                'type' => 'array',
                                'items' => ['description' => 'JWT audience.', 'type' => 'string', 'required' => false, 'example' => 'test_jwt_audience', 'title' => ''],
                                'required' => true,
                                'title' => '',
                                'description' => 'The \\`aud\\` field of the JWT.',
                                'example' => '',
                            ],
                            'customClaims' => [
                                'type' => 'object',
                                'additionalProperties' => ['description' => 'Custom claim key-value pairs.', 'type' => 'any', 'title' => '', 'example' => '-'],
                                'title' => '',
                                'description' => 'Custom claims.'."\n"
                                    ."\n"
                                    .'><notice>'."\n"
                                    ."\n"
                                    .'Key-value pairs. Keys must be strings.'."\n"
                                    ."\n"
                                    .'></notice>',
                                'required' => false,
                                'example' => '',
                            ],
                            'expiration' => ['description' => 'The validity period of the JWT, in seconds.', 'type' => 'integer', 'format' => 'int32', 'minimum' => '0', 'exclusiveMinimum' => true, 'title' => '', 'required' => false, 'example' => '900'],
                            'includeDerivedShortToken' => ['description' => 'Whether the generated JWT needs to include a "derived short token".', 'type' => 'boolean', 'title' => '', 'required' => false, 'example' => 'true'],
                        ],
                        'description' => 'Request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'Instance ID.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                            'authenticationTokenId' => ['description' => 'Authentication token ID.', 'type' => 'string', 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                            'credentialProviderId' => ['description' => 'Credential provider ID.', 'type' => 'string', 'title' => '', 'example' => 'atp_01kr2cmj5gxxx4fvmls2e93dxxxxx'],
                            'createTime' => ['description' => 'The creation time of the authentication token, UNIX timestamp, in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'updateTime' => ['description' => 'The update time of the authentication token, UNIX timestamp, in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'authenticationTokenType' => ['description' => 'Authentication token type.'."\n"
                                ."\n"
                                .'> The value is fixed as `jwt`, indicating a JWT authentication token.', 'type' => 'string', 'title' => '', 'example' => 'jwt'],
                            'revoked' => ['description' => 'Whether the authentication token is revoked.', 'type' => 'boolean', 'title' => '', 'example' => 'false'],
                            'creatorType' => ['description' => 'Authentication token creator type. Valid values:'."\n"
                                ."\n"
                                .'- application: Application', 'type' => 'string', 'title' => '', 'example' => 'application'],
                            'creatorId' => ['description' => 'Authentication token creator ID.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                            'consumerType' => ['description' => 'Authentication token consumer type. Valid values:'."\n"
                                ."\n"
                                .'- application: Application'."\n"
                                ."\n"
                                .'- custom: Custom type', 'type' => 'string', 'title' => '', 'example' => 'custom'],
                            'consumerId' => ['description' => 'Authentication token consumer ID.', 'type' => 'string', 'title' => '', 'example' => 'test_jwt_subject'],
                            'expirationTime' => ['description' => 'Authentication token expiration time, UNIX timestamp, in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1772693568000'],
                            'jwtContent' => [
                                'type' => 'object',
                                'properties' => [
                                    'jwtValue' => ['description' => 'JWT content.', 'type' => 'string', 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                                    'derivedShortToken' => ['description' => 'The derived short token of the JWT.', 'type' => 'string', 'title' => '', 'example' => 'sk-Nx2vzxxxxxxxxxxxxxxxxx'],
                                ],
                                'title' => '',
                                'description' => 'JWT authentication token content.',
                                'example' => '',
                            ],
                        ],
                        'description' => 'JWT authentication token details.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'GenerateJwtAuthenticationToken',
            'summary' => 'Generates a JSON Web Token (JWT) authentication token.',
            'description' => 'This API performs identity authentication and authorization using the Access Token issued by IDaaS.'."\n"
                ."\n"
                .'Ensure that the provided Access Token has the authorization to access the "Obtain Authentication Token" feature of the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|authentication_token:obtain`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"authenticationTokenId\\": \\"atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx\\",\\n  \\"credentialProviderId\\": \\"atp_01kr2cmj5gxxx4fvmls2e93dxxxxx\\",\\n  \\"createTime\\": 1649830225000,\\n  \\"updateTime\\": 1649830225000,\\n  \\"authenticationTokenType\\": \\"jwt\\",\\n  \\"revoked\\": false,\\n  \\"creatorType\\": \\"application\\",\\n  \\"creatorId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n  \\"consumerType\\": \\"custom\\",\\n  \\"consumerId\\": \\"test_jwt_subject\\",\\n  \\"expirationTime\\": 1772693568000,\\n  \\"jwtContent\\": {\\n    \\"jwtValue\\": \\"eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\\",\\n    \\"derivedShortToken\\": \\"sk-Nx2vzxxxxxxxxxxxxxxxxx\\"\\n  }\\n}","type":"json"}]',
        ],
        'GenerateToken' => [
            'summary' => 'Generates an access token for an application in a specified IDaaS instance based on credential information.',
            'path' => '/v2/{instanceId}/{applicationId}/oauth2/token',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'produces' => [],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'client_id',
                    'in' => 'query',
                    'schema' => ['description' => 'The client ID.', 'type' => 'string', 'required' => false, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'client_secret',
                    'in' => 'query',
                    'schema' => ['description' => 'The client secret. This parameter is required when \\`grant\\_type\\` is \\`client\\_credentials\\` and the \\`client\\_secret\\_post\\` method is used.', 'type' => 'string', 'required' => false, 'example' => 'CSEHDcHcrUKHw1CuxkJEHPveWRXBGqVqRsxxxx', 'title' => ''],
                ],
                [
                    'name' => 'grant_type',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The authorization grant type. The following types are supported:'."\n"
                            ."\n"
                            .'- \\`client\\_credentials\\`: Client credentials grant. Requires \\`client\\_id\\` and \\`client\\_secret\\`.'."\n"
                            ."\n"
                            .'- \\`refresh\\_token\\`: Refresh token grant.'."\n"
                            ."\n"
                            .'- \\`authorization\\_code\\`: Authorization code grant.'."\n"
                            ."\n"
                            .'- \\`urn:ietf:params:oauth:grant-type:device\\_code\\`: Device flow.'."\n"
                            ."\n"
                            .'- \\`password\\`: Password grant.',
                        'enumValueTitles' => [],
                        'type' => 'string',
                        'required' => true,
                        'enum' => ['authorization_code', 'urn:ietf:params:oauth:grant-type:device_code', 'refresh_token', 'client_credentials', 'password'],
                        'title' => '',
                        'example' => 'client_credentials',
                    ],
                ],
                [
                    'name' => 'code',
                    'in' => 'query',
                    'schema' => ['description' => 'The authorization code. This parameter is required when \\`grant\\_type\\` is \\`authorization\\_code\\`.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'xxxx'],
                ],
                [
                    'name' => 'username',
                    'in' => 'query',
                    'schema' => ['description' => 'The username. This parameter is required for the password grant type.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'uesrname_001'],
                ],
                [
                    'name' => 'password',
                    'in' => 'query',
                    'schema' => ['description' => 'The username. This parameter is required for password mode.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'xxxxxx'],
                ],
                [
                    'name' => 'device_code',
                    'in' => 'query',
                    'schema' => ['description' => 'The device code. This parameter is required when \\`grant\\_type\\` is \\`urn:ietf:params:oauth:grant-type:device\\_code\\` (device flow).', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'xxxx'],
                ],
                [
                    'name' => 'redirect_uri',
                    'in' => 'query',
                    'schema' => ['description' => 'The redirection URI. This parameter is required for the authorization code grant type. It must match the redirection URI in the request to get the authorization code.', 'type' => 'string', 'example' => 'xxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'refresh_token',
                    'in' => 'query',
                    'schema' => ['description' => 'The refresh token. This parameter is required when \\`grant\\_type\\` is \\`refresh\\_token\\` (refresh token grant).', 'type' => 'string', 'example' => 'ATxxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'code_verifier',
                    'in' => 'query',
                    'schema' => ['description' => 'The code verifier. This is used in the authorization code grant type when PKCE is enabled.', 'type' => 'string', 'example' => 'xxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'exclusive_tag',
                    'in' => 'query',
                    'schema' => ['description' => 'The excluded tag.', 'type' => 'string', 'example' => 'ATxxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'scope',
                    'in' => 'query',
                    'schema' => ['description' => 'The scope. This parameter is optional. Multiple values are supported. Separate multiple values with spaces.'."\n"
                        .'Valid values:'."\n"
                        ."\n"
                        .'- openid'."\n"
                        ."\n"
                        .'- email'."\n"
                        ."\n"
                        .'- phone'."\n"
                        ."\n"
                        .'- profile', 'type' => 'string', 'example' => 'xxxx', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response.',
                        'type' => 'object',
                        'properties' => [
                            'token_type' => [
                                'description' => 'The token type. Valid values:'."\n"
                                    .'Basic - Basic type'."\n"
                                    .'Bearer - Bearer type',
                                'enumValueTitles' => ['Basic' => 'Basic', 'Bearer' => 'Bearer'],
                                'type' => 'string',
                                'title' => '',
                                'example' => 'Bearer',
                            ],
                            'access_token' => ['title' => 'access_token', 'description' => 'The access token.', 'type' => 'string', 'example' => 'ATxxx'],
                            'refresh_token' => ['title' => 'refresh_token', 'description' => 'The refresh token.', 'type' => 'string', 'example' => 'RTxxx'],
                            'expires_in' => ['description' => 'The validity period of the token in seconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1200'],
                            'expires_at' => ['description' => 'The expiration time. The value is a UNIX timestamp in seconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1653288641'],
                            'id_token' => ['title' => 'id_token', 'description' => 'The ID token.', 'type' => 'string', 'example' => 'xxxxx'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GenerateToken',
            'description' => 'The following methods are supported: Authorization Code, Device Flow, Refresh Token, Client Credentials, and Password.'."\n"
                ."\n"
                .'### 1. Authorization Code'."\n"
                ."\n"
                .'Scenario: This is the standard OAuth 2.0 authorization code flow, which is suitable for web applications with frontend interaction.'."\n"
                .'Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=authorization_code'."\n"
                .'&code={authorization_code}'."\n"
                .'&redirect_uri={redirect_uri}'."\n"
                .'&client_id={client_id}'."\n"
                .'&client_secret={client_secret}'."\n"
                .'```'."\n"
                ."\n"
                .'Parameters:'."\n"
                ."\n"
                .'● code: The authorization code obtained from the authorization endpoint.'."\n"
                ."\n"
                .'● redirect\\_uri: Must be the same as the redirect\\_uri that was used to obtain the authorization code.'."\n"
                ."\n"
                .'### 1.1 Authorization Code for public clients'."\n"
                ."\n"
                .'Scenario: This scenario is suitable for applications that cannot securely store a secret, such as single-page applications (SPAs) or native applications. In this flow, a client\\_secret is not required, but you must use the Proof Key for Code Exchange (PKCE) mechanism. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=authorization_code'."\n"
                .'&code={authorization_code}'."\n"
                .'&redirect_uri={redirect_uri}'."\n"
                .'&client_id={client_id}'."\n"
                .'&code_verifier={code_verifier}'."\n"
                .'```'."\n"
                ."\n"
                .'Parameters:'."\n"
                ."\n"
                .'● code\\_verifier: The code verifier for the PKCE mechanism. The client generates it when initiating an authorization request and uses it to derive the \\`code\\_challenge\\`. When exchanging for a token, you must submit this value. It must be identical to the value used to generate the \\`code\\_challenge\\`.'."\n"
                ."\n"
                .'Java example for generating a code\\_verifier and code\\_challenge:'."\n"
                ."\n"
                .'```java'."\n"
                .'String codeVerifier = Base64.getUrlEncoder().withoutPadding().encodeToString(new SecureRandom().generateSeed(43));'."\n"
                .'String codeChallenge = Base64.getUrlEncoder().withoutPadding().encodeToString(java.security.MessageDigest.getInstance("SHA-256").digest(codeVerifier.getBytes()));'."\n"
                .'```'."\n"
                ."\n"
                .'### 2. Device Flow'."\n"
                ."\n"
                .'Scenario: This scenario is suitable for input-constrained devices, such as TVs and IoT devices. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=urn:ietf:params:oauth:grant-type:device_code'."\n"
                .'&device_code={device_code}'."\n"
                .'&client_id={client_id}'."\n"
                .'&client_secret={client_secret}'."\n"
                .'```'."\n"
                ."\n"
                .'To obtain the device code, first call `/oauth2/device/code` to retrieve the device\\_code and user\\_code.'."\n"
                ."\n"
                .'### 2.1 Device Flow for public clients'."\n"
                ."\n"
                .'Scenario: This scenario is used when interactive logon is not convenient and the client is a public client. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=urn:ietf:params:oauth:grant-type:device_code'."\n"
                .'&device_code={device_code}'."\n"
                .'&client_id={client_id}'."\n"
                .'```'."\n"
                ."\n"
                .'### 3. Refresh Token'."\n"
                ."\n"
                .'Scenario: This scenario uses a refresh\\_token to obtain a new access\\_token. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=refresh_token'."\n"
                .'&refresh_token={refresh_token}'."\n"
                .'&client_id={client_id}'."\n"
                .'&client_secret={client_secret}'."\n"
                .'```'."\n"
                ."\n"
                .'### 4. Client Credentials'."\n"
                ."\n"
                .'Scenario: This scenario is for server-to-server authentication without user involvement. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=client_credentials'."\n"
                .'&client_id={client_id}'."\n"
                .'&client_secret={client_secret}'."\n"
                .'&scope={scope}'."\n"
                .'```'."\n"
                ."\n"
                .'### 5. Password'."\n"
                ."\n"
                .'Scenario: This scenario uses traditional username and password authentication. Use this method with caution. Example call:'."\n"
                ."\n"
                .'```'."\n"
                .'POST /v2/{instanceId}/{applicationId}/oauth2/token'."\n"
                .'Content-Type: application/x-www-form-urlencoded'."\n"
                ."\n"
                .'grant_type=password'."\n"
                .'&username={username}'."\n"
                .'&password={password}'."\n"
                .'&client_id={client_id}'."\n"
                .'&scope={scope}'."\n"
                .'```',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_grant | Invalid or not supported grant\\_type: client\\_credentials| 应用API未开放 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"token_type\\": \\"Bearer\\",\\n  \\"access_token\\": \\"ATxxx\\",\\n  \\"refresh_token\\": \\"RTxxx\\",\\n  \\"expires_in\\": 1200,\\n  \\"expires_at\\": 1653288641,\\n  \\"id_token\\": \\"xxxxx\\"\\n}","type":"json"}]',
        ],
        'GenerateTokenByAuthorizationServer' => [
            'path' => '/v2/{instanceId}/authorizationServer/{authorizationServerId}/oauth2/token',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'produces' => ['application/json'],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'authorizationServerId',
                    'in' => 'path',
                    'schema' => ['description' => 'Authorization server ID.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'iauths_system'],
                ],
                [
                    'name' => 'grant_type',
                    'in' => 'query',
                    'schema' => ['description' => 'Grant type.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'authorization_code'],
                ],
                [
                    'name' => 'client_id',
                    'in' => 'query',
                    'schema' => ['description' => 'Client ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'code',
                    'in' => 'query',
                    'schema' => ['description' => 'Authorization code. Required when grant\\_type is authorization\\_code.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'CO541xY59EsKniV2wvWDXZ4jiKxxxxx'],
                ],
                [
                    'name' => 'username',
                    'in' => 'query',
                    'schema' => ['description' => 'Username.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'userxxxxx'],
                ],
                [
                    'name' => 'password',
                    'in' => 'query',
                    'schema' => ['description' => 'Password.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'testxxxxx'],
                ],
                [
                    'name' => 'device_code',
                    'in' => 'query',
                    'schema' => ['description' => 'Device code. Required when grant\\_type is urn:ietf:params:oauth:grant-type:device\\_code.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'DCxxxxxx'],
                ],
                [
                    'name' => 'redirect_uri',
                    'in' => 'query',
                    'schema' => ['description' => 'Redirection URI. Required when grant\\_type is authorization\\_code. Must match the redirect\\_uri used in the authorization code request.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'https://example.com/xxxxx'],
                ],
                [
                    'name' => 'refresh_token',
                    'in' => 'query',
                    'schema' => ['description' => 'Refresh token.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'RTxxxxx'],
                ],
                [
                    'name' => 'scope',
                    'in' => 'query',
                    'schema' => ['description' => 'Scope.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'openid'],
                ],
                [
                    'name' => 'code_verifier',
                    'in' => 'query',
                    'schema' => ['description' => 'You can validate the code.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'xxxxx'],
                ],
                [
                    'name' => 'client_assertion',
                    'in' => 'query',
                    'schema' => ['description' => 'Client assertion.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'eyJraWQiOiJLRVlLZ0Iyxxxxx'],
                ],
                [
                    'name' => 'client_assertion_type',
                    'in' => 'query',
                    'schema' => ['description' => 'Client assertion type.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'urn:ietf:params:oauth:client-assertion-type:jwt-bearer'],
                ],
                [
                    'name' => 'application_federated_credential_name',
                    'in' => 'query',
                    'schema' => ['description' => 'Federated application credential name.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'testxxxxx'],
                ],
                [
                    'name' => 'client_x509',
                    'in' => 'query',
                    'schema' => ['description' => 'Client certificate.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'testxxxxx'],
                ],
                [
                    'name' => 'client_x509_chain',
                    'in' => 'query',
                    'schema' => ['description' => 'Intermediate certificate list.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'testxxxxx'],
                ],
                [
                    'name' => 'client_secret',
                    'in' => 'query',
                    'schema' => ['description' => 'Client key.', 'type' => 'string', 'title' => '', 'required' => false, 'example' => 'CSEHDcHcrUKHw1CuxkJEHPveWRxxxxx'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'token_type' => ['description' => 'Token type.', 'type' => 'string', 'example' => 'Bearer', 'title' => ''],
                            'access_token' => ['description' => 'Access credential.', 'type' => 'string', 'example' => 'eyJraWQiOiJLRVlLZ0Iyxxxxx'."\n", 'title' => ''],
                            'refresh_token' => ['description' => 'Refresh token.', 'type' => 'string', 'example' => 'ATxxxxx', 'title' => ''],
                            'expires_in' => ['description' => 'Validity period of the access credential, in seconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1200', 'title' => ''],
                            'expires_at' => ['description' => 'Expiration time of the access credential, as a UNIX timestamp in seconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1653288641', 'title' => ''],
                            'id_token' => ['description' => 'Identity credential.', 'type' => 'string', 'example' => 'eyJraWQiOiJLRVlLZ0Iyxxxxx'."\n", 'title' => ''],
                            'scope' => ['description' => 'Scope.', 'type' => 'string', 'example' => 'openid', 'title' => ''],
                        ],
                        'title' => '',
                        'description' => 'Token information.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'GenerateTokenByAuthorizationServer',
            'summary' => 'The token endpoint for an instance-level authorization server.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"token_type\\": \\"Bearer\\",\\n  \\"access_token\\": \\"eyJraWQiOiJLRVlLZ0Iyxxxxx\\\\n\\",\\n  \\"refresh_token\\": \\"ATxxxxx\\",\\n  \\"expires_in\\": 1200,\\n  \\"expires_at\\": 1653288641,\\n  \\"id_token\\": \\"eyJraWQiOiJLRVlLZ0Iyxxxxx\\\\n\\",\\n  \\"scope\\": \\"openid\\"\\n}","type":"json"}]',
        ],
        'GetApplicationProvisioningScope' => [
            'path' => '/v2/{instanceId}/{applicationId}/provisioningScope',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas60YEMV'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information.'."\n"
                        .'Format: Bearer ${access\\_token}.'."\n"
                        .'Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => '	'."\n"
                        .'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitIds' => [
                                'title' => '',
                                'description' => 'The list of organization IDs.',
                                'type' => 'array',
                                'items' => ['description' => 'The organization ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                'example' => '[ou_xxx001]',
                            ],
                            'groupIds' => [
                                'description' => 'The list of group IDs.',
                                'type' => 'array',
                                'items' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'group_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetApplicationProvisioningScope',
            'summary' => 'The GetApplicationProvisioningScope operation retrieves the synchronization scope of an application in a specific instance.',
            'description' => '> - You can set the synchronization scope in Application Management in the IDaaS console. After you create an application, you have permission to call this API by default.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_001| 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:read_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"organizationalUnitIds\\": [\\n    \\"ou_wovwffm62xifdziem7an7xxxxx\\"\\n  ],\\n  \\"groupIds\\": [\\n    \\"group_wovwffm62xifdziem7an7xxxxx\\"\\n  ]\\n}","type":"json"}]',
        ],
        'GetGroup' => [
            'summary' => 'Retrieves the details of a group.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas1LGU5E'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'example' => 'group_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperGroupDTO',
                        'description' => 'DeveloperGroupDTO',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                            'groupId' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'group_ufdsasn35ea5lmthk267xxxxx', 'title' => ''],
                            'groupName' => ['description' => 'The group name.', 'type' => 'string', 'example' => 'name_test', 'title' => ''],
                            'description' => ['description' => 'The group description.', 'type' => 'string', 'example' => 'description_demo', 'title' => ''],
                            'groupExternalId' => ['description' => 'The external ID of the group.', 'type' => 'string', 'example' => 'group_ufdsasn35ea5lmthk267xxxxx', 'title' => ''],
                            'groupSourceType' => ['description' => 'The source type of the group. Valid values: build\\_in, ding\\_talk, ad, and ldap.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                            'groupSourceId' => ['description' => 'The source ID of the group.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                            'createTime' => ['description' => 'The time when the group was created. The value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'updateTime' => ['description' => 'The time when the group was last updated. The value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"groupId\\": \\"group_ufdsasn35ea5lmthk267xxxxx\\",\\n  \\"groupName\\": \\"name_test\\",\\n  \\"description\\": \\"description_demo\\",\\n  \\"groupExternalId\\": \\"group_ufdsasn35ea5lmthk267xxxxx\\",\\n  \\"groupSourceType\\": \\"build_in\\",\\n  \\"groupSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"createTime\\": 1652085686179,\\n  \\"updateTime\\": 1652085686179\\n}","type":"json"}]',
            'title' => 'GetGroup',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'GetOrganizationalUnit' => [
            'summary' => 'Retrieves the information about an organizational unit.',
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits/{organizationalUnitId}',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'organizationalUnitId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperOrganizationalUnitDTO',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                            'organizationalUnitId' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'organizationalUnitName' => ['description' => 'The name of the organizational unit.', 'type' => 'string', 'example' => 'name001', 'title' => ''],
                            'parentId' => ['description' => 'The ID of the parent organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'organizationalUnitExternalId' => ['description' => 'The external ID of the organizational unit.', 'type' => 'string', 'example' => 'id_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'organizationalUnitSourceType' => ['description' => 'The source type of the organizational unit. Valid values:'."\n"
                                ."\n"
                                .'- build\\_in: The organizational unit was created in Identity as a Service (IDaaS).'."\n"
                                ."\n"
                                .'- ding\\_talk: The organizational unit was imported from DingTalk.'."\n"
                                ."\n"
                                .'- ad: The organizational unit was imported from Microsoft Active Directory (AD).'."\n"
                                ."\n"
                                .'- ldap: The organizational unit was imported from a Lightweight Directory Access Protocol (LDAP) service.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                            'organizationalUnitSourceId' => ['description' => 'The source ID of the organizational unit.', 'type' => 'string', 'example' => 'id_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'createTime' => ['description' => 'The time when the organizational unit was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652083425923', 'title' => ''],
                            'updateTime' => ['description' => 'The time when the organizational unit was last updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652083425923', 'title' => ''],
                            'description' => ['description' => 'The description of the organizational unit.', 'type' => 'string', 'example' => 'xxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetOrganizationalUnit',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:read_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"organizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n  \\"organizationalUnitName\\": \\"name001\\",\\n  \\"parentId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n  \\"organizationalUnitExternalId\\": \\"id_wovwffm62xifdziem7an7xxxxx\\",\\n  \\"organizationalUnitSourceType\\": \\"build_in\\",\\n  \\"organizationalUnitSourceId\\": \\"id_wovwffm62xifdziem7an7xxxxx\\",\\n  \\"createTime\\": 1652083425923,\\n  \\"updateTime\\": 1652083425923,\\n  \\"description\\": \\"xxxxx\\"\\n}","type":"json"}]',
        ],
        'GetOrganizationalUnitIdByExternalId' => [
            'summary' => 'Obtains the ID of an organizational unit based on the external ID',
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits/_/actions/getOrganizationalUnitIdByExternalId',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasZCZ2SC'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij'."\n", 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitExternalId' => ['description' => 'The external ID of the organizational unit. The external ID can be used to map external data to the data of the organizational unit in Employee Identity and Access Management (EIAM) of Identity as a Service (IDaaS). By default, the external ID is the organizational unit ID.'."\n"
                                ."\n"
                                .'Note: For organizational units with the same source type and source ID, each organizational unit has a unique external ID.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'organizationalUnitSourceType' => ['description' => 'The source type of the organizational unit. Valid values:'."\n"
                                ."\n"
                                .'- build\\_in: The organizational unit was created in IDaaS.'."\n"
                                ."\n"
                                .'- ding\\_talk: The organizational unit was imported from DingTalk.'."\n"
                                ."\n"
                                .'- ad: The organizational unit was imported from Microsoft Active Directory (AD).'."\n"
                                ."\n"
                                .'- ldap: The organizational unit was imported from a Lightweight Directory Access Protocol (LDAP) service.', 'type' => 'string', 'required' => true, 'example' => 'build_in', 'title' => ''],
                            'organizationalUnitSourceId' => ['description' => 'The source ID of the organizational unit.'."\n"
                                ."\n"
                                .'If the organizational unit was created in IDaaS, its source ID is the ID of the IDaaS instance. If the organizational unit was imported, its source ID is the enterprise ID in the source. For example, if the organizational unit was imported from DingTalk, its source ID is the corpId value of the enterprise in DingTalk.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                        ],
                        'required' => false,
                        'example' => 'xxx001',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'OrganizationalUnitIdObject',
                        'description' => 'OrganizationalUnitIdObject',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitId' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetOrganizationalUnitIdByExternalId',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"organizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\"\\n}","type":"json"}]',
        ],
        'GetUser' => [
            'summary' => 'Retrieves the details of an Employee Identity and Access Management (EIAM) account.',
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperUserDetailDTO',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                            'organizationalUnits' => [
                                'title' => '',
                                'description' => 'The organizational units to which the account belongs.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The organizational unit.',
                                    'type' => 'object',
                                    'properties' => [
                                        'organizationalUnitId' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                        'organizationalUnitName' => ['description' => 'The name of the organizational unit.', 'type' => 'string', 'example' => 'name001', 'title' => ''],
                                        'primary' => ['description' => 'Indicates whether the organizational unit is the primary organizational unit.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'example' => '',
                            ],
                            'primaryOrganizationalUnitId' => ['description' => 'The ID of the primary organizational unit of the account.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                            'customFields' => [
                                'title' => '',
                                'description' => 'The extended fields of the account.',
                                'type' => 'array',
                                'items' => [
                                    'description' => '',
                                    'type' => 'object',
                                    'properties' => [
                                        'fieldName' => ['description' => 'The name of the extended field.', 'type' => 'string', 'example' => 'xxxx', 'title' => ''],
                                        'fieldValue' => ['description' => 'The value of the extended field. Field values are returned as strings regardless of the data types of the fields. For example, true or false is returned for a Boolean field.', 'type' => 'string', 'example' => '字段数据值', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'example' => '',
                            ],
                            'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                            'username' => ['description' => 'The username of the account.', 'type' => 'string', 'example' => 'name001', 'title' => ''],
                            'displayName' => ['description' => 'The display name of the account.', 'type' => 'string', 'example' => 'display_name001', 'title' => ''],
                            'passwordSet' => ['description' => 'Indicates whether the password is set.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'phoneRegion' => ['description' => 'The country code of the mobile number. For example, the country code of China is 86 without 00 or +.', 'type' => 'string', 'example' => '86', 'title' => ''],
                            'phoneNumber' => ['description' => 'The mobile number of the user who owns the account.', 'type' => 'string', 'example' => '156xxxxxxx', 'title' => ''],
                            'phoneNumberVerified' => ['description' => 'Indicates whether the mobile number has been verified. A value of true indicates that the mobile number has been verified by the user or has been set to the verified status by the administrator. A value of false indicates that the mobile number has not been verified.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'email' => ['description' => 'The email address of the user.', 'type' => 'string', 'example' => 'example@example.com', 'title' => ''],
                            'emailVerified' => ['description' => 'Indicates whether the email address has been verified. A value of true indicates that the email address has been verified by the user or has been set to the verified status by the administrator. A value of false indicates that the email address has not been verified.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'userExternalId' => ['description' => 'The external ID of the account. The external ID can be used to map external data to the data of the account in EIAM of Identity as a Service (IDaaS). By default, the external ID is the account ID.'."\n"
                                ."\n"
                                .'Note: For accounts with the same source type and source ID, each account has a unique external ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                            'userSourceType' => ['description' => 'The source type of the account. Valid values:'."\n"
                                ."\n"
                                .'- build\\_in: The account was created in IDaaS.'."\n"
                                ."\n"
                                .'- ding\\_talk: The account was imported from DingTalk.'."\n"
                                ."\n"
                                .'- ad: The account was imported from Microsoft Active Directory (AD).'."\n"
                                ."\n"
                                .'- ldap: The account was imported from a Lightweight Directory Access Protocol (LDAP) service.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                            'userSourceId' => ['description' => 'The source ID of the account.'."\n"
                                ."\n"
                                .'If the account was created in IDaaS, its source ID is the ID of the IDaaS instance. If the account was imported, its source ID is the enterprise ID in the source. For example, if the account was imported from DingTalk, its source ID is the corpId value of the enterprise in DingTalk.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                            'status' => ['description' => 'The status of the account. Valid values: enabled disabled', 'type' => 'string', 'example' => 'enabled', 'title' => ''],
                            'accountExpireTime' => ['description' => 'The time when the account expires. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'registerTime' => ['description' => 'The time when the account was registered. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'lockExpireTime' => ['description' => 'The time when the account lock expires. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'createTime' => ['description' => 'The time when the account was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'updateTime' => ['description' => 'The time when the account was last modified. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                            'description' => ['description' => 'The description of the account.', 'type' => 'string', 'example' => '测试账户', 'title' => ''],
                            'groups' => [
                                'title' => '',
                                'description' => 'The groups to which the account belongs.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The information about the group to which the account belongs.',
                                    'type' => 'object',
                                    'properties' => [
                                        'groupId' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'group_ufdsasn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupName' => ['description' => 'The group name.', 'type' => 'string', 'example' => 'name_test', 'title' => ''],
                                        'description' => ['description' => 'The group description.', 'type' => 'string', 'example' => 'description_demo', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUser',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | MissingParameter.xxxx | The specified parameter:xxx is required!  | 缺少xxxx参数 |'."\n"
                .'| 400  | InvalidParameter.xxxx | The specified parameter:xxxx is required!  | xxxx参数无效 |'."\n"
                .'| 404  | ResourceNotFound.User | The specified User resource: user_d6sbsuumeta4h66ec3il7yxxxx not found.  | 账户不存在 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:read_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"organizationalUnits\\": [\\n    {\\n      \\"organizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n      \\"organizationalUnitName\\": \\"name001\\",\\n      \\"primary\\": true\\n    }\\n  ],\\n  \\"primaryOrganizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n  \\"customFields\\": [\\n    {\\n      \\"fieldName\\": \\"xxxx\\",\\n      \\"fieldValue\\": \\"字段数据值\\"\\n    }\\n  ],\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\",\\n  \\"username\\": \\"name001\\",\\n  \\"displayName\\": \\"display_name001\\",\\n  \\"passwordSet\\": true,\\n  \\"phoneRegion\\": \\"86\\",\\n  \\"phoneNumber\\": \\"156xxxxxxx\\",\\n  \\"phoneNumberVerified\\": true,\\n  \\"email\\": \\"example@example.com\\",\\n  \\"emailVerified\\": true,\\n  \\"userExternalId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\",\\n  \\"userSourceType\\": \\"build_in\\",\\n  \\"userSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"status\\": \\"enabled\\",\\n  \\"accountExpireTime\\": 1652085686179,\\n  \\"registerTime\\": 1652085686179,\\n  \\"lockExpireTime\\": 1652085686179,\\n  \\"createTime\\": 1652085686179,\\n  \\"updateTime\\": 1652085686179,\\n  \\"description\\": \\"测试账户\\",\\n  \\"groups\\": [\\n    {\\n      \\"groupId\\": \\"group_ufdsasn35ea5lmthk267xxxxx\\",\\n      \\"groupName\\": \\"name_test\\",\\n      \\"description\\": \\"description_demo\\"\\n    }\\n  ]\\n}","type":"json"}]',
        ],
        'GetUserIdByEmail' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/_/actions/getUserIdByEmail',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'email' => ['description' => 'The email address of the user who owns the account.', 'type' => 'string', 'required' => true, 'example' => 'example@example.com', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUserIdByEmail',
            'summary' => 'Queries the ID of an Employee Identity and Access Management (EIAM) account by email address.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 400  | MissingParameter.Email | The specified parameter: Email is required!  | 缺少Email参数 |'."\n"
                .'| 400  | ResourceNotFound.UserId| The specified UserId resource: %s not found.  | 账户ID不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\"\\n}","type":"json"}]',
        ],
        'GetUserIdByPhoneNumber' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/_/actions/getUserIdByPhoneNumber',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij'."\n", 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'phoneNumber' => ['description' => 'The mobile number of the user who owns the account.', 'type' => 'string', 'required' => true, 'example' => '156xxxxxxx', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUserIdByPhoneNumber',
            'summary' => 'Queries the ID of an Employee Identity and Access Management (EIAM) account based on the mobile number.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 400  | MissingParameter.PhoneNumber| The specified parameter: PhoneNumber is required!  | 缺少Email参数 |'."\n"
                .'| 400  | ResourceNotFound.UserId| The specified UserId resource: %s not found.  | 账户ID不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\"\\n}","type":"json"}]',
        ],
        'GetUserIdByUserExternalId' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/_/actions/getUserIdByExternalId',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'userExternalId' => ['description' => 'The external ID of the account.', 'type' => 'string', 'required' => true, 'example' => 'xxx001', 'title' => ''],
                            'userSourceType' => ['description' => 'The source type of the account. Valid values:'."\n"
                                ."\n"
                                .'- build\\_in: The account was created in Identity as a Service (IDaaS).'."\n"
                                ."\n"
                                .'- ding\\_talk: The account was imported from DingTalk.'."\n"
                                ."\n"
                                .'- ad: The account was imported from Microsoft Active Directory (AD).'."\n"
                                ."\n"
                                .'- ldap: The account was imported from a Lightweight Directory Access Protocol (LDAP) service.', 'type' => 'string', 'required' => true, 'example' => 'build_in', 'title' => ''],
                            'userSourceId' => ['description' => 'The source ID of the account. If the account was created in IDaaS, its source ID is the ID of the IDaaS instance. If the account was imported, its source ID is the enterprise ID in the source. For example, if the account was imported from DingTalk, its source ID is the corpId value of the enterprise in DingTalk.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUserIdByUserExternalId',
            'summary' => 'Queries the ID of an Employee Identity and Access Management (EIAM) account based on the external ID.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 400  | MissingParameter.UserExternalId | The specified parameter: UserExternalId is required!  | 缺少UserExternalId参数 |'."\n"
                .'| 400  | MissingParameter.UserSourceType | The specified parameter: UserSourceType is required!  | 缺少UserSourceType参数 |'."\n"
                .'| 400  | MissingParameter.UserSourceId | The specified parameter: UserSourceId is required!  | 缺少UserSourceId参数 |'."\n"
                .'| 400  | ResourceNotFound.UserId| The specified UserId resource: %s not found.  | 账户ID不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\"\\n}","type":"json"}]',
        ],
        'GetUserIdByUsername' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/_/actions/getUserIdByUsername',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'username' => ['description' => 'The username of the account.', 'type' => 'string', 'required' => true, 'example' => 'username_001', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUserIdByUsername',
            'summary' => 'Queries the ID of an Employee Identity and Access Management (EIAM) account based on the username.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\"\\n}","type":"json"}]',
        ],
        'GetUserInfo' => [
            'summary' => 'Retrieves the information about a user by using the user token.',
            'path' => '/v2/{instanceId}/{applicationId}/oauth2/userinfo',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Map',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'additionalProperties' => ['description' => 'The user information.', 'type' => 'any', 'example' => '无', 'title' => ''],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetUserInfo',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_request | Application is not OIDC application| 非OIDC应用 |'."\n"
                .'| 400  | invalid\\_token | Invalid token| token无效 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"key\\": \\"无\\"\\n}","type":"json"}]',
        ],
        'ListAuthenticationTokens' => [
            'summary' => 'Lists authentication tokens.',
            'path' => '/v2/{instanceId}/authenticationTokens',
            'methods' => ['get'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter an IDaaS-issued Access Token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'nextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'Token that marks the start of the next page in a paged query.', 'type' => 'string', 'example' => 'NTxxxxxexample', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'maxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'Maximum number of records to return in this paged query.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'default' => '20', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'consumerId',
                    'in' => 'query',
                    'schema' => ['description' => 'ID of the authentication token consumer.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                ],
                [
                    'name' => 'credentialProviderIdentifier',
                    'in' => 'query',
                    'schema' => ['description' => 'Credential provider identifier.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_example_identifier'],
                ],
                [
                    'name' => 'revoked',
                    'in' => 'query',
                    'schema' => ['description' => 'Indicates whether the authentication token is revoked.', 'type' => 'boolean', 'title' => '', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'expired',
                    'in' => 'query',
                    'schema' => ['description' => 'Indicates whether the authentication token is expired.', 'type' => 'boolean', 'title' => '', 'required' => false, 'example' => 'false'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'entities' => [
                                'description' => 'List of resource entities.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'Instance ID.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                                        'authenticationTokenId' => ['description' => 'Authentication token ID.', 'type' => 'string', 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                                        'credentialProviderId' => ['description' => 'Credential provider ID.', 'type' => 'string', 'title' => '', 'example' => 'atp_01kr2cmj5gxxx4fvmls2e93dxxxxx'],
                                        'createTime' => ['description' => 'Creation time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                                        'updateTime' => ['description' => 'Last update time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                                        'authenticationTokenType' => ['description' => 'Authentication token type. Valid values:'."\n"
                                            ."\n"
                                            .'- jwt: JWT authentication token'."\n"
                                            ."\n"
                                            .'- oauth\\_access\\_token: OAuth Access Token authentication token', 'type' => 'string', 'title' => '', 'example' => 'jwt'],
                                        'revoked' => ['description' => 'Indicates whether the authentication token is revoked.', 'type' => 'boolean', 'title' => '', 'example' => 'false'],
                                        'creatorType' => ['description' => 'Type of the authentication token creator. Valid values:'."\n"
                                            ."\n"
                                            .'- application: Application', 'type' => 'string', 'title' => '', 'example' => 'application'],
                                        'creatorId' => ['description' => 'ID of the authentication token creator.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                                        'consumerType' => ['description' => 'Type of the authentication token consumer. Valid values:'."\n"
                                            ."\n"
                                            .'- application: Application'."\n"
                                            ."\n"
                                            .'- custom: Custom type', 'type' => 'string', 'title' => '', 'example' => 'custom'],
                                        'consumerId' => ['description' => 'ID of the authentication token consumer.', 'type' => 'string', 'title' => '', 'example' => 'test_jwt_subject'],
                                        'expirationTime' => ['description' => 'Expiration time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1772693568000'],
                                    ],
                                    'title' => '',
                                    'description' => 'Authentication token details.',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'totalCount' => ['description' => 'Total number of resource entities that match the query criteria.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '100'],
                            'nextToken' => ['description' => 'Token returned by this call. Use it for the next paged query to get the next page.', 'type' => 'string', 'title' => '', 'example' => 'NTxxxexample'],
                            'maxResults' => ['description' => 'Maximum number of records returned in this query.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '20'],
                        ],
                        'description' => 'Paged query result.',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ListAuthenticationTokens',
            'description' => 'This API uses an Access Token issued by IDaaS for identity authentication and authorization.'."\n"
                ."\n"
                .'Ensure that the Access Token you provide has the Query authentication tokens permission for the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The required scope is `urn:cloud:idaas:pam|authentication_token:read`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"entities\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"authenticationTokenId\\": \\"atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx\\",\\n      \\"credentialProviderId\\": \\"atp_01kr2cmj5gxxx4fvmls2e93dxxxxx\\",\\n      \\"createTime\\": 1649830225000,\\n      \\"updateTime\\": 1649830225000,\\n      \\"authenticationTokenType\\": \\"jwt\\",\\n      \\"revoked\\": false,\\n      \\"creatorType\\": \\"application\\",\\n      \\"creatorId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n      \\"consumerType\\": \\"custom\\",\\n      \\"consumerId\\": \\"test_jwt_subject\\",\\n      \\"expirationTime\\": 1772693568000\\n    }\\n  ],\\n  \\"totalCount\\": 100,\\n  \\"nextToken\\": \\"NTxxxexample\\",\\n  \\"maxResults\\": 20\\n}","type":"json"}]',
        ],
        'ListGroups' => [
            'summary' => 'Retrieves information about Employee Identity and Access Management (EIAM) groups by page.',
            'path' => '/v2/{instanceId}/{applicationId}/groups',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas1LGU5E'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'groupNameStartWith',
                    'in' => 'query',
                    'schema' => ['description' => 'The prefix of the group name.', 'type' => 'string', 'example' => 'group_xxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'nextToken',
                    'in' => 'query',
                    'schema' => ['title' => 'nextToken', 'description' => 'nextToken', 'type' => 'string', 'example' => 'NTxxx', 'required' => false],
                ],
                [
                    'name' => 'maxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Default value: 20.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperNextTokenResponse',
                        'description' => 'DeveloperNextTokenResponse',
                        'type' => 'object',
                        'properties' => [
                            'totalCount' => ['description' => 'The total number of entries returned.', 'type' => 'integer', 'format' => 'int64', 'example' => '1000', 'title' => ''],
                            'data' => [
                                'description' => 'The returned data.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The returned data.',
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupId' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'group_ufdsasn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupName' => ['description' => 'The group name.', 'type' => 'string', 'example' => 'name_test', 'title' => ''],
                                        'description' => ['description' => 'The group description.', 'type' => 'string', 'example' => 'description_demo', 'title' => ''],
                                        'groupExternalId' => ['description' => 'The external ID of the group.', 'type' => 'string', 'example' => 'group_ufdsasn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupSourceType' => ['description' => 'The source type of the group. Valid values: build\\_in, ding\\_talk, ad, and ldap.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                                        'groupSourceId' => ['description' => 'The source ID of the group.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'createTime' => ['description' => 'The time when the group was created. The value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'updateTime' => ['description' => 'The time when the group was last updated. The value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'nextToken' => ['description' => 'The start position of the query. If this parameter is left empty, the query starts from the beginning.', 'type' => 'string', 'example' => 'NTxxx', 'title' => ''],
                            'maxResults' => ['description' => 'The maximum number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListGroups',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"totalCount\\": 1000,\\n  \\"data\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"groupId\\": \\"group_ufdsasn35ea5lmthk267xxxxx\\",\\n      \\"groupName\\": \\"name_test\\",\\n      \\"description\\": \\"description_demo\\",\\n      \\"groupExternalId\\": \\"group_ufdsasn35ea5lmthk267xxxxx\\",\\n      \\"groupSourceType\\": \\"build_in\\",\\n      \\"groupSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"createTime\\": 1652085686179,\\n      \\"updateTime\\": 1652085686179\\n    }\\n  ],\\n  \\"nextToken\\": \\"NTxxx\\",\\n  \\"maxResults\\": 20\\n}","type":"json"}]',
        ],
        'ListGroupsForUser' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/listGroupsForUser',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information.'."\n"
                        .'Format: Bearer ${access\\_token}.'."\n"
                        .'Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The user ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'nextToken',
                    'in' => 'query',
                    'schema' => ['title' => 'nextToken', 'description' => 'The token to retrieve the next page of results. Leave this parameter empty to query from the first page.', 'type' => 'string', 'example' => 'NTxxx', 'required' => false],
                ],
                [
                    'name' => 'maxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Default value: 20.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperNextTokenResponse',
                        'description' => 'The response object.',
                        'type' => 'object',
                        'properties' => [
                            'totalCount' => ['description' => 'The total number of entries.', 'type' => 'integer', 'format' => 'int64', 'example' => '1000', 'title' => ''],
                            'data' => [
                                'description' => 'The data object.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The data object.',
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupId' => ['description' => 'The group ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                                        'groupMemberRelationSourceId' => ['description' => 'The source ID of the group membership.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'groupMemberRelationSourceType' => ['description' => 'The source type of the group membership.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'nextToken' => ['description' => 'The token to retrieve the next page of results. If this parameter is not returned, all results have been returned.', 'type' => 'string', 'example' => 'NTxxx', 'title' => ''],
                            'maxResults' => ['description' => 'The maximum number of entries returned on each page.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListGroupsForUser',
            'summary' => 'Lists the groups that an EIAM user is a member of.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"totalCount\\": 1000,\\n  \\"data\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"groupId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\",\\n      \\"groupMemberRelationSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"groupMemberRelationSourceType\\": \\"build_in\\"\\n    }\\n  ],\\n  \\"nextToken\\": \\"NTxxx\\",\\n  \\"maxResults\\": 20\\n}","type":"json"}]',
        ],
        'ListOrganizationalUnitParentIds' => [
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits/{organizationalUnitId}/parentIds',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'organizationalUnitId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'parentIds' => [
                                'title' => '',
                                'description' => 'The IDs of the parent organizational units. The IDs of the organizational unit are ordered based on their levels from high to low. Only the IDs of the organizational units within the authorization scope are displayed.',
                                'type' => 'array',
                                'items' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                'example' => '[ou_xxx001]',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListOrganizationalUnitParentIds',
            'summary' => 'Retrieves the information about all the parent organizational units of an organizational unit.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:read_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"parentIds\\": [\\n    \\"ou_wovwffm62xifdziem7an7xxxxx\\"\\n  ]\\n}","type":"json"}]',
        ],
        'ListOrganizationalUnits' => [
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasZCZ2SC'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value must be in the format of \\`Bearer ${access\\_token}\\`. Example: \\`Bearer ATxxxx\\`.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij'."\n", 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'parentId',
                    'in' => 'query',
                    'schema' => ['description' => 'The parent organization ID.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'pageNumber',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number. The default value is 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'pageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of records on each page. The default value is 20. The value can range from 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'GeneralDataListResponse',
                        'description' => 'The response.',
                        'type' => 'object',
                        'properties' => [
                            'totalCount' => ['description' => 'The total number of records.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1000'],
                            'data' => [
                                'description' => 'A list of data objects.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The data object.',
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'organizationalUnitId' => ['description' => 'The organization ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                        'organizationalUnitName' => ['description' => 'The organization name.', 'type' => 'string', 'example' => 'name001', 'title' => ''],
                                        'parentId' => ['description' => 'The parent organization ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                        'organizationalUnitExternalId' => ['description' => 'The external ID of the organization. This ID is used to map external data to the organization\'s data in IDaaS. The default value is the IDaaS organization ID.'."\n"
                                            ."\n"
                                            .'Note: The external ID must be unique for the same source type and source ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                        'organizationalUnitSourceType' => ['description' => 'The source type of the organization. Valid values:'."\n"
                                            ."\n"
                                            .'- \\`build\\_in\\`: The organization is created in IDaaS.'."\n"
                                            ."\n"
                                            .'- \\`ding\\_talk\\`: The organization is imported from DingTalk.'."\n"
                                            ."\n"
                                            .'- \\`ad\\`: The organization is imported from Active Directory (AD).'."\n"
                                            ."\n"
                                            .'- \\`ldap\\`: The organization is imported from LDAP.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                                        'organizationalUnitSourceId' => ['description' => 'The source ID of the organization.'."\n"
                                            ."\n"
                                            .'For the \\`build\\_in\\` type, the default value is the instance ID. For other types, the value is the enterprise ID from the source. For example, if the source is DingTalk, the value is the \\`corpId\\` of the DingTalk enterprise.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'createTime' => ['description' => 'The time when the organization was created. This is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652083425923', 'title' => ''],
                                        'updateTime' => ['description' => 'The time when the organization was last updated. This is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652083425923', 'title' => ''],
                                        'description' => ['description' => 'The description of the organization.', 'type' => 'string', 'example' => '测试组织', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListOrganizationalUnits',
            'summary' => 'Performs a paged query to retrieve organization information from EIAM.',
            'description' => 'To retrieve the direct child organizations of the root organization, set the request parameter as follows:'."\n"
                ."\n"
                .'```'."\n"
                .'{'."\n"
                .'  "parentOrganizationalUnitId": "ou_root"'."\n"
                .'}'."\n"
                .'```',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:read_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"totalCount\\": 1000,\\n  \\"data\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"organizationalUnitId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n      \\"organizationalUnitName\\": \\"name001\\",\\n      \\"parentId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n      \\"organizationalUnitExternalId\\": \\"ou_wovwffm62xifdziem7an7xxxxx\\",\\n      \\"organizationalUnitSourceType\\": \\"build_in\\",\\n      \\"organizationalUnitSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"createTime\\": 1652083425923,\\n      \\"updateTime\\": 1652083425923,\\n      \\"description\\": \\"测试组织\\"\\n    }\\n  ]\\n}","type":"json"}]',
        ],
        'ListUsers' => [
            'path' => '/v2/{instanceId}/{applicationId}/users',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasY4QW79'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'organizationalUnitId',
                    'in' => 'query',
                    'schema' => ['description' => 'The organization ID.', 'type' => 'string', 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'pageNumber',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number. The default value is 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'pageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of records to return on each page. The default value is 20. The value must be in the range of 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'The response object.',
                        'type' => 'object',
                        'properties' => [
                            'totalCount' => ['description' => 'The total number of records.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1000'],
                            'data' => [
                                'description' => 'The list of returned data objects.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The returned data object.',
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                                        'username' => ['description' => 'The account name.', 'type' => 'string', 'example' => 'name001', 'title' => ''],
                                        'displayName' => ['description' => 'The display name of the account.', 'type' => 'string', 'example' => 'display_name001', 'title' => ''],
                                        'passwordSet' => ['description' => 'Indicates whether a password is set.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'phoneRegion' => ['description' => 'The area code for the mobile phone number. For example, the area code for a mobile phone number in the Chinese mainland is 86. Do not add 00 or a plus sign (+).', 'type' => 'string', 'example' => '86', 'title' => ''],
                                        'phoneNumber' => ['description' => 'The mobile phone number of the account.', 'type' => 'string', 'example' => '156xxxxxxx', 'title' => ''],
                                        'phoneNumberVerified' => ['description' => 'Indicates whether the mobile phone number is verified. A value of true indicates that the mobile phone number is verified by the user or set to verified by the administrator. A value of false indicates that the mobile phone number is not verified.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'email' => ['description' => 'The email address of the account.', 'type' => 'string', 'example' => 'example@example.com', 'title' => ''],
                                        'emailVerified' => ['description' => 'Indicates whether the email address is verified. A value of true indicates that the email address is verified by the user or set to verified by the administrator. A value of false indicates that the email address is not verified.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'userExternalId' => ['description' => 'The external ID of the account. This ID is used to map external data to the IDaaS account. By default, this parameter is the same as the IDaaS account ID.'."\n"
                                            ."\n"
                                            .'Note: The external ID must be unique for the same source type and source ID.', 'type' => 'string', 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                                        'userSourceType' => ['description' => 'The source type of the account. Valid values:'."\n"
                                            ."\n"
                                            .'- build\\_in: The account is created in IDaaS.'."\n"
                                            ."\n"
                                            .'- ding\\_talk: The account is imported from DingTalk.'."\n"
                                            ."\n"
                                            .'- ad: The account is imported from Active Directory (AD).'."\n"
                                            ."\n"
                                            .'- ldap: The account is imported from LDAP.', 'type' => 'string', 'example' => 'build_in', 'title' => ''],
                                        'userSourceId' => ['description' => 'The source ID of the account.'."\n"
                                            ."\n"
                                            .'For accounts created in IDaaS, the default value is the instance ID. For other types of accounts, the value is the enterprise ID from the source. For example, for an account from DingTalk, the value is the corpId of the DingTalk enterprise.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'status' => ['description' => 'The status of the account. Valid values: enabled: The account is enabled. disabled: The account is disabled.', 'type' => 'string', 'example' => 'enabled', 'title' => ''],
                                        'accountExpireTime' => ['description' => 'The time when the account expires. This value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'registerTime' => ['description' => 'The time when the account was registered. This value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'lockExpireTime' => ['description' => 'The time when the account lock expires. This value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'createTime' => ['description' => 'The time when the account was created. This value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'updateTime' => ['description' => 'The time when the account was last updated. This value is a UNIX timestamp. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1652085686179', 'title' => ''],
                                        'description' => ['description' => 'The description of the account.', 'type' => 'string', 'example' => '测试账户', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListUsers',
            'summary' => 'Performs a paged query for EIAM account information.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app\\_001| 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:read\\_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"totalCount\\": 1000,\\n  \\"data\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"userId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\",\\n      \\"username\\": \\"name001\\",\\n      \\"displayName\\": \\"display_name001\\",\\n      \\"passwordSet\\": true,\\n      \\"phoneRegion\\": \\"86\\",\\n      \\"phoneNumber\\": \\"156xxxxxxx\\",\\n      \\"phoneNumberVerified\\": true,\\n      \\"email\\": \\"example@example.com\\",\\n      \\"emailVerified\\": true,\\n      \\"userExternalId\\": \\"user_d6sbsuumeta4h66ec3il7yxxxx\\",\\n      \\"userSourceType\\": \\"build_in\\",\\n      \\"userSourceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"status\\": \\"enabled\\",\\n      \\"accountExpireTime\\": 1652085686179,\\n      \\"registerTime\\": 1652085686179,\\n      \\"lockExpireTime\\": 1652085686179,\\n      \\"createTime\\": 1652085686179,\\n      \\"updateTime\\": 1652085686179,\\n      \\"description\\": \\"测试账户\\"\\n    }\\n  ]\\n}","type":"json"}]',
        ],
        'ListUsersForGroup' => [
            'summary' => 'Queries accounts in an Employee Identity and Access Management (EIAM) group.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}/actions/listUsersForGroup',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasSNKQAN'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'example' => 'group_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'nextToken',
                    'in' => 'query',
                    'schema' => ['title' => 'nextToken', 'description' => 'nextToken', 'type' => 'string', 'example' => 'NTxxx', 'required' => false],
                ],
                [
                    'name' => 'maxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Default value: 20.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'DeveloperNextTokenResponse',
                        'description' => 'DeveloperNextTokenResponse',
                        'type' => 'object',
                        'properties' => [
                            'totalCount' => ['description' => 'The total number of entries returned.', 'type' => 'integer', 'format' => 'int64', 'example' => '1000', 'title' => ''],
                            'data' => [
                                'description' => 'The returned data.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The returned data.',
                                    'type' => 'object',
                                    'properties' => [
                                        'instanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                                        'userId' => ['description' => 'The account ID.', 'type' => 'string', 'example' => 'user_001', 'title' => ''],
                                    ],
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'nextToken' => ['description' => 'A pagination token. If NextToken is empty, no next page exists.', 'type' => 'string', 'example' => 'NTxxx', 'title' => ''],
                            'maxResults' => ['description' => 'The maximum number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListUsersForGroup',
            'requestParamsDescription' => 'If you set groupId to iggroup\\_all, the system queries accounts in all groups.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"totalCount\\": 1000,\\n  \\"data\\": [\\n    {\\n      \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n      \\"userId\\": \\"user_001\\"\\n    }\\n  ],\\n  \\"nextToken\\": \\"NTxxx\\",\\n  \\"maxResults\\": 20\\n}","type":"json"}]',
        ],
        'ObtainCloudAccountRoleAccessCredential' => [
            'summary' => 'Gets temporary access credentials for a CloudAccountRole.',
            'path' => '/v2/{instanceId}/cloudAccountRoles/_/actions/obtainAccessCredential',
            'methods' => ['get'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/x-www-form-urlencoded', 'application/json', 'multipart/form-data'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. The format is `Bearer ${access_token}`.'."\n"
                        ."\n"
                        .'> The access token is issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'cloudAccountRoleExternalId',
                    'in' => 'query',
                    'schema' => ['description' => 'The external ID of the cloud role.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'acs:ram::xxx:role/role-test'],
                ],
                [
                    'name' => 'durationSeconds',
                    'in' => 'query',
                    'schema' => ['description' => 'The duration of the temporary security credentials (STS token) in seconds. The value must be between 900 and 43200 (15 minutes to 12 hours).'."\n"
                        ."\n"
                        .'- The minimum value is 900 seconds.'."\n"
                        ."\n"
                        .'- The maximum value is limited by the maximum session duration of the cloud provider\'s role or service account. For example, the default maximum session duration for an AWS role is 3,600 seconds.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1800', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'cloudAccountId' => ['description' => 'The ID of the cloud account.', 'type' => 'string', 'title' => '', 'example' => 'ca_01kmegjc11qa1txxxxx'],
                            'cloudAccountRoleId' => ['description' => 'The ID of the cloud role.', 'type' => 'string', 'title' => '', 'example' => 'carole_01kmek49aqxxxx'],
                            'cloudAccountRoleName' => ['description' => 'The name of the cloud role.', 'type' => 'string', 'title' => '', 'example' => 'role-test'],
                            'cloudAccountRoleExternalId' => ['description' => 'The external ID of the cloud role.', 'type' => 'string', 'title' => '', 'example' => 'acs:ram::xxx:role/role-test'],
                            'cloudAccountVendorType' => [
                                'description' => 'The type of the cloud account. The valid value is:'."\n"
                                    ."\n"
                                    .'- `alibaba_cloud`: Alibaba Cloud',
                                'enumValueTitles' => ['alibaba_cloud' => 'alibaba\\_cloud'],
                                'type' => 'string',
                                'title' => '',
                                'example' => 'alibaba_cloud',
                            ],
                            'cloudAccountRoleAccessCredential' => [
                                'type' => 'object',
                                'properties' => [
                                    'accessCredentialExpiresAt' => ['description' => 'The expiration time of the temporary access credential for the cloud role, in Unix timestamp seconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1767196800'],
                                    'alibabaCloudStsToken' => [
                                        'type' => 'object',
                                        'properties' => [
                                            'accessKeyId' => ['description' => 'The access key ID.', 'type' => 'string', 'title' => '', 'example' => 'STS.NUgYrLnoC37mZZCNnAbez****'],
                                            'accessKeySecret' => ['description' => 'The access key secret.', 'type' => 'string', 'title' => '', 'example' => 'CVwjCkNzTMupZ8NbTCxCBRq3K16jtcWFTJAyBEv2****'],
                                            'securityToken' => ['description' => 'The security token.', 'type' => 'string', 'title' => '', 'example' => 'CAIShwJ1q6Ft5B2yfSjIr5bSEsj4g7BihPWGWHz****'],
                                            'expiration' => ['description' => 'The expiration time of the token, in UTC.', 'type' => 'string', 'title' => '', 'example' => '2021-10-20T04:27:09Z'],
                                        ],
                                        'title' => '',
                                        'description' => 'The STS token used to assume an Alibaba Cloud RAM role.'."\n"
                                            ."\n"
                                            .'> This parameter is returned only when the cloud account type is `alibaba_cloud`.',
                                        'example' => '',
                                    ],
                                    'awsStsToken' => [
                                        'type' => 'object',
                                        'properties' => [
                                            'accessKeyId' => ['description' => 'The access key ID.', 'type' => 'string', 'title' => '', 'example' => 'ASIAYBGN7XJKRFOM****'],
                                            'secretAccessKey' => ['description' => 'The secret access key.', 'type' => 'string', 'title' => '', 'example' => 'CVwjCkNzTMupZ8NbTCxCBRq3K16jtcWFTJAyBEv2****'],
                                            'sessionToken' => ['description' => 'The session token.', 'type' => 'string', 'title' => '', 'example' => 'FwoDYXdzEJzfSjIr5bSEsj4g7BihPWGWHz****'."\n"],
                                            'expiration' => ['description' => 'The expiration time of the STS token, in UTC.', 'type' => 'string', 'title' => '', 'example' => '2021-10-20T04:27:09Z'],
                                        ],
                                        'description' => 'The STS token used to assume an AWS role.',
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'description' => 'The temporary access credential to assume the cloud role.',
                                'example' => '',
                            ],
                        ],
                        'description' => 'The response object.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ObtainCloudAccountRoleAccessCredential',
            'description' => 'This API uses IDaaS-issued access tokens to authenticate and authorize requests.'."\n"
                ."\n"
                .'The access token must be authorized to obtain access credentials for a cloud role from the IDaaS Privileged Access Management (PAM) application.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|cloud_account_role:obtain_access_credential`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"cloudAccountId\\": \\"ca_01kmegjc11qa1txxxxx\\",\\n  \\"cloudAccountRoleId\\": \\"carole_01kmek49aqxxxx\\",\\n  \\"cloudAccountRoleName\\": \\"role-test\\",\\n  \\"cloudAccountRoleExternalId\\": \\"acs:ram::xxx:role/role-test\\",\\n  \\"cloudAccountVendorType\\": \\"alibaba_cloud\\",\\n  \\"cloudAccountRoleAccessCredential\\": {\\n    \\"accessCredentialExpiresAt\\": 1767196800,\\n    \\"alibabaCloudStsToken\\": {\\n      \\"accessKeyId\\": \\"STS.NUgYrLnoC37mZZCNnAbez****\\",\\n      \\"accessKeySecret\\": \\"CVwjCkNzTMupZ8NbTCxCBRq3K16jtcWFTJAyBEv2****\\",\\n      \\"securityToken\\": \\"CAIShwJ1q6Ft5B2yfSjIr5bSEsj4g7BihPWGWHz****\\",\\n      \\"expiration\\": \\"2021-10-20T04:27:09Z\\"\\n    },\\n    \\"awsStsToken\\": {\\n      \\"accessKeyId\\": \\"ASIAYBGN7XJKRFOM****\\",\\n      \\"secretAccessKey\\": \\"CVwjCkNzTMupZ8NbTCxCBRq3K16jtcWFTJAyBEv2****\\",\\n      \\"sessionToken\\": \\"FwoDYXdzEJzfSjIr5bSEsj4g7BihPWGWHz****\\\\n\\",\\n      \\"expiration\\": \\"2021-10-20T04:27:09Z\\"\\n    }\\n  }\\n}","type":"json"}]',
        ],
        'ObtainCredential' => [
            'summary' => 'Retrieves the plaintext of a secret.',
            'path' => '/v2/{instanceId}/credentials/_/actions/obtain',
            'methods' => ['get'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/x-www-form-urlencoded', 'application/json', 'multipart/form-data'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. The format is `Bearer ${access_token}`.'."\n"
                        ."\n"
                        .'> Use an access token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the IDaaS instance.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'credentialIdentifier',
                    'in' => 'query',
                    'schema' => ['description' => 'The identifier for the credential to obtain.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'credential_identifier_test'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The EIAM instance ID.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                            'credentialId' => ['description' => 'The credential ID.', 'type' => 'string', 'title' => '', 'example' => 'cred_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                            'status' => ['description' => 'The status of the credential. Valid values:'."\n"
                                ."\n"
                                .'- `enabled`: The credential can be used.'."\n"
                                ."\n"
                                .'- `disabled`: The credential cannot be used.', 'type' => 'string', 'title' => '', 'example' => 'enabled'],
                            'credentialIdentifier' => ['description' => 'The credential identifier.', 'type' => 'string', 'title' => '', 'example' => 'credential_identifier_test'],
                            'credentialName' => ['description' => 'The credential name.', 'type' => 'string', 'title' => '', 'example' => 'credential_name'],
                            'credentialSubjectType' => ['description' => 'The credential\'s subject type. Valid values:'."\n"
                                ."\n"
                                .'- `authentication_token_provider`: An authentication token provider.', 'type' => 'string', 'title' => '', 'example' => 'authentication_token_provider'],
                            'credentialSubjectId' => ['description' => 'The ID of the credential\'s subject.', 'type' => 'string', 'title' => '', 'example' => 'apt_werthgfdsasffxxxxx'],
                            'credentialScenarioLabel' => ['description' => 'The usage scenario for the credential. Valid values:'."\n"
                                ."\n"
                                .'- `llm`: For use with a large language model.'."\n"
                                ."\n"
                                .'- `saas`: For use with a third-party SaaS application.', 'type' => 'string', 'title' => '', 'example' => 'llm'],
                            'credentialType' => ['description' => 'The credential type. Valid values:'."\n"
                                ."\n"
                                .'- `api_key`: The credential is an API key.'."\n"
                                ."\n"
                                .'- `oauth_client`: The credential represents an OAuth client.', 'type' => 'string', 'title' => '', 'example' => 'api_key'],
                            'credentialCreationType' => ['description' => 'Indicates how the credential was created. Valid values:'."\n"
                                ."\n"
                                .'- `system_init`: System-initiated.'."\n"
                                ."\n"
                                .'- `user_custom`: User-created.', 'type' => 'string', 'title' => '', 'example' => 'user_custom'],
                            'description' => ['description' => 'The credential description.', 'type' => 'string', 'title' => '', 'example' => 'credential_description'],
                            'createTime' => ['description' => 'The creation time of the credential, formatted as a Unix timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'updateTime' => ['description' => 'The last update time of the credential, formatted as a Unix timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830227000'],
                            'credentialContent' => [
                                'description' => 'The detailed content of the credential. The structure of this object depends on the value of `credentialType`.',
                                'type' => 'object',
                                'properties' => [
                                    'oauthClientContent' => [
                                        'description' => 'Contains details for an OAuth client credential. Returned only when `credentialType` is `oauth_client`.',
                                        'type' => 'object',
                                        'properties' => [
                                            'clientId' => ['description' => 'The `client_id` for OAuth 2.0.', 'type' => 'string', 'title' => '', 'example' => 'dmvncmxersdxxxxxx'],
                                            'clientSecret' => ['description' => 'The `client_secret` for OAuth 2.0.', 'type' => 'string', 'title' => '', 'example' => 'nsklnertyt5ddwizncxxxx'],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'apiKeyContent' => [
                                        'type' => 'object',
                                        'properties' => [
                                            'apiKey' => ['description' => 'The API key value.', 'type' => 'string', 'title' => '', 'example' => 'sk-nsklncmwizncxxxx'."\n"],
                                        ],
                                        'description' => 'Contains details for an API key credential. Returned only when `credentialType` is `api_key`.',
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'credentialSharingScope' => ['description' => 'The sharing scope of the credential, such as whether it is exclusive to a specific account.', 'type' => 'string', 'example' => 'user_exclusive', 'title' => ''],
                            'exclusiveUserId' => ['description' => 'The ID of the account that exclusively owns the credential. This field is present only when `credentialSharingScope` is `user_exclusive`.', 'type' => 'string', 'example' => 'user_xxx', 'title' => ''],
                            'credentialExternalId' => ['type' => 'string', 'description' => '', 'title' => '', 'example' => ''],
                        ],
                        'description' => 'The details of the credential.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ObtainCredential',
            'description' => 'This API uses an access token from IDaaS for authentication and authorization.'."\n"
                ."\n"
                .'The access token must have permissions to obtain static credentials for the built-in privileged access management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The required scope is `urn:cloud:idaas:pam|credential:obtain`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"credentialId\\": \\"cred_mkv7rgt4d7i4u7zqtzev2mxxxx\\",\\n  \\"status\\": \\"enabled\\",\\n  \\"credentialIdentifier\\": \\"credential_identifier_test\\",\\n  \\"credentialName\\": \\"credential_name\\",\\n  \\"credentialSubjectType\\": \\"authentication_token_provider\\",\\n  \\"credentialSubjectId\\": \\"apt_werthgfdsasffxxxxx\\",\\n  \\"credentialScenarioLabel\\": \\"llm\\",\\n  \\"credentialType\\": \\"api_key\\",\\n  \\"credentialCreationType\\": \\"user_custom\\",\\n  \\"description\\": \\"credential_description\\",\\n  \\"createTime\\": 1649830225000,\\n  \\"updateTime\\": 1649830227000,\\n  \\"credentialContent\\": {\\n    \\"oauthClientContent\\": {\\n      \\"clientId\\": \\"dmvncmxersdxxxxxx\\",\\n      \\"clientSecret\\": \\"nsklnertyt5ddwizncxxxx\\"\\n    },\\n    \\"apiKeyContent\\": {\\n      \\"apiKey\\": \\"sk-nsklncmwizncxxxx\\\\n\\"\\n    }\\n  },\\n  \\"credentialSharingScope\\": \\"user_exclusive\\",\\n  \\"exclusiveUserId\\": \\"user_xxx\\",\\n  \\"credentialExternalId\\": \\"\\"\\n}","type":"json"}]',
        ],
        'ObtainJwtAuthenticationToken' => [
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/obtainJwt',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication credential. The format is `Bearer ${access_token}`.'."\n"
                        ."\n"
                        .'> Use an access token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the instance.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'consumerId' => ['description' => 'The ID of the authentication token consumer.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_jwt_subject'],
                            'authenticationTokenId' => ['description' => 'The ID of the authentication token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'The ID of the instance.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                            'authenticationTokenId' => ['description' => 'The ID of the authentication token.', 'type' => 'string', 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                            'credentialProviderId' => ['description' => 'The ID of the credential provider.', 'type' => 'string', 'title' => '', 'example' => 'atp_01kr2cmj5gxxx4fvmls2e93dxxxxx'],
                            'createTime' => ['description' => 'The creation time of the authentication token, provided as a Unix timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'updateTime' => ['description' => 'The time the authentication token was last updated, provided as a Unix timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'authenticationTokenType' => ['description' => 'The type of the authentication token.'."\n"
                                ."\n"
                                .'> The value is always `jwt`, indicating a JWT-based authentication token.', 'type' => 'string', 'title' => '', 'example' => 'jwt'],
                            'revoked' => ['description' => 'Indicates whether the authentication token has been revoked.', 'type' => 'boolean', 'title' => '', 'example' => 'false'],
                            'creatorType' => ['description' => 'The type of the entity that created the authentication token. Valid value:'."\n"
                                ."\n"
                                .'- `application`: The token was created by an application.', 'type' => 'string', 'title' => '', 'example' => 'application'],
                            'creatorId' => ['description' => 'The ID of the authentication token\'s creator.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                            'consumerType' => ['description' => 'The type of entity that consumes the authentication token. Valid values:'."\n"
                                ."\n"
                                .'- `application`: The token is consumed by an application.'."\n"
                                ."\n"
                                .'- `custom`: Indicates a user-defined consumer.', 'type' => 'string', 'title' => '', 'example' => 'custom'],
                            'consumerId' => ['description' => 'The ID of the authentication token consumer.', 'type' => 'string', 'title' => '', 'example' => 'test_jwt_subject'],
                            'expirationTime' => ['description' => 'The expiration time of the authentication token, provided as a Unix timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1772693568000'],
                            'jwtContent' => [
                                'type' => 'object',
                                'properties' => [
                                    'jwtValue' => ['description' => 'The JWT content.', 'type' => 'string', 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                                    'derivedShortToken' => ['description' => 'A short token derived from the JWT.', 'type' => 'string', 'title' => '', 'example' => 'sk-Nx2vzxxxxxxxxxxxxxxxxx'],
                                ],
                                'title' => '',
                                'description' => 'The content of the JWT-based authentication token.',
                                'example' => '',
                            ],
                        ],
                        'description' => 'The details of the JWT authentication token.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ObtainJwtAuthenticationToken',
            'summary' => 'Obtains a JWT authentication token.',
            'description' => 'This API requires an access token issued by IDaaS for authentication and authorization.'."\n"
                ."\n"
                .'The provided access token must have permission to obtain authentication tokens for the built-in privileged access management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|authentication_token:obtain`.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"authenticationTokenId\\": \\"atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx\\",\\n  \\"credentialProviderId\\": \\"atp_01kr2cmj5gxxx4fvmls2e93dxxxxx\\",\\n  \\"createTime\\": 1649830225000,\\n  \\"updateTime\\": 1649830225000,\\n  \\"authenticationTokenType\\": \\"jwt\\",\\n  \\"revoked\\": false,\\n  \\"creatorType\\": \\"application\\",\\n  \\"creatorId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n  \\"consumerType\\": \\"custom\\",\\n  \\"consumerId\\": \\"test_jwt_subject\\",\\n  \\"expirationTime\\": 1772693568000,\\n  \\"jwtContent\\": {\\n    \\"jwtValue\\": \\"eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\\",\\n    \\"derivedShortToken\\": \\"sk-Nx2vzxxxxxxxxxxxxxxxxx\\"\\n  }\\n}","type":"json"}]',
        ],
        'ObtainJwtAuthenticationTokenByDerivedShortToken' => [
            'summary' => 'Obtain a JWT authentication token using a derived short token.',
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/obtainJwtByDerivedShortToken',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'derivedShortToken' => ['description' => 'Derived short token for the JWT authentication token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'sk-Nx2vzxxxxxxxxxxxxxxxxx'],
                        ],
                        'description' => 'Request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'type' => 'object',
                        'properties' => [
                            'instanceId' => ['description' => 'Instance ID.', 'type' => 'string', 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                            'authenticationTokenId' => ['description' => 'Authentication token ID.', 'type' => 'string', 'title' => '', 'example' => 'atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx'],
                            'credentialProviderId' => ['description' => 'Credential provider ID.', 'type' => 'string', 'title' => '', 'example' => 'atp_01kr2cmj5gxxx4fvmls2e93dxxxxx'],
                            'createTime' => ['description' => 'Creation time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'updateTime' => ['description' => 'Last update time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1649830225000'],
                            'authenticationTokenType' => ['description' => 'Type of the authentication token.'."\n"
                                ."\n"
                                .'> The value is always `jwt`, indicating a JWT authentication token.', 'type' => 'string', 'title' => '', 'example' => 'jwt'],
                            'revoked' => ['description' => 'Indicates whether the authentication token is revoked.', 'type' => 'boolean', 'title' => '', 'example' => 'false'],
                            'creatorType' => ['description' => 'Type of the authentication token creator. Valid values:'."\n"
                                ."\n"
                                .'- application', 'type' => 'string', 'title' => '', 'example' => 'application'],
                            'creatorId' => ['description' => 'ID of the authentication token creator.', 'type' => 'string', 'title' => '', 'example' => 'app_ngtkgrrxxxxktg5eao6z4xxxxx'],
                            'consumerType' => ['description' => 'Type of the authentication token consumer. Valid values:'."\n"
                                ."\n"
                                .'- application'."\n"
                                ."\n"
                                .'- custom', 'type' => 'string', 'title' => '', 'example' => 'custom'],
                            'consumerId' => ['description' => 'ID of the authentication token consumer.', 'type' => 'string', 'title' => '', 'example' => 'test_jwt_subject'],
                            'expirationTime' => ['description' => 'Expiration time of the authentication token, as a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '1772693568000'],
                            'jwtContent' => [
                                'type' => 'object',
                                'properties' => [
                                    'jwtValue' => ['description' => 'JWT content.', 'type' => 'string', 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                                    'derivedShortToken' => ['description' => 'Derived short token for the JWT.', 'type' => 'string', 'title' => '', 'example' => 'sk-Nx2vzxxxxxxxxxxxxxxxxx'],
                                ],
                                'title' => '',
                                'description' => 'Content of the JWT authentication token.',
                                'example' => '',
                            ],
                        ],
                        'description' => 'Details of the JWT authentication token.',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ObtainJwtAuthenticationTokenByDerivedShortToken',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"instanceId\\": \\"idaas_ue2jvisn35ea5lmthk267xxxxx\\",\\n  \\"authenticationTokenId\\": \\"atntkn_01kqflm0sxxx8nmdc1cb5dskxxxxx\\",\\n  \\"credentialProviderId\\": \\"atp_01kr2cmj5gxxx4fvmls2e93dxxxxx\\",\\n  \\"createTime\\": 1649830225000,\\n  \\"updateTime\\": 1649830225000,\\n  \\"authenticationTokenType\\": \\"jwt\\",\\n  \\"revoked\\": false,\\n  \\"creatorType\\": \\"application\\",\\n  \\"creatorId\\": \\"app_ngtkgrrxxxxktg5eao6z4xxxxx\\",\\n  \\"consumerType\\": \\"custom\\",\\n  \\"consumerId\\": \\"test_jwt_subject\\",\\n  \\"expirationTime\\": 1772693568000,\\n  \\"jwtContent\\": {\\n    \\"jwtValue\\": \\"eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\\",\\n    \\"derivedShortToken\\": \\"sk-Nx2vzxxxxxxxxxxxxxxxxx\\"\\n  }\\n}","type":"json"}]',
        ],
        'PatchGroup' => [
            'summary' => 'Modifies information about an Employee Identity and Access Management (EIAM) group.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}',
            'methods' => ['patch'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas7VNWU7'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['title' => '', 'description' => 'The authentication information. The value is in the Bearer ${access_token} format. Example: Bearer ATxxxx.'."\n", 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The instance ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The application ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The group ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'group_xxx001'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.'."\n",
                        'type' => 'object',
                        'properties' => [
                            'groupName' => ['title' => '', 'description' => 'The group name.'."\n", 'type' => 'string', 'required' => false, 'example' => 'name001'],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'PatchGroup',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'PatchOrganizationalUnit' => [
            'summary' => 'Modifies an EIAM organizational unit.',
            'path' => '/v2/{instanceId}/{applicationId}/organizationalUnits/{organizationalUnitId}',
            'methods' => ['patch'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'organizationalUnitId',
                    'in' => 'path',
                    'schema' => ['description' => 'The ID of the organizational unit.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitName' => ['description' => 'The name of the organizational unit.', 'type' => 'string', 'example' => 'name001', 'title' => '', 'required' => false],
                            'description' => ['description' => 'The description of the organizational unit.', 'type' => 'string', 'example' => '测试组织', 'title' => '', 'required' => false],
                        ],
                        'required' => false,
                        'example' => 'ou_xxx001',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'PatchOrganizationalUnit',
            'description' => 'The operation conforms to the HTTP PATCH request method. The value of a parameter is modified only if the parameter is specified in the request.',
            'responseParamsDescription' => '> If the request was successful, the HTTP status code 200 is returned by default.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | OrganizationUnitIdNotInScopes | organizationUnitId : ou_wovwffm62xifdziem7an7xxxxx not in provisioning scope!  | 组织不在同步范围内|'."\n"
                .'| 400  | ResourceDuplicated.OrganizationalUnitName | The specified OrganizationalUnitName resource: xxx already exist!  | 组织名称已存在|'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:organizational_unit:manage_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'PatchUser' => [
            'summary' => 'Modifies an Employee Identity and Access Management (EIAM) account.',
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}',
            'methods' => ['patch'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. The value is in the Bearer ${access\\_token} format. Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer AT8csE2seYxxxxxij', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'username' => ['description' => 'The name of the account.', 'type' => 'string', 'example' => 'name001', 'title' => '', 'required' => false],
                            'displayName' => ['description' => 'The display name of the account.', 'type' => 'string', 'example' => 'display_name001', 'title' => '', 'required' => false],
                            'phoneRegion' => ['description' => 'The country code of the mobile number. For example, the country code of China is 86 without 00 or +. This parameter is required if a mobile number is specified.', 'type' => 'string', 'example' => '86', 'title' => '', 'required' => false],
                            'phoneNumber' => ['description' => 'The mobile number.', 'type' => 'string', 'example' => '156xxxxxxx', 'title' => '', 'required' => false],
                            'phoneNumberVerified' => ['description' => 'Specifies whether the mobile number is verified. This field is required if a mobile number is specified. If you have no special requirement, set this parameter to true.', 'type' => 'boolean', 'example' => 'true', 'title' => '', 'required' => false],
                            'email' => ['description' => 'The email address.', 'type' => 'string', 'example' => 'example@example.com', 'title' => '', 'required' => false],
                            'emailVerified' => ['description' => 'Specifies whether the email address is verified. This field is required if an email address is specified. If you have no special requirement, set this parameter to true.', 'type' => 'boolean', 'example' => 'true', 'title' => '', 'required' => false],
                            'customFields' => [
                                'title' => '',
                                'description' => 'The extended fields of the account.',
                                'type' => 'array',
                                'items' => [
                                    'description' => 'The extended field.',
                                    'type' => 'object',
                                    'properties' => [
                                        'operator' => ['description' => 'The type of the operation. This parameter is deprecated. Replace it with operation.', 'type' => 'string', 'deprecated' => true, 'required' => false, 'example' => 'replace', 'title' => ''],
                                        'fieldName' => ['description' => 'The name of the extended field. For more information about the type and valid values of the extended field, see the detailed description of the extended field in the IDaaS console.', 'type' => 'string', 'example' => 'age', 'title' => '', 'required' => false],
                                        'fieldValue' => ['description' => 'The value of the extended field.', 'type' => 'string', 'example' => 'test_value', 'title' => '', 'required' => false],
                                        'operation' => ['description' => 'The operation to be performed on the field. Valid values:'."\n"
                                            ."\n"
                                            .'- add'."\n"
                                            ."\n"
                                            .'- replace If you leave the value of the extended field empty, the replace operation is converted to an add operation.'."\n"
                                            ."\n"
                                            .'- remove', 'type' => 'string', 'required' => false, 'example' => 'replace', 'title' => ''],
                                    ],
                                    'required' => false,
                                    'title' => '',
                                    'example' => '',
                                ],
                                'required' => false,
                                'example' => '',
                            ],
                        ],
                        'required' => false,
                        'example' => 'user_001',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'PatchUser',
            'description' => 'The operation conforms to the HTTP PATCH request method. The value of a parameter is modified only if the parameter is specified in the request.',
            'extraInfo' => '### 错误码'."\n"
                .'|  HttpCode   | Error Code  | 错误信息 | 说明 |'."\n"
                .'|  ----  | ----  | ----  | ----  |'."\n"
                .'| 400  | invalid\\_token | Access token is not valid  | token无效|'."\n"
                .'| 400  | MissingParameter.xxxx | The specified parameter:xxx is required!  | 缺少xxxx参数 |'."\n"
                .'| 400  | InvalidParameter.xxxx | The specified parameter:xxxx is required!  | xxxx参数无效 |'."\n"
                .'| 404  | ResourceNotFound.User | The specified User resource: user_d6sbsuumeta4h66ec3il7yxxxx not found.  | 账户不存在 |'."\n"
                .'| 404  | application\\_not\\_found | Application id not found: app_mkv7rgt4d7i4u7zqtzev2mxxxx | 应用不存在 |'."\n"
                .'| 403  | application\\_disabled | Application is disabled| 应用处于禁用状态 |'."\n"
                .'| 403  | application\\_api\\_disabled | Application api invoke disabled| 应用API未开放 |'."\n"
                .'| 403  | permission\\_denied | Require scopes: [urn:alibaba:idaas:scope:user:manager_all] | 缺少API授权信息 |'."\n"
                .'| 500  | Internal Server Error | Internal Server Error  | 服务器内部错误|',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'ReinstateAuthenticationToken' => [
            'summary' => 'Reinstate an authentication token.',
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/reinstate',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter an IDaaS-issued Access Token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'token' => ['description' => 'The original authentication token.'."\n"
                                ."\n"
                                .'> You can pass either the original authentication token or its derived short token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                            'token_type_hint' => ['description' => 'A hint about the authentication token type.'."\n"
                                ."\n"
                                .'><notice>'."\n"
                                ."\n"
                                .'Do not provide a value for this parameter.'."\n"
                                ."\n"
                                .'></notice>', 'type' => 'string', 'title' => '', 'required' => false, 'example' => '-'],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ReinstateAuthenticationToken',
            'description' => 'This API uses an IDaaS-issued Access Token for identity authentication and authorization.'."\n"
                ."\n"
                .'Ensure that the Access Token you provide has the Manage authentication tokens permission for the IDaaS built-in Privileged Access Management (PAM) application.'."\n"
                ."\n"
                .'> The required scope is `urn:cloud:idaas:pam|authentication_token:manage`.'."\n"
                ."\n"
                .'><notice>'."\n"
                ."\n"
                .'Only JWT authentication tokens support this operation.'."\n"
                ."\n"
                .'></notice>',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'ReinstateAuthenticationTokenByConsumer' => [
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/reinstateByConsumer',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter the Access Token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'consumerId' => ['description' => 'The ID of the authentication token consumer.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_jwt_subject'],
                            'credentialProviderIdentifier' => ['description' => 'The credential provider identifier.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_example_identifier'],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ReinstateAuthenticationTokenByConsumer',
            'summary' => 'Reinstate an authentication token for a consumer.',
            'description' => 'This API uses an access token issued by IDaaS to perform identity authentication and authorization.'."\n"
                ."\n"
                .'Ensure that the provided access token is authorized to access the Manage Authentication Token feature in the IDaaS built-in PAM (Privileged Access Management) application.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|authentication_token:manage`.'."\n"
                ."\n"
                .'><notice>'."\n"
                ."\n"
                .'This operation supports only JWT-type authentication tokens.'."\n"
                ."\n"
                .'></notice>',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'RemoveUserFromOrganizationalUnits' => [
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/removeUserFromOrganizationalUnits',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaas3S4NKL', 'FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authorization credential for the request.'."\n"
                        .'Format: Bearer ${access\\_token}.'."\n"
                        .'Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitIds' => [
                                'title' => '',
                                'description' => 'The organizational unit IDs.',
                                'type' => 'array',
                                'items' => ['description' => 'The organizational unit ID.', 'type' => 'string', 'required' => false, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                                'required' => true,
                                'example' => '[ou_wovwffm62xifdziem7an7xxxxx]',
                            ],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'RemoveUserFromOrganizationalUnits',
            'summary' => 'Removes an EIAM account from one or more EIAM organizational units. The operation succeeds even if the account is not in the specified organizational units.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'RemoveUsersFromGroup' => [
            'summary' => 'Removes multiple Employee Identity and Access Management (EIAM) accounts from an EIAM group. If an account does not belong to the group, the removal succeeds by default.',
            'path' => '/v2/{instanceId}/{applicationId}/groups/{groupId}/actions/removeUsersFromGroup',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasIEJFYH'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['title' => '', 'description' => 'The authentication information. The value is in the Bearer ${access_token} format. Example: Bearer ATxxxx.'."\n", 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The instance ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The application ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx'],
                ],
                [
                    'name' => 'groupId',
                    'in' => 'path',
                    'schema' => ['title' => '', 'description' => 'The group ID.'."\n", 'type' => 'string', 'required' => true, 'example' => 'group_wovwffm62xifdziem7an7xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.'."\n",
                        'type' => 'object',
                        'properties' => [
                            'userIds' => [
                                'title' => '',
                                'description' => 'The account IDs.'."\n",
                                'type' => 'array',
                                'items' => ['description' => 'The account ID.'."\n", 'type' => 'string', 'required' => false, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx'."\n", 'title' => ''],
                                'required' => true,
                                'example' => '[user_d6sbsuumeta4h66ec3il7yxxxx}',
                            ],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
            'title' => 'RemoveUsersFromGroup',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'RevokeAuthenticationToken' => [
            'summary' => 'Revokes an authentication token.',
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/revoke',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter the Access Token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'token' => ['description' => 'Original authentication token.'."\n"
                                ."\n"
                                .'> You can pass either the original authentication token or a derived short token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                            'token_type_hint' => ['description' => 'Authentication token type hint.'."\n"
                                ."\n"
                                .'><notice>'."\n"
                                ."\n"
                                .'Currently, no value is required.'."\n"
                                ."\n"
                                .'></notice>', 'type' => 'string', 'title' => '', 'required' => false, 'example' => '-'],
                        ],
                        'description' => 'Request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'RevokeAuthenticationToken',
            'description' => 'This API uses an Access Token issued by IDaaS to perform identity authentication and authorization.'."\n"
                ."\n"
                .'Ensure that the Access Token is authorized to access the "Manage Authentication Tokens" feature of the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The corresponding scope is `urn:cloud:idaas:pam|authentication_token:manage`.'."\n"
                ."\n"
                .'><notice>'."\n"
                ."\n"
                .'This operation currently supports only JWT authentication tokens.'."\n"
                ."\n"
                .'></notice>',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'RevokeAuthenticationTokenByConsumer' => [
            'summary' => 'Revokes an authentication token for a consumer.',
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/revokeByConsumer',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'Authentication information. Format: Bearer ${access\\_token}.'."\n"
                        ."\n"
                        .'> Enter the Access Token issued by IDaaS.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'Bearer xxxxxx'],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'Instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'consumerId' => ['description' => 'Consumer ID of the authentication token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_jwt_subject'],
                            'credentialProviderIdentifier' => ['description' => 'Credential provider identifier.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'test_example_identifier'],
                        ],
                        'description' => 'Request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'RevokeAuthenticationTokenByConsumer',
            'description' => 'This API uses an access token issued by IDaaS to authenticate and authorize requests.'."\n"
                ."\n"
                .'Make sure that the access token you provide has the \'Manage authentication tokens\' permission for the built-in Privileged Access Management (PAM) application in IDaaS.'."\n"
                ."\n"
                .'> The required scope is `urn:cloud:idaas:pam|authentication_token:manage`.'."\n"
                ."\n"
                .'><notice>'."\n"
                ."\n"
                .'This operation can revoke only JWT authentication tokens.'."\n"
                ."\n"
                .'></notice>',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'RevokeToken' => [
            'path' => '/v2/{instanceId}/{applicationId}/oauth2/revoke',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasJXI2A5'],
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'client_id',
                    'in' => 'query',
                    'schema' => ['description' => 'The client ID.', 'type' => 'string', 'required' => false, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'client_secret',
                    'in' => 'query',
                    'schema' => ['description' => 'The client secret.', 'type' => 'string', 'required' => false, 'example' => 'CSEHDcHcrUKHw1CuxkJEHPveWRXBGqVqRsxxxx', 'title' => ''],
                ],
                [
                    'name' => 'token',
                    'in' => 'query',
                    'schema' => ['description' => 'The token to be revoked.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'ATxxxx'],
                ],
                [
                    'name' => 'token_type_hint',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The type of the token. Valid values: access\\_token refresh\\_token',
                        'enumValueTitles' => ['access_token' => 'access\\_token', 'refresh_token' => 'refresh\\_token'],
                        'type' => 'string',
                        'title' => '',
                        'required' => false,
                        'example' => 'access_token',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => ['title' => 'RevokeResponse', 'description' => 'The response parameters.', 'type' => 'object', 'example' => ''],
                ],
            ],
            'title' => 'RevokeToken',
            'summary' => 'Revokes an access token or refresh token.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"test\\": \\"test\\",\\n  \\"test2\\": 1\\n}","type":"json"}]',
        ],
        'SetUserPrimaryOrganizationalUnit' => [
            'summary' => 'Sets the primary organization for an EIAM account. This operation removes the account from the old primary organization and adds it to the new one.',
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/setUserPrimaryOrganizationalUnit',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2', 'FEATUREidaas3S4NKL'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication information.'."\n"
                        .'Format: Bearer ${access\\_token}.'."\n"
                        .'Example: Bearer ATxxxx.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'organizationalUnitId' => ['description' => 'The primary organization ID.', 'type' => 'string', 'required' => true, 'example' => 'ou_wovwffm62xifdziem7an7xxxxx', 'title' => ''],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'SetUserPrimaryOrganizationalUnit',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'UpdateUserPassword' => [
            'summary' => 'Updates the password for a specified EIAM account.',
            'path' => '/v2/{instanceId}/{applicationId}/users/{userId}/actions/updateUserPassword',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasCRU1S2'],
            ],
            'parameters' => [
                [
                    'name' => 'Authorization',
                    'in' => 'header',
                    'schema' => ['description' => 'The authentication credential. Format: \\`Bearer ${access\\_token}\\`. Example: \\`Bearer ATxxxx\\`.', 'type' => 'string', 'required' => true, 'example' => 'Bearer xxxx', 'title' => ''],
                ],
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'applicationId',
                    'in' => 'path',
                    'schema' => ['description' => 'The application ID.', 'type' => 'string', 'required' => true, 'example' => 'app_mkv7rgt4d7i4u7zqtzev2mxxxx', 'title' => ''],
                ],
                [
                    'name' => 'userId',
                    'in' => 'path',
                    'schema' => ['description' => 'The account ID.', 'type' => 'string', 'required' => true, 'example' => 'user_d6sbsuumeta4h66ec3il7yxxxx', 'title' => ''],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The request body.',
                        'type' => 'object',
                        'properties' => [
                            'password' => ['description' => 'The new password. For the password requirements, see the password policy in the console.', 'type' => 'string', 'example' => 'xxxx', 'title' => '', 'required' => false],
                        ],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [],
            ],
            'title' => 'UpdateUserPassword',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{}","type":"json"}]',
        ],
        'ValidateAuthenticationToken' => [
            'path' => '/v2/{instanceId}/authenticationTokens/_/actions/validate',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'Anonymous' => [],
                ],
            ],
            'consumes' => ['application/json'],
            'produces' => ['application/json'],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREidaasDPGRH1'],
                'autoTest' => true,
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'path',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'maxLength' => 64, 'title' => '', 'example' => 'idaas_ue2jvisn35ea5lmthk267xxxxx'],
                ],
                [
                    'name' => 'body',
                    'in' => 'body',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'token' => ['description' => 'The original authentication token.'."\n"
                                ."\n"
                                .'> Pass either the original authentication token or a derived short token.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'eyJhbGciOixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'],
                            'token_type_hint' => ['description' => 'A hint about the type of the authentication token.'."\n"
                                ."\n"
                                .'><notice>'."\n"
                                ."\n"
                                .'No value is currently required for this parameter.'."\n"
                                ."\n"
                                .'></notice>', 'type' => 'string', 'title' => '', 'required' => false, 'example' => '-'],
                        ],
                        'description' => 'The request body.',
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'active' => ['description' => 'Indicates whether the authentication token is valid.', 'type' => 'boolean', 'title' => '', 'example' => 'true'],
                        ],
                        'description' => 'The validation result.',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ValidateAuthenticationToken',
            'summary' => 'Validates an authentication token.',
            'description' => '><notice>'."\n"
                ."\n"
                .'This operation is supported only for JSON Web Token (JWT) authentication tokens.'."\n"
                ."\n"
                .'></notice>',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"active\\": true\\n}","type":"json"}]',
        ],
    ],
    'endpoints' => [
        ['regionId' => 'cn-hongkong', 'regionName' => 'China (Hong Kong)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eiam-developerapi.cn-hongkong.aliyuncs.com', 'endpoint' => 'eiam-developerapi.cn-hongkong.aliyuncs.com', 'vpc' => 'eiam-developerapi-hk.vpc-proxy.aliyuncs.com'],
        ['regionId' => 'ap-northeast-2', 'regionName' => 'South Korea (Seoul)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eiam-developerapi.ap-northeast-2.aliyuncs.com', 'endpoint' => 'eiam-developerapi.ap-northeast-2.aliyuncs.com', 'vpc' => 'eiam-developerapi-sel.vpc-proxy.aliyuncs.com'],
        ['regionId' => 'ap-southeast-1', 'regionName' => 'Singapore', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eiam-developerapi.ap-southeast-1.aliyuncs.com', 'endpoint' => 'eiam-developerapi.ap-southeast-1.aliyuncs.com', 'vpc' => 'eiam-developerapi-sg.vpc-proxy.aliyuncs.com'],
        ['regionId' => 'ap-southeast-5', 'regionName' => 'Indonesia (Jakarta)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eiam-developerapi.ap-southeast-5.aliyuncs.com', 'endpoint' => 'eiam-developerapi.ap-southeast-5.aliyuncs.com', 'vpc' => 'eiam-developerapi-jk.vpc-proxy.aliyuncs.com'],
        ['regionId' => 'cn-hangzhou', 'regionName' => 'China (Hangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eiam-developerapi.cn-hangzhou.aliyuncs.com', 'endpoint' => 'eiam-developerapi.cn-hangzhou.aliyuncs.com', 'vpc' => 'eiam-developerapi-cn.vpc-proxy.aliyuncs.com'],
        ['regionId' => 'eu-central-1', 'regionName' => 'Germany (Frankfurt)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'eiam-developerapi.eu-central-1.aliyuncs.com', 'endpoint' => 'eiam-developerapi.eu-central-1.aliyuncs.com', 'vpc' => 'eiam-developerapi-eu.vpc-proxy.aliyuncs.com'],
    ],
    'errorCodes' => [],
    'changeSet' => [],
    'flowControl' => [
        'flowControlList' => [],
    ],
];