summaryrefslogtreecommitdiff
path: root/data/zh_cn/cddc/2020-03-20/api-docs.php
blob: 7e86e4060d0f1a151611137e5f1ef48f2d5f4a82 (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
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'RPC', 'product' => 'cddc', 'version' => '2020-03-20'],
    'directories' => [
        [
            'children' => ['CreateMyBase'],
            'type' => 'directory',
            'title' => '专有版API',
            'id' => 350554,
        ],
        [
            'children' => [
                [
                    'children' => ['CreateDedicatedHostGroup', 'DeleteDedicatedHostGroup', 'ModifyDedicatedHostGroupAttribute'],
                    'type' => 'directory',
                    'title' => '集群管理',
                    'id' => 350559,
                ],
                [
                    'children' => ['CreateDedicatedHost', 'DescribeDedicatedHostAttribute', 'DescribeHostEcsLevelInfo', 'DescribeDedicatedHostDisks', 'ModifyDedicatedHostAttribute', 'ReplaceDedicatedHost', 'RestartDedicatedHost', 'ModifyDedicatedHostClass'],
                    'type' => 'directory',
                    'title' => '主机管理',
                    'id' => 350564,
                ],
                [
                    'children' => ['CreateDedicatedHostAccount', 'DeleteDedicatedHostAccount', 'ModifyDedicatedHostPassword', 'ModifyDedicatedHostAccount'],
                    'type' => 'directory',
                    'title' => '主机账号管理',
                    'id' => 350578,
                ],
                [
                    'children' => ['QueryHostInstanceConsoleInfo', 'QueryHostBaseInfoByInstance'],
                    'type' => 'directory',
                    'title' => '实例管理',
                    'id' => 350583,
                ],
            ],
            'type' => 'directory',
            'title' => '托管版API',
            'id' => 350556,
        ],
        [
            'children' => ['AddPrinsInstance', 'CreatePrinsBackupPlan', 'DescribePrinsInstance', 'DescribePrinsBackupPlan', 'DescribePrinsEcsInstances', 'GetPrinsEventList', 'GetPrinsMetricsList', 'ListPrinsSQLErrorLog', 'ListPrinsParams', 'ListPrinsInstances'],
            'type' => 'directory',
            'title' => '开放版 API',
            'id' => 350586,
        ],
        [
            'children' => ['DescribeDedicatedHostGroups', 'DescribeDedicatedHosts', 'DescribeHostWebShell', 'DescribeRegions', 'ListTagResources', 'TagResources', 'UntagResources'],
            'title' => '其他',
            'type' => 'directory',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'AddPrinsInstance' => [
            'summary' => '添加 MyBase 自建纳管实例。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '226388',
                'abilityTreeNodes' => ['FEATUREcddcSRVFXT'],
                'tenantRelevance' => 'publicInformation',
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'EcsInstanceId',
                    'in' => 'query',
                    'schema' => ['description' => '指定纳管的 ECS 实例 ID。', 'type' => 'string', 'required' => false, 'example' => 'i-bp1726beecvi8kak****'],
                ],
                [
                    'name' => 'Engine',
                    'in' => 'query',
                    'schema' => ['description' => '根据数据库引擎类型过滤主机列表。取值:'."\n"
                        ."\n"
                        .'- MySQL', 'type' => 'string', 'required' => false, 'example' => 'MySQL'],
                ],
                [
                    'name' => 'Ip',
                    'in' => 'query',
                    'schema' => ['description' => 'IP 信息。', 'type' => 'string', 'required' => false, 'example' => '127.0.0.1'],
                ],
                [
                    'name' => 'Port',
                    'in' => 'query',
                    'schema' => ['description' => '实例端口号。', 'type' => 'string', 'required' => false, 'example' => '3306'],
                ],
                [
                    'name' => 'Disk',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => '磁盘列表。',
                        'type' => 'array',
                        'items' => [
                            'description' => '磁盘信息。',
                            'type' => 'object',
                            'properties' => [
                                'Type' => ['description' => '云盘或本地盘的类型 ,取值:'."\n"
                                    ."\n"
                                    .'- **system**:系统盘'."\n"
                                    ."\n"
                                    .'- **data**: 数据盘', 'type' => 'string', 'required' => false, 'example' => 'system'],
                                'DiskId' => ['description' => '云盘或本地盘ID。', 'type' => 'string', 'required' => false, 'example' => 'd-2vc9qpza81r6t2nx****'],
                                'Category' => ['description' => '磁盘类型。取值范围:'."\n"
                                    .' - **cloud_efficiency**:高效云盘。'."\n"
                                    .' - **cloud_ssd**:SSD云盘。'."\n"
                                    .' - **cloud_essd**:ESSD云盘。'."\n"
                                    .' - **cloud**:普通云盘。', 'type' => 'string', 'required' => false, 'example' => 'cloud_essd'],
                                'Device' => ['description' => '云盘或本地盘挂载实例的设备名。', 'type' => 'string', 'required' => false, 'example' => '/dev/xvda'],
                                'Mount' => ['description' => '挂载目录。', 'type' => 'string', 'required' => false, 'example' => '/data'],
                            ],
                            'required' => false,
                        ],
                        'required' => false,
                    ],
                ],
                [
                    'name' => 'Username',
                    'in' => 'query',
                    'schema' => ['description' => '数据库用户名', 'type' => 'string', 'required' => false, 'example' => 'username'],
                ],
                [
                    'name' => 'Password',
                    'in' => 'query',
                    'schema' => ['description' => '数据库连接密码。', 'type' => 'string', 'required' => false, 'example' => 'password'],
                ],
                [
                    'name' => 'SecurityGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '纳管实例时指定的安全组 ID。', 'type' => 'string', 'required' => false, 'example' => 'sg-t4neld965n89ocvt****'],
                ],
                [
                    'name' => 'Alias',
                    'in' => 'query',
                    'schema' => ['description' => '实例别名。', 'type' => 'string', 'required' => false, 'example' => 'alias'],
                ],
                [
                    'name' => 'Description',
                    'in' => 'query',
                    'schema' => ['description' => '实例描述。', 'type' => 'string', 'required' => false, 'example' => 'test'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D5C887C7-EAF1-40B7-88FE-2C45D4DB****'],
                            'CustInstanceId' => ['description' => '实例 ID。', 'type' => 'string', 'example' => '1'],
                            'CustInstanceName' => ['description' => '实例全局唯一的名称。', 'type' => 'string', 'example' => 'pr-22a21ac289e0****'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D5C887C7-EAF1-40B7-88FE-2C45D4DB****\\",\\n  \\"CustInstanceId\\": \\"1\\",\\n  \\"CustInstanceName\\": \\"pr-22a21ac289e0****\\"\\n}","type":"json"}]',
            'title' => '添加纳管实例',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'CreateDedicatedHost' => [
            'summary' => '调用CreateDedicatedHost接口添加专属集群主机。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'paid',
                'abilityTreeCode' => '74472',
                'abilityTreeNodes' => ['FEATUREcddcU7RCQ6'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => "\n"
                        .'目标集群ID。通过云数据库专属集群控制台**集群列表**查看目标集群ID。'."\n"
                        ."\n"
                        .'> 主机的数据库类型与集群的数据库类型一致。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'dhg-6w7q18iwt5jo****'],
                ],
                [
                    'name' => 'HostClass',
                    'in' => 'query',
                    'schema' => ['description' => '主机的规格。关于不同数据库类型支持的主机规格,详情请参见[主机规格详情](~~206343~~)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'rds.g6.4xlarge'],
                ],
                [
                    'name' => 'PayType',
                    'in' => 'query',
                    'schema' => ['description' => '主机的付费类型。取值为**prepaid**(包年包月)。'."\n"
                        ."\n", 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'prepaid'],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => ['description' => '指定主机的预付费类型。取值:'."\n"
                        ."\n"
                        .'<props="china">'."\n"
                        .'* **Year**:包年。'."\n"
                        .'* **Month**:包月。'."\n"
                        .'* **Week**:包周。'."\n"
                        ."\n"
                        .'</props>'."\n"
                        ."\n"
                        .'<props="intl">'."\n"
                        .'* **Year**:包年。'."\n"
                        .'* **Month**:包月。'."\n"
                        ."\n"
                        .'</props>'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'example' => 'Month'],
                ],
                [
                    'name' => 'UsedTime',
                    'in' => 'query',
                    'schema' => ['description' => '指定购买时长。取值:'."\n"
                        ."\n"
                        .'<props="china">'."\n"
                        .'* 当参数**Period**=**Year**时,**UsedTime**取值为**1**~**5**。'."\n"
                        .'* 当参数**Period**=**Month**时,**UsedTime**取值为**1**~**9**。'."\n"
                        .'* 当参数**Period**=**Week**时,**UsedTime**取值为**1**、**2**、**3**。'."\n"
                        ."\n"
                        .'</props>'."\n"
                        ."\n"
                        .'<props="intl">'."\n"
                        .'* 当参数**Period**=**Year**时,**UsedTime**取值为**1**~**5**。'."\n"
                        .'* 当参数**Period**=**Month**时,**UsedTime**取值为**1**~**9**。'."\n"
                        ."\n"
                        .'</props>'."\n"
                        ."\n\n", 'type' => 'string', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => '客户端生成该参数值,用于保证请求的幂等性,防止重复提交请求。该参数值只能包含ASCII字符,且不超过64个ASCII字符。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ETnLKlblzczshOTUbOCzSBZH8****'],
                ],
                [
                    'name' => 'AutoRenew',
                    'in' => 'query',
                    'schema' => ['description' => '是否开启自动续费功能。取值:'."\n"
                        .'* **true**:开启。'."\n"
                        .'* **false**:不开启。'."\n"
                        ."\n"
                        .'> 不填写默认为**false**。', 'type' => 'string', 'required' => false, 'example' => 'false', 'default' => 'false'],
                ],
                [
                    'name' => 'ImageCategory',
                    'in' => 'query',
                    'schema' => ['description' => '主机镜像。取值:'."\n"
                        .'  - **WindowsWithMssqlEntAlwaysonLicense**:SQL Server集群版'."\n"
                        .'  - **WindowsWithMssqlStdLicense**:SQL Server标准版'."\n"
                        .'  - **WindowsWithMssqlEntLicense**:SQL Server企业版'."\n"
                        .'  - **WindowsWithMssqlWebLicense**:SQL Server Web版'."\n"
                        .'  - **AliLinux**:其他主机镜像'."\n"
                        ."\n"
                        .'> 创建SQL Server主机时,需要填写对应版本的主机镜像。'."\n"
                        ."\n\n", 'type' => 'string', 'required' => false, 'example' => 'AliLinux'],
                ],
                [
                    'name' => 'OsPassword',
                    'in' => 'query',
                    'schema' => ['description' => '主机密码。 仅集群类型为**私有部署集群**时,支持创建主机密码。密码需符合如下要求:'."\n"
                        .'- 长度为8~30个字符。'."\n"
                        .'- 必须至少包含三项:大写字母、小写字母、数字和特殊字符。'."\n"
                        .'- 特殊符号:()\\\\`~!@#$%^&*-_+=|{}\\[\\]:;\'<>,.?/'."\n", 'type' => 'string', 'required' => false, 'example' => 'Test123456'],
                ],
                [
                    'name' => 'HostStorageType',
                    'in' => 'query',
                    'schema' => [
                        'description' => '主机磁盘类型,仅针对Tair类型主机生效,当前只支持以下两种类型:'."\n"
                            .'- **cloud_essd**:PL1云盘'."\n"
                            .'- **cloud_essd0**:PL0云盘',
                        'type' => 'string',
                        'required' => false,
                        'enumValueTitles' => ['cloud_essd0' => 'cloud_essd0', 'cloud_essd' => 'cloud_essd'],
                        'example' => 'cloud_essd0',
                    ],
                ],
                [
                    'name' => 'HostStorage',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'schema' => ['description' => '主机磁盘大小,仅针对Tair类型主机生效,取值范围是(单位GB):'."\n"
                        .'- 512'."\n"
                        .'- 1024'."\n"
                        .'- 1536'."\n"
                        .'- 2048'."\n"
                        .'- 2560'."\n"
                        .'- 3072'."\n"
                        .'- 3584'."\n"
                        .'- 4096', 'type' => 'string', 'required' => false, 'example' => '512'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在集群的[地域ID](~~198326~~)。', 'type' => 'string', 'required' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '可用区ID。调用[DescribeRegions](~~214103~~)接口查询可用区ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou-i'],
                ],
                [
                    'name' => 'VSwitchId',
                    'in' => 'query',
                    'schema' => ['description' => '虚拟交换机的ID,可通过专有网络控制台查看目标虚拟机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'vsw-bp133c8ifzxd3iv6q****'],
                ],
                [
                    'name' => 'ClusterType',
                    'in' => 'query',
                    'schema' => ['description' => 'MyBase 开放版使用,创建开放版集群类型:onACK、onECS', 'type' => 'string', 'required' => false, 'example' => 'onACK'],
                ],
                [
                    'name' => 'ClusterAlias',
                    'in' => 'query',
                    'schema' => ['description' => 'MyBase开放版使用,开放版集群别名', 'type' => 'string', 'required' => false, 'example' => 'test-on-ack-cluster'],
                ],
                [
                    'name' => 'VpcID',
                    'in' => 'query',
                    'schema' => ['description' => 'MyBase开放版onECS集群指定VPC ID', 'type' => 'string', 'required' => false, 'example' => 'vpc-xxxxxx'],
                ],
                [
                    'name' => 'ClusterServices',
                    'in' => 'query',
                    'style' => 'simple',
                    'schema' => [
                        'description' => 'MyBase开放版onECS实例关联的服务。',
                        'type' => 'array',
                        'items' => ['description' => 'MyBase开放版onECS实例关联的服务。', 'type' => 'string', 'required' => false, 'example' => '"Orchestrator3.2.6,Promethus2.49.1,Grafana10.2.3"'],
                        'required' => false,
                    ],
                ],
                [
                    'name' => 'MyBaseEcsClass',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'MyBase开放版onECS实例的参数。',
                        'type' => 'object',
                        'properties' => [
                            'ChargeType' => ['description' => '付费类型,取值如下:'."\n"
                                .'- PrePaid:预付费。'."\n"
                                .'- PostPaid:后付费。', 'type' => 'string', 'required' => false, 'example' => 'PrePaid'],
                            'EcsClassCode' => ['description' => '实例规格。', 'type' => 'string', 'required' => false, 'example' => 'ecs.g7.large'],
                            'Amount' => ['description' => '购买数量。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1'],
                            'Period' => ['description' => '购买on ECS主机的包年包月时长。当参数ChargeType取值为PrePaid时,Period参数必填。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1'],
                            'PeriodType' => ['description' => '包年包月时长的单位,默认为Month(月)。', 'type' => 'string', 'required' => false, 'example' => 'Month'],
                            'SystemDiskSize' => ['description' => '系统盘容量。单位为GB。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '40'],
                            'SystemDiskCategory' => ['description' => '磁盘类型。', 'type' => 'string', 'required' => false, 'example' => 'cloud_essd'],
                            'DataDiskSize' => ['description' => '数据盘大小。单位为GB。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '40'],
                            'DataDiskCategory' => ['description' => '数据盘类型。', 'type' => 'string', 'required' => false, 'example' => 'cloud_essd'],
                            'DataDiskCount' => ['description' => '数据盘数量。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '2'],
                            'AutoRenew' => ['description' => '是否自动续费,默认false。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                            'Password' => ['description' => 'ECS主机密码。', 'type' => 'string', 'required' => false, 'example' => '***********'],
                            'KeyPairName' => ['description' => '密钥对名称。', 'type' => 'string', 'required' => false, 'example' => 'test****'],
                            'SecurityGroupIds' => [
                                'description' => '实例所属安全组集合。',
                                'type' => 'array',
                                'items' => ['description' => '实例所属安全组。', 'type' => 'string', 'required' => false, 'example' => 'sg-uf64zn0tc9qakm2j****'],
                                'required' => false,
                            ],
                            'Tags' => [
                                'description' => '主机标签信息。',
                                'type' => 'array',
                                'items' => ['description' => '主机标签信息。', 'type' => 'string', 'required' => false, 'example' => '{\\"key1\\":\\"value1\\"}'],
                                'required' => false,
                            ],
                            'InternetMaxBandwidthOut' => ['description' => '公网出带宽最大值,单位为Mbit/s。'."\n"
                                ."\n"
                                .'默认值:0。设定为大于0时会自动创建公网IP。', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '100'],
                            'InternetChargeType' => ['description' => '网络计费类型。取值范围:'."\n"
                                .'- PayByBandwidth:按固定带宽计费。'."\n"
                                .'- PayByTraffic:按使用流量计费。', 'type' => 'string', 'required' => false, 'example' => 'PayByTraffic'],
                            'DepolymentSetId' => ['description' => '部署集ID。', 'type' => 'string', 'required' => false, 'example' => '****'],
                        ],
                        'required' => false,
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'OrderId' => ['description' => '订单ID。', 'type' => 'integer', 'format' => 'int64', 'example' => '102565235'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'C860658E-68A6-46C1-AF6E-3AE7C4D32375'],
                            'ClusterName' => ['description' => '集群名称。', 'type' => 'string', 'example' => 'ca-2ze0x527ovq3y****'],
                            'DedicateHostList' => [
                                'type' => 'object',
                                'itemNode' => true,
                                'properties' => [
                                    'DedicateHostList' => [
                                        'description' => '已创建完成的主机信息。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'DedicatedHostId' => ['description' => '已创建完成的主机ID。', 'type' => 'string', 'example' => ' ch-bp108dki3wdl6****'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                ],
                                'description' => '',
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidParameter', 'errorMessage' => 'The parameter is invalid.', 'description' => ''],
                    ['errorCode' => 'COMMODITY.INVALID_COMPONENT', 'errorMessage' => 'Invalid component.', 'description' => ''],
                    ['errorCode' => 'InvalidAccountPassword.Format', 'errorMessage' => 'The account password format is invalid.', 'description' => '密码格式错误'],
                    ['errorCode' => 'InsufficientResourceCapacity', 'errorMessage' => 'No host is available for the requested instance.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"OrderId\\": 102565235,\\n  \\"RequestId\\": \\"C860658E-68A6-46C1-AF6E-3AE7C4D32375\\",\\n  \\"ClusterName\\": \\"ca-2ze0x527ovq3y****\\",\\n  \\"DedicateHostList\\": {\\n    \\"DedicateHostList\\": [\\n      {\\n        \\"DedicatedHostId\\": \\" ch-bp108dki3wdl6****\\"\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<CreateDedicatedHostResponse>\\n    <OrderId>102565235</OrderId>\\n    <RequestId>C860658E-68A6-46C1-AF6E-3AE7C4D32375</RequestId>\\n    <DedicateHostList>\\n        <DedicatedHostId> ch-bp108dki3wdl6****</DedicatedHostId>\\n    </DedicateHostList>\\n</CreateDedicatedHostResponse>","errorExample":""}]',
            'title' => '添加专属集群主机',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-07-07T01:58:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2022-01-12T13:37:15.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2021-12-13T09:29:46.000Z', 'description' => '错误码发生变更、请求参数发生变更'],
                ['createdAt' => '2021-11-30T09:56:11.000Z', 'description' => '错误码发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHost'],
                ],
            ],
            'ramActions' => [],
        ],
        'CreateDedicatedHostAccount' => [
            'summary' => '调用CreateDedicatedHostAccount接口创建主机账户。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74474',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'AccountName',
                    'in' => 'query',
                    'schema' => ['description' => '自定义主机账号名称。'."\n"
                        .'* 长度为2~16个字符。'."\n"
                        .'* 以字母开头,以字母或数字结尾。'."\n"
                        .'* 由小写字母、数字、下划线(_)组成。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test'],
                ],
                [
                    'name' => 'AccountPassword',
                    'in' => 'query',
                    'schema' => ['description' => '主机账号名的密码。密码要求:'."\n"
                        .'* 长度为6~32位。'."\n"
                        .'* 大写字母、小写字母、数字、特殊字符。'."\n"
                        .'* 特殊字符为:`!@#$%^&*()_+-=`'."\n"
                        ."\n"
                        .'> 您的引擎为SQL Server时,密码要求不能包含账户名(忽略大小写)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'testxxxxxx'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'BastionInstanceId',
                    'in' => 'query',
                    'schema' => ['description' => '关联的堡垒机ID,可以在云数据库专属集群控制台**堡垒机列表**查看。', 'type' => 'string', 'required' => false, 'example' => 'bastionhost-cn-xxxxxxxxxxx'],
                ],
                [
                    'name' => 'AccountType',
                    'in' => 'query',
                    'schema' => ['description' => '主机账号类型,取值:'."\n"
                        .'- **Normal**:普通账号。'."\n"
                        .'- **Admin**: 管理员账号。'."\n"
                        ."\n"
                        .'关于主机账号的权限说明,请参见[主机权限说明](~~176240~~)。', 'type' => 'string', 'required' => false, 'example' => 'Admin'],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => '由客户端生成该参数值,用于保证请求的幂等性,防止重复提交请求。字符长度不超过64个ASCII字符,且该参数值中不能包含非ASCII字符。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'ETnLKlblzczshOTUbOCz*******'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E12AS'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidAccountPassword.Format', 'errorMessage' => 'The account password format is invalid.', 'description' => '密码格式错误'],
                ],
                403 => [
                    ['errorCode' => 'InvalidAction.NotSupport', 'errorMessage' => 'The host status does not support the operation.', 'description' => '当前主机状态不支持此操作'],
                ],
                [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'The host is not found.', 'description' => '主机不存在'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E12AS\\"\\n}","errorExample":""},{"type":"xml","example":"<CreateDedicatedHostAccountReponse>\\r\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22E12AS</RequestId>\\r\\n</CreateDedicatedHostAccountReponse>","errorExample":""}]',
            'title' => '创建专用主机帐户',
            'description' => '每个主机只可以拥有一个主机账号,您必须删除之前的主机账号,才可创建新的主机账号,更多信息请参见,[创建主机账号](~~211413~~)。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2021-12-14T03:11:37.000Z', 'description' => '错误码发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHostAccount'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'cddc:CreateDedicatedHostAccount',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'CreateDedicatedHostGroup' => [
            'summary' => '调用CreateDedicatedHostGroup接口创建专属集群。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76545',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'Engine',
                    'in' => 'query',
                    'schema' => ['description' => '数据库引擎类型,取值:'."\n"
                        ."\n"
                        .'- **MySQL**'."\n"
                        .'- **SQL Server**'."\n"
                        .'<props="china">'."\n"
                        .'-  **Redis**</props>'."\n"
                        ."\n\n"
                        .'</props>'."\n"
                        ."\n", 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'MySQL'],
                ],
                [
                    'name' => 'CpuAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => ' 专属集群的CPU超配比。'."\n"
                        ."\n"
                        .'> 取值范围:**100%**~**300%**,默认取值为**200%**,代表所有实例的CPU资源之和可以是实际CPU资源的2倍,充分利用资源。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '200'],
                ],
                [
                    'name' => 'MemAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群中每台主机的内存最大使用率。'."\n"
                        ."\n"
                        .'> 取值范围:**0%**~**100%**,默认取值为**100%**。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '100'],
                ],
                [
                    'name' => 'DiskAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的空间超配比。'."\n"
                        ."\n"
                        .'> 取值范围:**100%**~**300%**,默认取值为**200%**,代表所有实例的空间资源之和可以是实际空间资源的2倍,充分利用资源。该设置对于 SQLServer 无效。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '200'],
                ],
                [
                    'name' => 'AllocationPolicy',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群资源调度的分配策略。取值:'."\n"
                        .'- **Evenly**(默认):均衡分配,最大化追求更稳定的系统表现,优先从未分配资源或已分配资源较少的主机中分配资源。'."\n"
                        .'- **Intensively**:紧凑分配,最大化追求更充分的资源利用率,优先从创建时间较早且已分配资源较多的主机中分配资源。', 'type' => 'string', 'required' => false, 'example' => 'Evenly'],
                ],
                [
                    'name' => 'VPCId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群归属的专有网络ID,可在专有网络控制台左侧单击**专有网络**查看目标专有网络ID。'."\n", 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'vpc-t4n7v5m6icc0a4314****'],
                ],
                [
                    'name' => 'HostReplacePolicy',
                    'in' => 'query',
                    'schema' => ['description' => '主机故障时系统的处理策略。取值:'."\n"
                        ."\n"
                        .'- **Auto**(默认):自动替换主机。'."\n"
                        .'- **Manual**:手动替换主机。'."\n"
                        ."\n"
                        .'> 仅创建数据库引擎为**MySQL**的专属集群时,您可以根据实际需求选择主机故障处理策略。其余引擎均请使用**Auto**默认值。', 'type' => 'string', 'required' => false, 'example' => 'Auto'],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => '客户端生成该参数值,用于保证请求的幂等性,防止重复提交请求。该参数值只能包含ASCII字符,且不超过64个ASCII字符。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ETnLKlblzczshOTUbOCz*******'],
                ],
                [
                    'name' => 'OpenPermission',
                    'in' => 'query',
                    'schema' => ['description' => '是否开放专属集群内的主机的OS权限。取值:'."\n"
                        ."\n"
                        .'- **0**:关闭。'."\n"
                        .'- **1**:开放。'."\n"
                        ."\n"
                        .'> 仅创建数据库引擎为**MySQL、SQL Server**的专属集群时,您可以根据实际需求选择主机开放OS权限。其余引擎暂未提供主机开放OS权限功能,该参数取值默认为**关闭**。SQLServer 必须要指定开放权限(1)。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'DedicatedHostGroupDesc',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的名称。长度为1~64个字符,以大小字母或中文开头,可包含数字、下划线(_)或中划线(-)。', 'type' => 'string', 'required' => false, 'example' => 'mysqlcluster'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'C6592723-09E1-4248-A78E-12AB00D7A79D'],
                            'DedicatedHostGroupId' => ['description' => '创建的专属集群ID。', 'type' => 'string', 'example' => 'dhg-7a9********'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'You are not authorized to perform this action.', 'description' => '不允许操作'],
                ],
                [
                    ['errorCode' => 'ClustersTemplateNotFound', 'errorMessage' => 'Key account cluster is not supported for the region.', 'description' => '该地域尚未开通大客户主机组'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"C6592723-09E1-4248-A78E-12AB00D7A79D\\",\\n  \\"DedicatedHostGroupId\\": \\"dhg-7a9********\\"\\n}","errorExample":""},{"type":"xml","example":"<CreateDedicatedHostGroupReponse>\\n<RequestId>C6592723-09E1-4248-A78E-12AB00D7A79D</RequestId>\\n<DedicatedHostGroupId>dhg-7a9********</DedicatedHostGroupId>\\n</CreateDedicatedHostGroupReponse>","errorExample":""}]',
            'title' => '创建专属集群',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHostGroup'],
                ],
            ],
            'ramActions' => [],
        ],
        'CreateMyBase' => [
            'summary' => '创建MyBase专有版主机,如未提供集群信息会自动创建MyBase专有版集群。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '119494',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ap-southeast-1'],
                ],
                [
                    'name' => 'DedicatedHostGroupDescription',
                    'in' => 'query',
                    'allowEmptyValue' => true,
                    'schema' => ['title' => '集群名称,未传则为空', 'description' => '专属集群的名称。', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => 'testDedicatedGroupName'],
                ],
                [
                    'name' => 'Engine',
                    'in' => 'query',
                    'schema' => [
                        'title' => '引擎类型',
                        'description' => '数据库类型,取值:'."\n"
                            .'- **alisql**。'."\n"
                            .'- **tair**。',
                        'type' => 'string',
                        'required' => true,
                        'docRequired' => true,
                        'enumValueTitles' => ['tair' => 'tair', 'alisql' => 'alisql'],
                        'example' => 'alisql',
                    ],
                ],
                [
                    'name' => 'SecurityGroupId',
                    'in' => 'query',
                    'schema' => ['title' => '安全组ID', 'description' => '安全组ID,可以指定多个安全组,多个安全组以英文逗号(,)分隔,传入格式为sg-t4neld965n89ocvt****,sg-t4neld965n89ocvu****。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'sg-t4neld965n89ocvt****,sg-t4neld965n89ocvu****'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '可用区ID,您可以调用[DescribeRegions](~~214103~~)查看地域下的可用区ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ap-southeast-1a'],
                ],
                [
                    'name' => 'VSwitchId',
                    'in' => 'query',
                    'schema' => ['description' => '虚拟交换机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'vsw-t4ni3mzqqw98vt317****'],
                ],
                [
                    'name' => 'ECSClassList',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'style' => 'json',
                    'schema' => [
                        'description' => 'ECS规格信息。',
                        'type' => 'array',
                        'items' => [
                            'type' => 'object',
                            'properties' => [
                                'sysDiskCapacity' => ['description' => '系统盘容量,单位为GB。', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'minimum' => '40', 'example' => '40'],
                                'instanceType' => ['description' => 'ECS规格。', 'type' => 'string', 'required' => true, 'example' => 'ecs.c6.large'],
                                'nodeCount' => ['description' => 'ECS购买数量。', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
                                'sysDiskType' => [
                                    'description' => '系统盘磁盘类型,取值:'."\n"
                                        ."\n"
                                        .'- **cloud_essd**。'."\n"
                                        ."\n"
                                        .'- **cloud_ssd**。'."\n"
                                        ."\n"
                                        .'- **cloud_efficiency**。'."\n"
                                        ."\n"
                                        .'- **cloud**。',
                                    'type' => 'string',
                                    'required' => true,
                                    'example' => 'cloud_essd',
                                    'enum' => ['cloud_essd', 'cloud_ssd', 'cloud_efficiency', 'cloud'],
                                ],
                                'diskType' => [
                                    'description' => '数据盘类型,取值:'."\n"
                                        .'- **cloud_essd**。'."\n"
                                        ."\n"
                                        .'- **cloud_ssd**。'."\n"
                                        ."\n"
                                        .'- **cloud_efficiency**。'."\n"
                                        ."\n"
                                        .'- **cloud**。',
                                    'type' => 'string',
                                    'required' => false,
                                    'example' => 'cloud_essd',
                                    'enum' => ['cloud_essd', 'cloud_ssd', 'cloud_efficiency', 'cloud'],
                                ],
                                'diskCapacity' => ['description' => '数据盘容量。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '50'],
                                'diskCount' => ['description' => '挂载数据盘个数。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                                'dataDiskPerformanceLevel' => [
                                    'description' => '数据盘PL等级。',
                                    'type' => 'string',
                                    'required' => false,
                                    'example' => 'PL1',
                                    'enum' => ['PL0', 'PL1', 'PL2', 'PL3'],
                                ],
                                'systemDiskPerformanceLevel' => [
                                    'description' => '系统盘PL等级。',
                                    'type' => 'string',
                                    'required' => false,
                                    'example' => 'PL1',
                                    'enum' => ['PL0', 'PL1', 'PL2', 'PL3'],
                                ],
                                'sysDiskAutoSnapshotPolicyId' => ['description' => '系统盘快照策略。', 'type' => 'string', 'required' => false, 'example' => 'sp-bp1i9wclcwpe52th****'],
                                'sysDiskEncrypted' => ['description' => '系统盘是否加密,系统盘只有为ESSD云盘时才可以设置。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                                'sysDiskKMSKeyId' => ['description' => '系统盘使用的KMS密钥ID,使用ECS默认加密服务时不用传值,系统盘只有为ESSD云盘时才可以设置。', 'type' => 'string', 'required' => false, 'example' => 'b3c210f3-3ffb-480e-9ca2-****'],
                                'dataDiskAutoSnapshotPolicyId' => ['description' => '数据盘快照策略。', 'type' => 'string', 'required' => false, 'example' => 'sp-bp1i9wclcwpe52th****'],
                                'dataDiskEncrypted' => ['description' => '数据盘是否加密。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                                'dataDiskKMSKeyId' => ['description' => '数据盘使用的KMS密钥ID,使用ECS默认加密服务时不用传值。', 'type' => 'string', 'required' => false, 'example' => 'b3c210f3-3ffb-480e-9ca2-****'],
                            ],
                            'required' => true,
                            'description' => '',
                        ],
                        'required' => true,
                        'docRequired' => true,
                        'example' => '[{"sysDiskCapacity":40,"instanceType":"ecs.d2s.10xlarge","nodeCount":1,"sysDiskType":"cloud_essd"}]',
                    ],
                ],
                [
                    'name' => 'PayType',
                    'in' => 'query',
                    'schema' => [
                        'description' => '付费类型,目前仅支持**PrePaid**。',
                        'type' => 'string',
                        'required' => true,
                        'docRequired' => true,
                        'example' => 'PrePaid',
                        'enum' => ['PrePaid'],
                    ],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => ['description' => '购买时长。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => '1', 'default' => '1'],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => '保证请求幂等性。从您的客户端生成一个参数值,确保不同请求间该参数值唯一。ClientToken只支持ASCII字符,且不能超过64个字符。', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => '4ed77dd1-ff52-407e-ac58-dc251822****'],
                ],
                [
                    'name' => 'AutoRenew',
                    'in' => 'query',
                    'schema' => ['description' => '是否开启自动续费,取值:'."\n"
                        ."\n"
                        .'- **true**:开启。'."\n"
                        ."\n"
                        .'- **false**(默认值):关闭。'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'example' => 'false', 'default' => 'false'],
                ],
                [
                    'name' => 'ImageId',
                    'in' => 'query',
                    'allowEmptyValue' => true,
                    'schema' => ['title' => '镜像ID', 'description' => '自定义镜像ID。'."\n"
                        ."\n"
                        .'> 若您需要使用默认镜像,无需填写。', 'type' => 'string', 'required' => false, 'example' => 'm-8vb11a30rc63x37c****'],
                ],
                [
                    'name' => 'OsPassword',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'schema' => ['description' => '主机登录密码,可以稍后设置。密码须符合如下要求:'."\n"
                        ."\n"
                        .'- 长度为8~30个字符。'."\n"
                        ."\n"
                        .'- 必须至少包含三项:大写字母、小写字母、数字和特殊字符。'."\n"
                        ."\n"
                        .'- 特殊符号`()\\`~!@#$%^&*-_+=|{}[]:;\'<>,.?/`'."\n"
                        ."\n"
                        .'> - 如果需要稍后设置主机登录密码,此参数填写空字符串即可。'."\n"
                        .'> - 如果需要设置主机登录密码,建议您使用HTTPS协议发送请求,避免密码泄露。', 'type' => 'string', 'required' => false, 'example' => 'Test123456'],
                ],
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '已有专有版专属集群ID。', 'type' => 'string', 'required' => false, 'example' => 'dhg-6dx5n9gjs96u****'],
                ],
                [
                    'name' => 'PeriodType',
                    'in' => 'query',
                    'schema' => [
                        'description' => '预付费类型,目前仅支持**Monthly**(包月)。',
                        'type' => 'string',
                        'required' => false,
                        'example' => 'Monthly',
                        'default' => 'Monthly',
                        'enum' => ['Monthly', 'Weekly'],
                    ],
                ],
                [
                    'name' => 'VpcId',
                    'in' => 'query',
                    'schema' => ['description' => '专有网络VPCID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'vpc-t4nbtmekgxotv0d3y****'],
                ],
                [
                    'name' => 'KeyPairName',
                    'in' => 'query',
                    'schema' => ['description' => '密钥对名称。', 'type' => 'string', 'required' => false, 'example' => 'test_key_pair'],
                ],
                [
                    'name' => 'PasswordInherit',
                    'in' => 'query',
                    'schema' => ['description' => '是否使用镜像的默认密码。'."\n"
                        ."\n"
                        .'- **false**(默认值):不使用'."\n"
                        ."\n"
                        .'- **true**:使用'."\n"
                        ."\n"
                        .'> 若使用镜像的默认密码,**OSPassword**参数无需填写。', 'type' => 'string', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'EcsHostName',
                    'in' => 'query',
                    'schema' => ['description' => 'Windows系统:长度为2~15个字符,允许使用大小写字母、数字。不能仅使用数字。'."\n"
                        .'其他操作系统(Linux等):长度为2~64个字符,允许使用点号(.)分隔字符成多段,每段允许使用大小写字母、数字,但不能连续使用点号(.)。不能以点号(.)开头或结尾。', 'type' => 'string', 'required' => false, 'example' => 'LocalHostname'],
                ],
                [
                    'name' => 'EcsInstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '实例名称。长度为2~128个字符,必须以大小写字母或中文开头,不能以http://和https://开头。可以包含中文、英文、数字、半角冒号(:)、下划线(_)、半角句号(.)或者短划线(-)。默认值为实例的InstanceId。', 'type' => 'string', 'required' => false, 'example' => 'k8snode1'],
                ],
                [
                    'name' => 'EcsDeploymentSetId',
                    'in' => 'query',
                    'schema' => ['description' => '云服务器部署集ID。', 'type' => 'string', 'required' => false, 'example' => 'ds-bp1brhwhoqinyjd6****'],
                ],
                [
                    'name' => 'EcsUniqueSuffix',
                    'in' => 'query',
                    'schema' => ['description' => '当创建多台实例时,是否为HostName和InstanceName自动添加有序后缀。有序后缀从001开始递增,最大不能超过999。取值说明:'."\n"
                        ."\n"
                        .'- **true**:添加。'."\n"
                        ."\n"
                        .'- **false**(默认值):不添加。'."\n"
                        ."\n"
                        .'当HostName或InstanceName按照指定排序格式设置,未设置命名后缀name_suffix,即命名格式为name_prefix[begin_number,bits]时,UniqueSuffix不生效,名称仅按照指定顺序排序。', 'type' => 'string', 'required' => false, 'example' => 'false', 'default' => 'false'],
                ],
                [
                    'name' => 'InternetChargeType',
                    'in' => 'query',
                    'schema' => [
                        'description' => '网络计费类型。取值范围:'."\n"
                            .'PayByBandwidth:按固定带宽计费。'."\n"
                            .'PayByTraffic:按使用流量计费。',
                        'type' => 'string',
                        'required' => false,
                        'enumValueTitles' => ['PayByTraffic' => 'PayByTraffic', 'PayByBandwidth' => 'PayByBandwidth'],
                        'example' => 'PayByBandwidth',
                        'default' => 'PayByBandwidth',
                    ],
                ],
                [
                    'name' => 'InternetMaxBandwidthOut',
                    'in' => 'query',
                    'schema' => ['description' => '公网出带宽最大值,单位为Mbit/s。取值范围:0~100。'."\n"
                        ."\n"
                        .'默认值:0。设定为大于0时会自动创建公网IP。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '0'],
                ],
                [
                    'name' => 'AutoPay',
                    'in' => 'query',
                    'schema' => ['description' => '创建主机时,是否自动支付。'."\n"
                        ."\n"
                        .'- **false**:只生成订单不扣费,需要在【我的订单】页面手动确认支付。'."\n"
                        ."\n"
                        .'- **true**(默认值):自动支付,请确保支付方式余额充足,否则会生成异常订单,只能作废订单。', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'default' => 'true'],
                ],
                [
                    'name' => 'ResourceGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '资源组ID。', 'type' => 'string', 'required' => false, 'example' => 'rg-bp67acfmxazb4p****'],
                ],
                [
                    'name' => 'UserDataInBase64',
                    'in' => 'query',
                    'schema' => ['description' => '自定义数据是否采用Base64格式编码。', 'type' => 'boolean', 'required' => false, 'example' => 'true', 'default' => 'false'],
                ],
                [
                    'name' => 'UserData',
                    'in' => 'query',
                    'schema' => ['description' => '用户自定义脚本数据,原始数据最多为16KB。', 'type' => 'string', 'required' => false, 'example' => 'ZWNobyBoZWxsbyBlY3Mh'],
                ],
                [
                    'name' => 'Tags',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => '主机标签信息。',
                        'type' => 'array',
                        'items' => [
                            'type' => 'object',
                            'properties' => [
                                'Key' => ['description' => '主机的标签键。一旦传入该值,则不允许为空字符串。最多支持128个字符,不能以aliyun和acs:开头,不能包含http://或 https://。', 'type' => 'string', 'required' => false, 'example' => 'TestKey'],
                                'Value' => ['description' => '主机的标签值。一旦传入该值,则不允许为空字符串。最多支持128个字符,不能以acs:开头,不能包含http://或 https://。', 'type' => 'string', 'required' => false, 'example' => 'TestValue'],
                            ],
                            'required' => false,
                            'description' => '',
                        ],
                        'required' => false,
                        'maxItems' => 18,
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => '937F6B32-A796-53A0-99C8-F7A9660E****'],
                            'OrderList' => [
                                'type' => 'object',
                                'itemNode' => true,
                                'properties' => [
                                    'OrderList' => [
                                        'description' => '订单列表。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'OrderId' => ['description' => '订单ID。', 'type' => 'string', 'example' => '21767077790****'],
                                                'CreateTimestamp' => ['description' => '主机创建成功的时间戳。', 'type' => 'integer', 'format' => 'int64', 'example' => '1661498032347'],
                                                'ECSInstanceIds' => ['description' => '已创建成功的ECS主机ID,多个主机ID以英文逗号(,)分隔。', 'type' => 'string', 'example' => '["i-t4n1tandot8j3axw****","i-t4n1tandot8j3axv****"]'],
                                                'DedicatedHostGroupName' => ['description' => '创建的专有版集群ID。', 'type' => 'string', 'example' => 'dhg-7a9********'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                ],
                                'description' => '',
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidParameter', 'errorMessage' => 'The parameter is invalid.', 'description' => ''],
                    ['errorCode' => 'COMMODITY.INVALID_COMPONENT', 'errorMessage' => 'Invalid component.', 'description' => ''],
                    ['errorCode' => 'InvalidAccountPassword.Format', 'errorMessage' => 'The account password format is invalid.', 'description' => '密码格式错误'],
                    ['errorCode' => 'InsufficientResourceCapacity', 'errorMessage' => 'No host is available for the requested instance.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"937F6B32-A796-53A0-99C8-F7A9660E****\\",\\n  \\"OrderList\\": {\\n    \\"OrderList\\": [\\n      {\\n        \\"OrderId\\": \\"21767077790****\\",\\n        \\"CreateTimestamp\\": 1661498032347,\\n        \\"ECSInstanceIds\\": \\"[\\\\\\"i-t4n1tandot8j3axw****\\\\\\",\\\\\\"i-t4n1tandot8j3axv****\\\\\\"]\\",\\n        \\"DedicatedHostGroupName\\": \\"dhg-7a9********\\"\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<CreateMyBaseResponse>\\n    <RequestId>937F6B32-A796-53A0-99C8-F7A9660E****</RequestId>\\n    <OrderList>\\n        <OrderId>21767077790****</OrderId>\\n        <CreateTimestamp>1661498032347</CreateTimestamp>\\n        <ECSInstanceIds>[\\"i-t4n1tandot8j3axv****\\"]</ECSInstanceIds>\\n        <DedicatedHostGroupName>dhg-7a9********</DedicatedHostGroupName>\\n    </OrderList>\\n</CreateMyBaseResponse>","errorExample":""}]',
            'title' => 'CreateMyBase',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateMyBase'],
                ],
            ],
            'ramActions' => [],
        ],
        'CreatePrinsBackupPlan' => [
            'summary' => '为纳管实例创建备份计划。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'paid',
                'abilityTreeCode' => '212746',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称', 'type' => 'string', 'required' => true, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'InstanceClass',
                    'in' => 'query',
                    'schema' => [
                        'description' => '备份计划的规格,取值:'."\n"
                            .'- **micro**'."\n"
                            .'- **small**'."\n"
                            .'- **medium**'."\n"
                            .'- **large**'."\n"
                            .'- **xlarge**',
                        'type' => 'string',
                        'required' => true,
                        'example' => 'micro',
                        'enum' => ['micro', 'small', 'medium', 'large', 'xlarge'],
                    ],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => [
                        'description' => '购买时长。',
                        'type' => 'string',
                        'required' => true,
                        'example' => 'Month',
                        'enum' => ['Month', 'Year'],
                    ],
                ],
                [
                    'name' => 'UsedTime',
                    'in' => 'query',
                    'schema' => ['description' => '指定购买时长,取值如下:'."\n"
                        .'- 当参数**Period**为**Year**时,**UsedTime**取值为1~5。'."\n"
                        .'- 当参数**Period**为**Month**时,**UsedTime**取值为1~11。', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'maximum' => '11', 'minimum' => '1', 'example' => '1'],
                ],
                [
                    'name' => 'EcsInstanceId',
                    'in' => 'query',
                    'schema' => ['description' => '指定备份的 ECS 实例 ID。', 'type' => 'string', 'required' => true, 'example' => 'i-bp1726beecvi8kak****'],
                ],
                [
                    'name' => 'BackupPeriod',
                    'in' => 'query',
                    'schema' => ['description' => '全量备份周期,取值:'."\n"
                        ."\n"
                        .'- Monday:周一'."\n"
                        .'- Tuesday:周二'."\n"
                        .'- Wednesday:周三'."\n"
                        .'- Thursday:周四'."\n"
                        .'- Friday:周五'."\n"
                        .'- Saturday:周六'."\n"
                        .'- Sunday:周日'."\n"
                        ."\n"
                        .'> '."\n"
                        .'> - 支持选择多个取值,用英文逗号(,)分开。', 'type' => 'string', 'required' => true, 'example' => 'Monday'],
                ],
                [
                    'name' => 'BackupStartTime',
                    'in' => 'query',
                    'schema' => ['description' => '备份开始时间,格式为HH:mm。', 'type' => 'string', 'required' => true, 'example' => '14:22'],
                ],
                [
                    'name' => 'BackupPlanName',
                    'in' => 'query',
                    'schema' => ['description' => '自定义备份计划名称。', 'type' => 'string', 'required' => false, 'example' => 'test****'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => 'Id of the request', 'type' => 'string', 'example' => '22A601D7-3E6E-559D-B845-F643142C611E'],
                            'BackupPlanId' => ['description' => '	'."\n"
                                .'备份计划ID。', 'type' => 'string', 'example' => 'dbsrhm5j8rm****'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"22A601D7-3E6E-559D-B845-F643142C611E\\",\\n  \\"BackupPlanId\\": \\"dbsrhm5j8rm****\\"\\n}","type":"json"}]',
            'title' => '创建备份计划',
            'description' => '请确保在使用该接口前,已充分了解 DBS 产品备份计划的收费方式和[价格](~~2858407~~)。',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DeleteDedicatedHostAccount' => [
            'summary' => '调用DeleteDedicatedHostAccount接口删除主机账号。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74477',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'AccountName',
                    'in' => 'query',
                    'schema' => ['description' => '主机账号名称。'."\n"
                        ."\n"
                        .'- 由小写字母、数字、下划线组成。'."\n"
                        ."\n"
                        .'- 以字母开头,以字母或数字结尾。'."\n"
                        ."\n"
                        .'- 包含2~16个字符。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E12AS'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'Specified hostinfo is not found.', 'description' => ''],
                    ['errorCode' => 'InvalidAccountName.NotFound', 'errorMessage' => 'Specified account name does not exist.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E12AS\\"\\n}","errorExample":""},{"type":"xml","example":"<DeleteDedicatedHostAccountResponse>\\r\\n    <RequestId>D6E068C3-25BC-455A-85FE-45F0B22E12AS</RequestId>\\r\\n</DeleteDedicatedHostAccountResponse>  ","errorExample":""}]',
            'title' => '删除专属主机账号',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DeleteDedicatedHostAccount'],
                ],
            ],
            'ramActions' => [],
        ],
        'DeleteDedicatedHostGroup' => [
            'summary' => '调用DeleteDedicatedHostGroup接口删除专属集群。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74478',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '目标专属集群ID。可通过云数据库专属集群控制台的集群列表信息页查看。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'dhg-h5i4p331f509****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '目标专属集群所在地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E1765'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'Host.Exist', 'errorMessage' => 'There are hosts in usercluster, can\'t delete it.', 'description' => ''],
                    ['errorCode' => 'Custins.Exist', 'errorMessage' => 'The cluster contains an instance and cannot be deleted.', 'description' => '集群中存在实例,不能删除'],
                ],
                404 => [
                    ['errorCode' => 'InvalidDedicatedHostGroup.NotFound', 'errorMessage' => 'Specified DedicatedHostGroup does not exists.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E1765\\"\\n}","type":"json"}]',
            'title' => '删除专属集群',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DeleteDedicatedHostGroup'],
                ],
            ],
            'ramActions' => [],
        ],
        'DescribeDedicatedHostAttribute' => [
            'summary' => '调用DescribeDedicatedHostAttribute接口查询专属集群某个主机的参数信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74487',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所属集群的ID。您可以登录云数据库专属集群控制台,在**集群列表**查看并获取专属集群ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'dhg-34639v1jt4y4****'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'HostType' => ['description' => '主机的存储类型,取值:'."\n"
                                ."\n\n"
                                .'- **dhg_cloud_ssd**、**dhg_cloud_essd**:ESSD云盘'."\n"
                                ."\n"
                                .'- **dhg_local_ssd**:本地SSD盘'."\n"
                                ."\n", 'type' => 'string', 'example' => 'dhg_cloud_ssd'],
                            'HostStorage' => ['description' => '主机的存储总量,单位为GB。', 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                            'InstanceNumberROSlave' => ['description' => '主机上只读实例的备节点数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'AccountType' => ['description' => '账号类型,取值:'."\n"
                                ."\n"
                                .'- **Normal**:普通权限账号'."\n"
                                .'- **Admin**:管理员账号', 'type' => 'string', 'example' => 'Admin'],
                            'MemoryUsed' => ['description' => '主机内存使用量,单位为GB。', 'type' => 'string', 'example' => '24576'],
                            'DedicatedHostGroupId' => ['description' => '主机所属集群的ID。', 'type' => 'string', 'example' => 'dhg-34639v1jt4y4****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => '00A001D6-2630-5CBD-A23C-80BC1BAFDC31'],
                            'InstanceNumberROMaster' => ['description' => '主机上只读实例的主节点数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'AllocationStatus' => ['description' => '主机是否可分配实例,取值:'."\n"
                                ."\n"
                                .'- **Allocatable**:允许分配实例'."\n"
                                .'- **Suspended**:停止分配实例', 'type' => 'string', 'example' => 'Suspended'],
                            'StorageUsed' => ['description' => '主机的存储使用量,单位为GB。', 'type' => 'string', 'example' => '588800'],
                            'EcsClassCode' => ['description' => 'ECS规格代码。', 'type' => 'string', 'example' => 'ecs.r5.16xlarge'],
                            'DedicatedHostId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-bp10a5id3boqi****'],
                            'MemAllocationRatio' => ['description' => '内存使用率,单位为百分比。', 'type' => 'string', 'example' => '90'],
                            'CreatedTime' => ['description' => '主机创建成功的时间,格式为**yyyy-MM-ddTHH:mm:ssZ(UTC时间)**。', 'type' => 'string', 'example' => '2021-11-13T07:14:22Z'],
                            'IPAddress' => ['description' => '主机的IP地址。', 'type' => 'string', 'example' => '192.168.XX.XX'],
                            'AutoRenew' => ['description' => '是否开启自动续费功能,取值:'."\n"
                                .'* **true**:开启'."\n"
                                .'* **false**(默认值):不开启'."\n", 'type' => 'string', 'example' => 'false'],
                            'HostStatus' => ['description' => '主机状态,取值:'."\n"
                                ."\n"
                                .'- **0**:创建中'."\n"
                                .'- **1**:运行中'."\n"
                                .'- **2**:故障中'."\n"
                                .'- **3**:准备下线'."\n"
                                .'- **4**:维护中'."\n"
                                .'- **5**:已下线'."\n"
                                .'- **6**:重启中'."\n"
                                .'- **7**:锁定中'."\n"
                                ."\n"
                                .'> 当主机出现故障时,主机要下线,主机下线之前会将该故障主机上的实例进行迁移,从而保证数据的完整性。', 'type' => 'string', 'example' => '1'],
                            'HostName' => ['description' => '主机的名称。', 'type' => 'string', 'example' => 'ch-8vbj9x74z874o****'],
                            'HostCPU' => ['description' => '主机的CPU,单位为核。', 'type' => 'integer', 'format' => 'int32', 'example' => '16'],
                            'OpenPermission' => ['description' => '是否开放专属集群内的主机的OS权限,取值:'."\n"
                                ."\n"
                                .'- **0**:不可开放状态'."\n"
                                .'- **1**:开放状态', 'type' => 'string', 'example' => '1'],
                            'InstanceNumber' => ['description' => '主机上部署实例的个数。', 'type' => 'integer', 'format' => 'int32', 'example' => '3'],
                            'CpuUsed' => ['description' => '主机CPU使用量。', 'type' => 'string', 'example' => '36'],
                            'VPCId' => ['description' => '专有网络的ID。', 'type' => 'string', 'example' => 'vpc-wz9vu1jb32wn3sdd6****'],
                            'HostClass' => ['description' => '主机的规格。', 'type' => 'string', 'example' => 'mssql.host.c2xlarge'],
                            'RegionId' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'example' => 'cn-hangzhou'],
                            'InstanceNumberMaster' => ['description' => '主机上的主节点数。', 'type' => 'integer', 'format' => 'int32', 'example' => '4'],
                            'VSwitchId' => ['description' => 'VSwitch ID。', 'type' => 'string', 'example' => 'vsw-bp1kaugqyrzb58oc1****'],
                            'InstanceNumberSlave' => ['description' => '主机上的备节点数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'ExpiredTime' => ['description' => '主机到期时间,格式为**yyyy-MM-ddTHH:mm:ssZ(UTC时间)**。', 'type' => 'string', 'example' => '2022-03-16T16:00:00Z'],
                            'ZoneId' => ['description' => '可用区ID。', 'type' => 'string', 'example' => 'cn-hangzhou-h'],
                            'CPUAllocationRatio' => ['description' => '专属集群的cpu超配比,单位为百分比,精确到10%。', 'type' => 'string', 'example' => '200'],
                            'ImageCategory' => ['description' => '主机镜像。引擎类型为**SQL Server**时返回,取值:'."\n"
                                ."\n"
                                .'- **WindowsWithMssqlEntAlwaysonLicense**:SQL Server集群版'."\n"
                                ."\n"
                                .'- **WindowsWithMssqlStdLicense**:SQL Server标准版'."\n"
                                ."\n"
                                .'- **WindowsWithMssqlEntLicense**:SQL Server企业版'."\n"
                                ."\n"
                                .'- **WindowsWithMssqlWebLicense**:SQL Server Web版', 'type' => 'string', 'example' => 'WindowsWithMssqlStdLicense'],
                            'DiskAllocationRatio' => ['description' => '专属集群的空间超配比。'."\n"
                                ."\n", 'type' => 'string', 'example' => '200'],
                            'HostMem' => ['description' => '主机的内存,单位为MB。', 'type' => 'integer', 'format' => 'int32', 'example' => '2048'],
                            'AccountName' => ['description' => '主机账号名称。'."\n"
                                ."\n"
                                .'- 由小写字母、数字、下划线(_)组成。'."\n"
                                ."\n"
                                .'- 以字母开头,以字母或数字结尾。'."\n"
                                ."\n"
                                .'- 包含2~16个字符。', 'type' => 'string', 'example' => 'cdp_system'],
                            'DistributionTag' => ['description' => '主机分布的标签。', 'type' => 'string', 'example' => 'tag'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'Forbidden.RAM', 'errorMessage' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'description' => '操作被禁止'],
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'The user permission does not support the operation.', 'description' => '权限不支持当前操作'],
                ],
                [
                    ['errorCode' => 'InvalidDedicatedHostGroup.NotFound', 'errorMessage' => 'Specified DedicatedHostGroup does not exists.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"HostType\\": \\"dhg_cloud_ssd\\",\\n  \\"HostStorage\\": 100,\\n  \\"InstanceNumberROSlave\\": 1,\\n  \\"AccountType\\": \\"Admin\\",\\n  \\"MemoryUsed\\": \\"24576\\",\\n  \\"DedicatedHostGroupId\\": \\"dhg-34639v1jt4y4****\\",\\n  \\"RequestId\\": \\"00A001D6-2630-5CBD-A23C-80BC1BAFDC31\\",\\n  \\"InstanceNumberROMaster\\": 1,\\n  \\"AllocationStatus\\": \\"Suspended\\",\\n  \\"StorageUsed\\": \\"588800\\",\\n  \\"EcsClassCode\\": \\"ecs.r5.16xlarge\\",\\n  \\"DedicatedHostId\\": \\"ch-bp10a5id3boqi****\\",\\n  \\"MemAllocationRatio\\": \\"90\\",\\n  \\"CreatedTime\\": \\"2021-11-13T07:14:22Z\\",\\n  \\"IPAddress\\": \\"192.168.XX.XX\\",\\n  \\"AutoRenew\\": \\"false\\",\\n  \\"HostStatus\\": \\"1\\",\\n  \\"HostName\\": \\"ch-8vbj9x74z874o****\\",\\n  \\"HostCPU\\": 16,\\n  \\"OpenPermission\\": \\"1\\",\\n  \\"InstanceNumber\\": 3,\\n  \\"CpuUsed\\": \\"36\\",\\n  \\"VPCId\\": \\"vpc-wz9vu1jb32wn3sdd6****\\",\\n  \\"HostClass\\": \\"mssql.host.c2xlarge\\",\\n  \\"RegionId\\": \\"cn-hangzhou\\",\\n  \\"InstanceNumberMaster\\": 4,\\n  \\"VSwitchId\\": \\"vsw-bp1kaugqyrzb58oc1****\\",\\n  \\"InstanceNumberSlave\\": 1,\\n  \\"ExpiredTime\\": \\"2022-03-16T16:00:00Z\\",\\n  \\"ZoneId\\": \\"cn-hangzhou-h\\",\\n  \\"CPUAllocationRatio\\": \\"200\\",\\n  \\"ImageCategory\\": \\"WindowsWithMssqlStdLicense\\",\\n  \\"DiskAllocationRatio\\": \\"200\\",\\n  \\"HostMem\\": 2048,\\n  \\"AccountName\\": \\"cdp_system\\",\\n  \\"DistributionTag\\": \\"tag\\"\\n}","errorExample":""},{"type":"xml","example":"<DescribeDedicatedHostAttributeResponse>\\n    <HostType>dhg_cloud_ssd</HostType>\\n    <HostStorage>100</HostStorage>\\n    <InstanceNumberROSlave>1</InstanceNumberROSlave>\\n    <AccountType>Admin</AccountType>\\n    <MemoryUsed>24576</MemoryUsed>\\n    <DedicatedHostGroupId>dhg-34639v1jt4y4****</DedicatedHostGroupId>\\n    <RequestId>00A001D6-2630-5CBD-A23C-80BC1BAFDC31</RequestId>\\n    <InstanceNumberROMaster>1</InstanceNumberROMaster>\\n    <AllocationStatus>Suspended</AllocationStatus>\\n    <StorageUsed>588800</StorageUsed>\\n    <EcsClassCode>ecs.r5.16xlarge</EcsClassCode>\\n    <DedicatedHostId>ch-bp10a5id3boqi****</DedicatedHostId>\\n    <MemAllocationRatio>90</MemAllocationRatio>\\n    <CreatedTime>2021-11-13T07:14:22Z</CreatedTime>\\n    <IPAddress>192.168.XX.XX</IPAddress>\\n    <AutoRenew>false</AutoRenew>\\n    <HostStatus>1</HostStatus>\\n    <HostName>ch-8vbj9x74z874o****</HostName>\\n    <HostCPU>16</HostCPU>\\n    <OpenPermission>1</OpenPermission>\\n    <InstanceNumber>3</InstanceNumber>\\n    <CpuUsed>36</CpuUsed>\\n    <VPCId>vpc-wz9vu1jb32wn3sdd6****</VPCId>\\n    <HostClass>mssql.host.c2xlarge</HostClass>\\n    <RegionId>cn-hangzhou</RegionId>\\n    <InstanceNumberMaster>4</InstanceNumberMaster>\\n    <VSwitchId>vsw-bp1kaugqyrzb58oc1****</VSwitchId>\\n    <InstanceNumberSlave>1</InstanceNumberSlave>\\n    <ExpiredTime>2022-03-16T16:00:00Z</ExpiredTime>\\n    <ZoneId>cn-hangzhou-h</ZoneId>\\n    <CPUAllocationRatio>200</CPUAllocationRatio>\\n    <ImageCategory>WindowsWithMssqlStdLicense</ImageCategory>\\n    <DiskAllocationRatio>200</DiskAllocationRatio>\\n    <HostMem>2048</HostMem>\\n    <AccountName>cdp_system</AccountName>\\n    <DistributionTag>tag</DistributionTag>\\n</DescribeDedicatedHostAttributeResponse>","errorExample":""}]',
            'title' => '查询专属集群某个主机的参数信息',
            'changeSet' => [
                ['createdAt' => '2022-02-14T07:48:31.000Z', 'description' => '错误码发生变更、响应参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHostAttribute'],
                ],
            ],
            'ramActions' => [],
        ],
        'DescribeDedicatedHostDisks' => [
            'summary' => '调用DescribeDedicatedHostDisks接口查询主机上的磁盘信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76548',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp183v72jr033****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在的地域ID。您可以登录云数据库专属集群控制台,查看主机所在[地域信息](~~198326~~)。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'DedicatedHostId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-bp183v72jr033****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'C6C6CF41-F284-4F63-AB4D-44FACE3BASQW'],
                            'Disks' => [
                                'description' => '磁盘信息。',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'Type' => ['description' => '云盘或本地盘磁盘类型 ,取值:'."\n"
                                            ."\n"
                                            .'- **system**:系统盘'."\n"
                                            ."\n"
                                            .'- **data**: 数据盘'."\n", 'type' => 'string', 'example' => 'data'],
                                        'Status' => ['description' => '云盘状态,取值:'."\n"
                                            ."\n"
                                            .'- **In_use**'."\n"
                                            ."\n"
                                            .'- **Available**'."\n"
                                            ."\n"
                                            .'- **Attaching**'."\n"
                                            ."\n"
                                            .'- **Detaching**'."\n"
                                            ."\n"
                                            .'- **Creating**'."\n"
                                            ."\n"
                                            .'- **ReIniting**'."\n", 'type' => 'string', 'example' => 'In_use'],
                                        'PerformanceLevel' => ['description' => '磁盘性能。 '."\n"
                                            ."\n"
                                            .'> MyBase提供了**ESSD云盘**、**ESSD PL2云盘**、**ESSD PL3云盘**三个性能级别的云盘规格,PL级别越高,云盘性能越好。'."\n", 'type' => 'string', 'example' => 'PL1'],
                                        'DiskId' => ['description' => '云盘或本地盘ID。', 'type' => 'string', 'example' => 'd-bp1dffpog8r2eowd****'],
                                        'MaxThroughput' => ['description' => '磁盘最大吞吐量,单位为MB/S。', 'type' => 'integer', 'format' => 'int32', 'example' => '284'],
                                        'MaxIOPS' => ['description' => '磁盘最大IOPS,单位为万。', 'type' => 'integer', 'format' => 'int32', 'example' => '18250'],
                                        'HasDBInstance' => ['description' => '是否有实例运行在该磁盘上,取值:'."\n"
                                            .'- **true**:有运行的实例'."\n"
                                            .'- **false**:无运行的实例', 'type' => 'boolean', 'example' => 'true'],
                                        'Device' => ['description' => '云盘或本地盘挂载实例的设备名。', 'type' => 'string', 'example' => '/dev/xvdb'],
                                        'Size' => ['description' => '云盘或本地盘大小,单位为GB。', 'type' => 'integer', 'format' => 'int32', 'example' => '329'],
                                        'ZoneId' => ['description' => '云盘或本地盘所属的可用区ID。', 'type' => 'string', 'example' => 'cn-hangzhou-h'],
                                        'Category' => ['description' => '主机存储类型,取值:'."\n"
                                            .'- **cloud_ssd**:本地SSD盘'."\n"
                                            .'- **cloud_essd**:ESSD云盘'."\n"
                                            ."\n\n", 'type' => 'string', 'example' => 'cloud_essd'],
                                        'DBInstanceId' => ['description' => '该磁盘上运行的实例ID。'."\n"
                                            ."\n", 'type' => 'string', 'example' => 'rm-bp121zcqr5h8m****'],
                                    ],
                                    'description' => '',
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The user ID has no permission.', 'description' => '当前用户没有操作权限'],
                ],
                404 => [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'The specified host info is not found.', 'description' => '找不到指定的主机信息'],
                    ['errorCode' => 'InvalidDedicatedHostGroup.NotFound', 'errorMessage' => 'The specified DedicatedHostGroup does not exist.', 'description' => '集群不存在'],
                    ['errorCode' => 'InvalidParameter', 'errorMessage' => 'The parameter is invalid.', 'description' => '无效参数'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"DedicatedHostId\\": \\"ch-bp183v72jr033****\\",\\n  \\"RequestId\\": \\"C6C6CF41-F284-4F63-AB4D-44FACE3BASQW\\",\\n  \\"Disks\\": [\\n    {\\n      \\"Type\\": \\"data\\",\\n      \\"Status\\": \\"In_use\\",\\n      \\"PerformanceLevel\\": \\"PL1\\",\\n      \\"DiskId\\": \\"d-bp1dffpog8r2eowd****\\",\\n      \\"MaxThroughput\\": 284,\\n      \\"MaxIOPS\\": 18250,\\n      \\"HasDBInstance\\": true,\\n      \\"Device\\": \\"/dev/xvdb\\",\\n      \\"Size\\": 329,\\n      \\"ZoneId\\": \\"cn-hangzhou-h\\",\\n      \\"Category\\": \\"cloud_essd\\",\\n      \\"DBInstanceId\\": \\"rm-bp121zcqr5h8m****\\"\\n    }\\n  ]\\n}","errorExample":""},{"type":"xml","example":"<DescribeDedicatedHostDisksResponse>\\n<DedicatedHostId>ch-bp183v72jr033****</DedicatedHostId>\\n<RequestId>C6C6CF41-F284-4F63-AB4D-44FACE3BASQW</RequestId>\\n<Disks>\\n    <Status>In_use</Status>\\n    <HasDBInstance>true</HasDBInstance>\\n    <MaxThroughput/>\\n    <Type>data</Type>\\n    <Category>cloud</Category>\\n    <ZoneId>cn-hangzhou-h</ZoneId>\\n    <DBInstanceId>rm-bp121zcqr5h8m****</DBInstanceId>\\n    <Size>329</Size>\\n    <Device>/dev/xvdb</Device>\\n    <PerformanceLevel>PL1</PerformanceLevel>\\n    <MaxIOPS>18250</MaxIOPS>\\n    <DiskId>d-bp1dffpog8r2eowd****</DiskId>\\n</Disks>\\n</DescribeDedicatedHostDisksResponse>","errorExample":""}]',
            'title' => '查询主机上的磁盘信息',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribeDedicatedHostGroups' => [
            'summary' => '查询专有集群主机组信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74491',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群ID。您可通过云数据库专属集群控制台集群列表查看目标专属集群ID。'."\n"
                        ."\n"
                        .'   - 该参数为空时,默认返回该地域内所有主机信息。'."\n"
                        .'   - 若传入具体的专属集群ID,则返回该地域该集群内所有主机信息。'."\n"
                        ."\n\n"
                        .' ', 'type' => 'string', 'required' => false, 'example' => 'dhg-872yt76ann7e****'],
                ],
                [
                    'name' => 'ImageCategory',
                    'in' => 'query',
                    'schema' => ['description' => '主机镜像。取值:'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlEntAlwaysonLicense**:SQL'."\n"
                        ."\n"
                        .' Server集群版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlStdLicense**:SQL'."\n"
                        ."\n"
                        .' Server标准版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlEntLicense**:SQL'."\n"
                        ."\n"
                        .' Server企业版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlWebLicense**:SQL'."\n"
                        ."\n"
                        .' Server Web版'."\n"
                        ."\n"
                        .'- **AliLinux**:其他主机镜像。', 'type' => 'string', 'required' => false, 'example' => 'AliLinux'],
                ],
                [
                    'name' => 'Engine',
                    'in' => 'query',
                    'schema' => ['description' => '根据数据库引擎类型过滤主机列表。取值:'."\n"
                        ."\n"
                        .'<li>MySQL</li>'."\n"
                        .'<li>SQL Server</li>'."\n"
                        .'<li>PosgreSQL</li>'."\n"
                        .'<li props="china">Redis</li>', 'type' => 'string', 'required' => false, 'example' => 'MySQL'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E12SD'],
                            'DedicatedHostGroups' => [
                                'type' => 'object',
                                'itemNode' => true,
                                'properties' => [
                                    'DedicatedHostGroups' => [
                                        'description' => '主机详细信息。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'DiskAllocateRation' => ['description' => '磁盘分配率。', 'type' => 'number', 'format' => 'float', 'example' => '100'],
                                                'DeployType' => ['description' => '实例部署方式。'."\n", 'type' => 'string', 'example' => 'origin'],
                                                'CreateTime' => ['description' => '主机创建时间。', 'type' => 'string', 'example' => '2021-05-07T02:00Z'],
                                                'DedicatedHostCountGroupByHostType' => ['description' => '不同存储类型对应的主机数量。', 'type' => 'object', 'example' => '2'],
                                                'Text' => ['description' => '主机描述。', 'type' => 'string', 'example' => 'mysql-host'],
                                                'DedicatedHostGroupId' => ['description' => '主机所属专属集群ID。', 'type' => 'string', 'example' => ' dhg-34639v1jt4y4****'],
                                                'DiskUtility' => ['description' => '磁盘利用率。', 'type' => 'number', 'format' => 'float', 'example' => '0'],
                                                'MemUsedAmount' => ['description' => '内存使用量。', 'type' => 'number', 'format' => 'float', 'example' => '0'],
                                                'MemAllocatedAmount' => ['description' => '内存分配量。', 'type' => 'number', 'format' => 'float', 'example' => '0'],
                                                'CpuAllocationRatio' => ['description' => '主机CPU超配比。', 'type' => 'integer', 'format' => 'int32', 'example' => '200'],
                                                'MemAllocationRatio' => ['description' => '主机内存超配比。'."\n"
                                                    ."\n", 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                                                'MemAllocateRation' => ['description' => '分配的内存比例。', 'type' => 'number', 'format' => 'float', 'example' => '9.38'],
                                                'MemUtility' => ['description' => '内存利用率。', 'type' => 'number', 'format' => 'float', 'example' => '0'],
                                                'CpuAllocatedAmount' => ['description' => 'CPU申请量。', 'type' => 'number', 'format' => 'float', 'example' => '3'],
                                                'DedicatedHostGroupDesc' => ['description' => '主机所属专属集群名称。', 'type' => 'string', 'example' => ' dhg-34639v1jt4y4****'],
                                                'CpuAllocateRation' => ['description' => 'CPU申请比例', 'type' => 'number', 'format' => 'float', 'example' => '9.38'],
                                                'InstanceNumber' => ['description' => '主机上实例数量。', 'type' => 'integer', 'format' => 'int32', 'example' => '2'],
                                                'OpenPermission' => ['description' => '主机OS权限。取值:'."\n"
                                                    ."\n"
                                                    .'- **0、1**:关闭'."\n"
                                                    ."\n"
                                                    .'- **2、3**(默认值):开放'."\n"
                                                    ."\n"
                                                    .'> 创建数据库引擎为**MySQL**、**SQL Server**、**PostgreSQL**的专属集群时,您可以根据实际需求选择主机开放OS权限。'."\n", 'type' => 'string', 'example' => '1'],
                                                'VPCId' => ['description' => '主机所属专属集群专有网络ID。', 'type' => 'string', 'example' => 'vpc-bp1ov7as4yvz4kxei****'],
                                                'DiskAllocatedAmount' => ['description' => '磁盘分配容量。', 'type' => 'number', 'format' => 'float', 'example' => '1024'],
                                                'HostNumber' => ['description' => '主机数量。', 'type' => 'integer', 'format' => 'int32', 'example' => '2'],
                                                'DiskUsedAmount' => ['description' => '磁盘使用量。', 'type' => 'number', 'format' => 'float', 'example' => '1024'],
                                                'AllocationPolicy' => ['description' => '主机资源分配策略,取值:'."\n"
                                                    .'- **Evenly**:均衡分配,最大化追求更稳定的系统表现,优先从未分配资源或已分配资源较少的主机中分配资源。'."\n"
                                                    .'- **Intensively**:紧凑分配,最大化追求更充分的资源利用率,优先从创建时间较早且已分配资源较多的主机中分配资源。', 'type' => 'string', 'example' => 'Evenly'],
                                                'Engine' => ['description' => '主机数据库引擎类型。', 'type' => 'string', 'example' => 'MySQL'],
                                                'DiskAllocationRatio' => ['description' => '主机空间超配比。', 'type' => 'integer', 'format' => 'int32', 'example' => '200'],
                                                'BastionInstanceId' => ['description' => '主机的主实例D。若主机上无主实例,则返回空字符串。', 'type' => 'string', 'example' => 'rm-bp15rszyxs4t3****'],
                                                'HostReplacePolicy' => ['description' => '主机故障处理策略。取值:'."\n"
                                                    ."\n"
                                                    .'- Auto(默认):自动替换主机。'."\n"
                                                    ."\n"
                                                    .'- Manual:手动替换主机。', 'type' => 'string', 'example' => 'Auto'],
                                                'ZoneIDList' => [
                                                    'type' => 'object',
                                                    'itemNode' => true,
                                                    'properties' => [
                                                        'ZoneIDList' => [
                                                            'description' => '主机可用区列表。',
                                                            'type' => 'array',
                                                            'items' => ['description' => '主机可用区列表。', 'type' => 'string', 'example' => 'cn-hangzhou-f'],
                                                        ],
                                                    ],
                                                    'description' => '',
                                                ],
                                                'Category' => ['description' => '主机所属的专属集群系列。取值:'."\n"
                                                    ."\n"
                                                    .'- **Pro**:MyBase专有版集群'."\n"
                                                    ."\n"
                                                    .'- **Standard**:MyBase托管版集群', 'type' => 'string', 'example' => 'Pro'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                ],
                                'description' => '',
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'You are not authorized to perform this action.', 'description' => '不允许操作'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E12SD\\",\\n  \\"DedicatedHostGroups\\": {\\n    \\"DedicatedHostGroups\\": [\\n      {\\n        \\"DiskAllocateRation\\": 100,\\n        \\"DeployType\\": \\"origin\\",\\n        \\"CreateTime\\": \\"2021-05-07T02:00Z\\",\\n        \\"DedicatedHostCountGroupByHostType\\": 2,\\n        \\"Text\\": \\"mysql-host\\",\\n        \\"DedicatedHostGroupId\\": \\" dhg-34639v1jt4y4****\\",\\n        \\"DiskUtility\\": 0,\\n        \\"MemUsedAmount\\": 0,\\n        \\"MemAllocatedAmount\\": 0,\\n        \\"CpuAllocationRatio\\": 200,\\n        \\"MemAllocationRatio\\": 100,\\n        \\"MemAllocateRation\\": 9.38,\\n        \\"MemUtility\\": 0,\\n        \\"CpuAllocatedAmount\\": 3,\\n        \\"DedicatedHostGroupDesc\\": \\" dhg-34639v1jt4y4****\\",\\n        \\"CpuAllocateRation\\": 9.38,\\n        \\"InstanceNumber\\": 2,\\n        \\"OpenPermission\\": \\"1\\",\\n        \\"VPCId\\": \\"vpc-bp1ov7as4yvz4kxei****\\",\\n        \\"DiskAllocatedAmount\\": 1024,\\n        \\"HostNumber\\": 2,\\n        \\"DiskUsedAmount\\": 1024,\\n        \\"AllocationPolicy\\": \\"Evenly\\",\\n        \\"Engine\\": \\"MySQL\\",\\n        \\"DiskAllocationRatio\\": 200,\\n        \\"BastionInstanceId\\": \\"rm-bp15rszyxs4t3****\\",\\n        \\"HostReplacePolicy\\": \\"Auto\\",\\n        \\"ZoneIDList\\": {\\n          \\"ZoneIDList\\": [\\n            \\"cn-hangzhou-f\\"\\n          ]\\n        },\\n        \\"Category\\": \\"Pro\\"\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<DescribeDedicatedHostGroupsResponse>\\n    <RequestId>D6E068C3-25BC-455A-85FE-45F0B22E12SD</RequestId>\\n    <DedicatedHostGroups>\\n        <DiskAllocateRation>100</DiskAllocateRation>\\n        <DeployType>origin</DeployType>\\n        <CreateTime>2021-05-07T02:00Z</CreateTime>\\n        <Text>mysql-host</Text>\\n        <DedicatedHostGroupId> dhg-34639v1jt4y4****</DedicatedHostGroupId>\\n        <DiskUtility>0</DiskUtility>\\n        <MemUsedAmount>0</MemUsedAmount>\\n        <MemAllocatedAmount>0</MemAllocatedAmount>\\n        <CpuAllocationRatio>200</CpuAllocationRatio>\\n        <MemAllocationRatio>100</MemAllocationRatio>\\n        <MemAllocateRation>9.38</MemAllocateRation>\\n        <MemUtility>0</MemUtility>\\n        <CpuAllocatedAmount>3</CpuAllocatedAmount>\\n        <DedicatedHostGroupDesc> dhg-34639v1jt4y4****</DedicatedHostGroupDesc>\\n        <CpuAllocateRation>9.38</CpuAllocateRation>\\n        <InstanceNumber>2</InstanceNumber>\\n        <OpenPermission>1</OpenPermission>\\n        <VPCId>vpc-bp1ov7as4yvz4kxei****</VPCId>\\n        <DiskAllocatedAmount>1024</DiskAllocatedAmount>\\n        <HostNumber>2</HostNumber>\\n        <DiskUsedAmount>1024</DiskUsedAmount>\\n        <AllocationPolicy>Evenly</AllocationPolicy>\\n        <Engine>MySQL</Engine>\\n        <DiskAllocationRatio>200</DiskAllocationRatio>\\n        <BastionInstanceId>rm-bp15rszyxs4t3****</BastionInstanceId>\\n        <HostReplacePolicy>Auto</HostReplacePolicy>\\n        <ZoneIDList>cn-hangzhou-f</ZoneIDList>\\n        <Category>Pro</Category>\\n    </DedicatedHostGroups>\\n</DescribeDedicatedHostGroupsResponse>","errorExample":""}]',
            'title' => '查询专属集群主机组信息',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-02-28T14:37:08.000Z', 'description' => '响应参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHostGroups'],
                ],
            ],
            'ramActions' => [],
        ],
        'DescribeDedicatedHosts' => [
            'summary' => '可以来查询专属集群的主机信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74497',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群ID。您可以登录云数据库专属集群控制台,在**专属集群**列表查看并获取专属集群ID。'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'dhg-h5i4p331f509****'],
                ],
                [
                    'name' => 'OrderId',
                    'in' => 'query',
                    'schema' => ['description' => '订单号。'."\n"
                        ."\n"
                        .'<props="china">您可以前往[费用与成本](https://billing-cost.console.aliyun.com),在左侧导航栏中选择**费用**>**订购订单**>**我的订单**,在**我的订单**查看并获取订单号。</props>'."\n"
                        .'<props="intl">您可以前往[费用与成本](https://usercenter2-intl.aliyun.com),在左侧导航栏中单击**订单管理**,在**订单列表**查看并获取订单号。</props>', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '123456789'],
                ],
                [
                    'name' => 'HostType',
                    'in' => 'query',
                    'schema' => ['description' => '主机的存储类型,取值:'."\n"
                        .'- **dhg_local_ssd**:本地SSD盘。'."\n"
                        .'- **dhg_cloud_ssd**、**dhg_cloud_essd**:ESSD云盘。', 'type' => 'string', 'required' => false, 'example' => 'dhg_cloud_ssd'],
                ],
                [
                    'name' => 'HostStatus',
                    'in' => 'query',
                    'schema' => ['description' => '主机状态,取值:'."\n"
                        ."\n"
                        .'- **0**:创建中'."\n"
                        .'- **1**:运行中'."\n"
                        .'- **2**:故障中'."\n"
                        .'- **3**:准备下线'."\n"
                        .'- **4**:维护中'."\n"
                        .'- **5**:已下线'."\n"
                        .'- **6**:重启中'."\n"
                        .'- **7**:锁定中'."\n"
                        ."\n"
                        .'> 当主机出现故障时,主机会下线,下线过程中主机会迁移实例数据。', 'type' => 'string', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'AllocationStatus',
                    'in' => 'query',
                    'schema' => ['description' => '主机是否可分配实例,取值:'."\n"
                        .'- **Allocatable**:允许实例分配。'."\n"
                        .'- **Suspended**:停止实例分配。', 'type' => 'string', 'required' => false, 'example' => 'Allocatable'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '可用区ID。您可以调用[DescribeRegions](~~214103~~)接口获取可用区ID。', 'type' => 'string', 'required' => false, 'example' => 'ap-southeast-1a'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的主机ID,您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => false, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'PageNumbers',
                    'in' => 'query',
                    'schema' => ['description' => '展示总页码数。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '50'],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '20'],
                ],
                [
                    'name' => 'Tags',
                    'in' => 'query',
                    'schema' => ['description' => '查询绑定有该标签的主机,包括TagKey和TagValue。单次最多支持传入5组值,格式:{"key1":"value1","key2":"value2"...}。'."\n"
                        ."\n"
                        .'> 按照主机标签过滤主机信息时,不需要填写**DedicatedHostId**参数,否则会按照**DedicatedHostId**过滤主机信息。', 'type' => 'string', 'required' => false, 'example' => '{"key1":"value1"}'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'TotalRecords' => ['description' => '查询返回主机总数目。', 'type' => 'integer', 'format' => 'int32', 'example' => '40'],
                            'PageSize' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'example' => '20'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22EASER'],
                            'PageNumbers' => ['description' => '展示总页码数。', 'type' => 'integer', 'format' => 'int32', 'example' => '2'],
                            'DedicatedHostGroupId' => ['description' => '专属集群ID。', 'type' => 'string', 'example' => 'dhg-6w7q18iwt5jo****'],
                            'DedicatedHosts' => [
                                'type' => 'object',
                                'itemNode' => true,
                                'properties' => [
                                    'DedicatedHosts' => [
                                        'description' => '主机信息列表。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'HostType' => ['description' => '主机的存储类型。'."\n", 'type' => 'string', 'example' => 'dhg_cloud_ssd'],
                                                'HostStorage' => ['description' => '主机的存储总量,单位为GB。', 'type' => 'string', 'example' => '1234'],
                                                'MemoryUsed' => ['description' => '内存使用量,单位为GB。', 'type' => 'string', 'example' => '24576'],
                                                'DedicatedHostGroupId' => ['description' => '主机所属专属集群ID。', 'type' => 'string', 'example' => 'dhg-6w7q18iwt5jo****'],
                                                'AllocationStatus' => ['description' => '主机是否可分配实例,取值:'."\n"
                                                    .'- **Allocatable**:允许实例分配'."\n"
                                                    .'- **Suspended**:停止实例分配', 'type' => 'string', 'example' => 'Suspended'],
                                                'StorageUsed' => ['description' => '存储使用量,单位为GB。', 'type' => 'string', 'example' => '588800'],
                                                'EcsClassCode' => ['description' => 'ECS规格代码。更多信息,请参见[ECS实例规格](~~25378~~)。', 'type' => 'string', 'example' => 'ecs.r5.16xlarge'],
                                                'DedicatedHostId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-bp10a5id3boqi****'],
                                                'MemAllocationRatio' => ['description' => '内存使用率,单位为百分比。', 'type' => 'string', 'example' => '90'],
                                                'CreatedTime' => ['description' => '主机的创建时间,格式为**yyyy-MM-ddTHH:mm:ssZ(UTC时间)**。', 'type' => 'string', 'example' => '2020-10-16 16:30:19'],
                                                'IPAddress' => ['description' => '主机的IP地址。', 'type' => 'string', 'example' => '192.168.XX.XX'],
                                                'HostStatus' => ['description' => '主机状态,取值:'."\n"
                                                    ."\n"
                                                    .'- **0**:创建中'."\n"
                                                    .'- **1**:运行中'."\n"
                                                    .'- **2**:故障中'."\n"
                                                    .'- **3**:准备下线'."\n"
                                                    .'- **4**:维护中'."\n"
                                                    .'- **5**:已下线'."\n"
                                                    .'- **6**:重启中'."\n"
                                                    .'- **7**:锁定中'."\n"
                                                    ."\n"
                                                    .'> 当主机出现故障时,主机会下线,主机下线前主机会迁移实例数据到其他主机上。', 'type' => 'string', 'example' => '1'],
                                                'HostName' => ['description' => '主机名称。', 'type' => 'string', 'example' => 'ch-bp15xfnp706tl****'],
                                                'HostCPU' => ['description' => '主机CPU。', 'type' => 'string', 'example' => '16'],
                                                'CpuUsed' => ['description' => 'CPU使用量,单位为核。', 'type' => 'string', 'example' => '10'],
                                                'InstanceNumber' => ['description' => '主机上部署的实例数量。', 'type' => 'string', 'example' => '1'],
                                                'OpenPermission' => ['description' => '主机OS权限开放状态。取值:'."\n"
                                                    ."\n"
                                                    .'- **0**:关闭'."\n"
                                                    ."\n"
                                                    .'- **1**(默认值):开放', 'type' => 'string', 'example' => '1'],
                                                'DistributionSymbol' => ['description' => '主机分布标识。'."\n"
                                                    ."\n"
                                                    .'> 仅主机类型为**Tair**时返回此参数。', 'type' => 'string', 'example' => '0'],
                                                'VPCId' => ['description' => '主机所属专属集群的专有网络ID。', 'type' => 'string', 'example' => 'vpc-bp1roz55mrbj3ka1s****'],
                                                'HostClass' => ['description' => '主机规格。', 'type' => 'string', 'example' => 'rds.g6.4xlarge'],
                                                'EndTime' => ['description' => '主机的到期时间,格式为**yyyy-MM-ddTHH:mm:ssZ(UTC时间)**。', 'type' => 'string', 'example' => '2021-10-16 16:30:19'],
                                                'VSwitchId' => ['description' => '主机所在虚拟交换机ID。', 'type' => 'string', 'example' => 'vsw-bp133c8ifzxd3iv6q****'],
                                                'ZoneId' => ['description' => '主机所在可用区。', 'type' => 'string', 'example' => 'ap-southeast-1a'],
                                                'CPUAllocationRatio' => ['description' => 'CPU使用率.。', 'type' => 'string', 'example' => '10'],
                                                'ImageCategory' => ['description' => '主机镜像类型。', 'type' => 'string', 'example' => 'ALinux'],
                                                'Engine' => ['description' => '主机的数据库类型。', 'type' => 'string', 'example' => 'mysql'],
                                                'DiskAllocationRatio' => ['description' => '磁盘使用率,单位为百分比。', 'type' => 'string', 'example' => '10'],
                                                'HostMem' => ['description' => '主机内存,单位GB。', 'type' => 'string', 'example' => '65536'],
                                                'BastionInstanceId' => ['description' => '关联的堡垒机ID。', 'type' => 'string', 'example' => 'bastionhost-cn-i7m2fgw****'],
                                                'AccountName' => ['description' => '自定义主机账号的名称。'."\n"
                                                    .'* 由小写字母、数字、下划线(_)组成。'."\n"
                                                    .'* 以字母开头,以字母或数字结尾。'."\n"
                                                    .'* 最少含2个字符,最多含16个字符。', 'type' => 'string', 'example' => 'test'],
                                                'AccountType' => ['description' => '主机账号类型,取值:'."\n"
                                                    ."\n"
                                                    .'**Normal**:普通账号'."\n"
                                                    ."\n"
                                                    .'**Admin**:管理员账号', 'type' => 'string', 'example' => 'Normal'],
                                                'DistributionTag' => ['description' => '主机分布标签。', 'type' => 'string', 'example' => 't4n9uz07h3r1tmcejtxf:1'],
                                                'Category' => ['description' => '专属集群类型,取值:'."\n"
                                                    ."\n"
                                                    .'- **Pro**:MyBase专有版'."\n"
                                                    ."\n"
                                                    .'- **Standard**:MyBase托管版'."\n"
                                                    ."\n"
                                                    .'>  仅中国站返回此参数。'."\n", 'type' => 'string', 'example' => 'Standard'],
                                                'EcsId' => ['description' => 'ECS ID。'."\n"
                                                    ."\n"
                                                    .'>  仅中国站且专属集群类型为**MyBase专有版**时返回此参数。'."\n"
                                                    ."\n\n"
                                                    ."\n", 'type' => 'string', 'example' => 'i-2zec7l031p0jtru3pn7a'],
                                                'DiskInfo' => ['description' => 'ECS磁盘信息。'."\n"
                                                    ."\n"
                                                    .'>  仅中国站且专属集群类型为**MyBase专有版**时返回此参数。'."\n", 'type' => 'string', 'example' => '{\\"SystemDiskSize\\":20,\\"DataDiskCount\\":0,\\"DataDiskSize\\":0,\\"DataDiskCategory\\":[\\"\\"],\\"SystemDiskCategory\\":\\"cloud_essd\\"}'],
                                                'ChargeType' => ['description' => '付费类型。', 'type' => 'string', 'example' => 'PREPAY'],
                                                'MssqlSupportVersion' => ['description' => 'MyBase SQL Server主机支持的版本号。', 'type' => 'string', 'example' => '2012_std_ha,2012_std,2016_std_ha,2016_std,2017_std_ha,2017_std,2019_std_ha,2019_std'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                ],
                                'description' => '',
                            ],
                            'MaxAutoScaleHostStorage' => ['description' => '本地盘磁盘自动扩展的上限值,单位GB。', 'type' => 'integer', 'format' => 'int64', 'example' => '3661824'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'Tag.InvalidTagsParameter', 'errorMessage' => 'tags parameter is invalid', 'description' => ''],
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'Forbidden.RAM', 'errorMessage' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'description' => '操作被禁止'],
                ],
                [
                    ['errorCode' => 'InvalidDedicatedHostGroup.NotFound', 'errorMessage' => 'Specified DedicatedHostGroup does not exists.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"TotalRecords\\": 40,\\n  \\"PageSize\\": 20,\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22EASER\\",\\n  \\"PageNumbers\\": 2,\\n  \\"DedicatedHostGroupId\\": \\"dhg-6w7q18iwt5jo****\\",\\n  \\"DedicatedHosts\\": {\\n    \\"DedicatedHosts\\": [\\n      {\\n        \\"HostType\\": \\"dhg_cloud_ssd\\",\\n        \\"HostStorage\\": \\"1234\\",\\n        \\"MemoryUsed\\": \\"24576\\",\\n        \\"DedicatedHostGroupId\\": \\"dhg-6w7q18iwt5jo****\\",\\n        \\"AllocationStatus\\": \\"Suspended\\",\\n        \\"StorageUsed\\": \\"588800\\",\\n        \\"EcsClassCode\\": \\"ecs.r5.16xlarge\\",\\n        \\"DedicatedHostId\\": \\"ch-bp10a5id3boqi****\\",\\n        \\"MemAllocationRatio\\": \\"90\\",\\n        \\"CreatedTime\\": \\"2020-10-16 16:30:19\\",\\n        \\"IPAddress\\": \\"192.168.XX.XX\\",\\n        \\"HostStatus\\": \\"1\\",\\n        \\"HostName\\": \\"ch-bp15xfnp706tl****\\",\\n        \\"HostCPU\\": \\"16\\",\\n        \\"CpuUsed\\": \\"10\\",\\n        \\"InstanceNumber\\": \\"1\\",\\n        \\"OpenPermission\\": \\"1\\",\\n        \\"DistributionSymbol\\": \\"0\\",\\n        \\"VPCId\\": \\"vpc-bp1roz55mrbj3ka1s****\\",\\n        \\"HostClass\\": \\"rds.g6.4xlarge\\",\\n        \\"EndTime\\": \\"2021-10-16 16:30:19\\",\\n        \\"VSwitchId\\": \\"vsw-bp133c8ifzxd3iv6q****\\",\\n        \\"ZoneId\\": \\"ap-southeast-1a\\",\\n        \\"CPUAllocationRatio\\": \\"10\\",\\n        \\"ImageCategory\\": \\"ALinux\\",\\n        \\"Engine\\": \\"mysql\\",\\n        \\"DiskAllocationRatio\\": \\"10\\",\\n        \\"HostMem\\": \\"65536\\",\\n        \\"BastionInstanceId\\": \\"bastionhost-cn-i7m2fgw****\\",\\n        \\"AccountName\\": \\"test\\",\\n        \\"AccountType\\": \\"Normal\\",\\n        \\"DistributionTag\\": \\"t4n9uz07h3r1tmcejtxf:1\\",\\n        \\"Category\\": \\"Standard\\",\\n        \\"EcsId\\": \\"i-2zec7l031p0jtru3pn7a\\",\\n        \\"DiskInfo\\": \\"{\\\\\\\\\\\\\\"SystemDiskSize\\\\\\\\\\\\\\":20,\\\\\\\\\\\\\\"DataDiskCount\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"DataDiskSize\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"DataDiskCategory\\\\\\\\\\\\\\":[\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"],\\\\\\\\\\\\\\"SystemDiskCategory\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"cloud_essd\\\\\\\\\\\\\\"}\\",\\n        \\"ChargeType\\": \\"PREPAY\\",\\n        \\"MssqlSupportVersion\\": \\"2012_std_ha,2012_std,2016_std_ha,2016_std,2017_std_ha,2017_std,2019_std_ha,2019_std\\"\\n      }\\n    ]\\n  },\\n  \\"MaxAutoScaleHostStorage\\": 3661824\\n}","errorExample":""},{"type":"xml","example":"<DescribeDedicatedHostsResponse>\\n    <TotalRecords>40</TotalRecords>\\n    <PageSize>20</PageSize>\\n    <RequestId>D6E068C3-25BC-455A-85FE-45F0B22EASER</RequestId>\\n    <PageNumbers>2</PageNumbers>\\n    <DedicatedHostGroupId>dhg-6w7q18iwt5jo****</DedicatedHostGroupId>\\n    <DedicatedHosts>\\n        <HostType>dhg_cloud_ssd</HostType>\\n        <HostStorage>1234</HostStorage>\\n        <MemoryUsed>24576</MemoryUsed>\\n        <DedicatedHostGroupId>dhg-6w7q18iwt5jo****</DedicatedHostGroupId>\\n        <AllocationStatus>Suspended</AllocationStatus>\\n        <StorageUsed>588800</StorageUsed>\\n        <EcsClassCode>ecs.r5.16xlarge</EcsClassCode>\\n        <DedicatedHostId>ch-bp10a5id3boqi****</DedicatedHostId>\\n        <MemAllocationRatio>90</MemAllocationRatio>\\n        <CreatedTime>2020-10-16 16:30:19</CreatedTime>\\n        <IPAddress>192.168.XX.XX</IPAddress>\\n        <HostStatus>1</HostStatus>\\n        <HostName>ch-bp15xfnp706tl****</HostName>\\n        <HostCPU>16</HostCPU>\\n        <CpuUsed>10</CpuUsed>\\n        <InstanceNumber>1</InstanceNumber>\\n        <OpenPermission>1</OpenPermission>\\n        <DistributionSymbol>0</DistributionSymbol>\\n        <VPCId>vpc-bp1roz55mrbj3ka1s****</VPCId>\\n        <HostClass>rds.g6.4xlarge</HostClass>\\n        <EndTime>2021-10-16 16:30:19</EndTime>\\n        <VSwitchId>vsw-bp133c8ifzxd3iv6q****</VSwitchId>\\n        <ZoneId>ap-southeast-1a</ZoneId>\\n        <CPUAllocationRatio>10</CPUAllocationRatio>\\n        <ImageCategory>ALinux</ImageCategory>\\n        <Engine>mysql</Engine>\\n        <DiskAllocationRatio>10</DiskAllocationRatio>\\n        <HostMem>65536</HostMem>\\n        <BastionInstanceId>bastionhost-cn-i7m2fgw****</BastionInstanceId>\\n        <AccountName>test</AccountName>\\n        <AccountType>Normal</AccountType>\\n        <DistributionTag>t4n9uz07h3r1tmcejtxf:1</DistributionTag>\\n        <Category>Standard</Category>\\n        <EcsId>i-2zec7l031p0jtru3pn7a</EcsId>\\n        <DiskInfo>{\\\\\\"SystemDiskSize\\\\\\":20,\\\\\\"DataDiskCount\\\\\\":0,\\\\\\"DataDiskSize\\\\\\":0,\\\\\\"DataDiskCategory\\\\\\":[\\\\\\"\\\\\\"],\\\\\\"SystemDiskCategory\\\\\\":\\\\\\"cloud_essd\\\\\\"}</DiskInfo>\\n        <ChargeType>PREPAY</ChargeType>\\n    </DedicatedHosts>\\n    <MaxAutoScaleHostStorage>3661824</MaxAutoScaleHostStorage>\\n</DescribeDedicatedHostsResponse>","errorExample":""}]',
            'title' => '查询专属集群的主机信息',
            'description' => '添加主机后,您可以查看主机的详细信息,包括性能监控、CPU总数、内存总量、存储总量等。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '响应参数发生变更'],
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '响应参数发生变更'],
                ['createdAt' => '2022-02-28T14:37:07.000Z', 'description' => '响应参数发生变更'],
                ['createdAt' => '2022-01-20T13:06:39.000Z', 'description' => '响应参数发生变更'],
                ['createdAt' => '2021-12-16T13:57:45.000Z', 'description' => '响应参数发生变更'],
                ['createdAt' => '2021-11-02T13:29:35.000Z', 'description' => '错误码发生变更、请求参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHosts'],
                ],
            ],
            'ramActions' => [],
        ],
        'DescribeHostEcsLevelInfo' => [
            'summary' => '调用DescribeHostEcsLevelInfo查询主机规格详细信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74507',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DbType',
                    'in' => 'query',
                    'schema' => ['description' => '数据库引擎类型,取值:'."\n"
                        ."\n"
                        .'- **mysql**'."\n"
                        .'- **mssql**'."\n"
                        .'- **pgsql**'."\n"
                        .'- **redis**', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'mysql'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '地域下的可用区ID。', 'type' => 'string', 'required' => true, 'example' => 'ap-southeast-1a'],
                ],
                [
                    'name' => 'StorageType',
                    'in' => 'query',
                    'schema' => ['description' => '实例存储类型,取值:'."\n"
                        ."\n"
                        .'- **local_ssd**:SSD云盘'."\n"
                        .'- **cloud_essd**:ESSD PL1云盘'."\n"
                        .'- **cloud_essd2**:ESSD PL2云盘'."\n"
                        .'- **cloud_essd3**:ESSD PL3云盘', 'type' => 'string', 'required' => true, 'example' => 'local_ssd'],
                ],
                [
                    'name' => 'ImageCategory',
                    'in' => 'query',
                    'schema' => ['description' => '主机镜像。取值:'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlEntAlwaysonLicense**:SQL Server集群版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlStdLicense**:SQL Server标准版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlEntLicense**:SQL Server企业版'."\n"
                        ."\n"
                        .'- **WindowsWithMssqlWebLicense**:SQL Server Web版'."\n"
                        ."\n"
                        .'- **AliLinux**:其他主机镜像。', 'type' => 'string', 'required' => false, 'example' => 'AliLinux'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => '395858E2-2A82-4ED7-BB93-2DB60119EF4C'],
                            'HostEcsLevelInfos' => [
                                'description' => 'ECS主机信息列表。',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'CddcHostType' => ['description' => '主机类型 ,取值:'."\n"
                                            ."\n"
                                            .'- **general**: 通用型。'."\n"
                                            .'- **compute**: 计算型。'."\n"
                                            .'- **ram**: 内存型。'."\n"
                                            .'- **dragon**: 弹性裸金属服务器(神龙)。', 'type' => 'string', 'example' => 'ram'],
                                        'Items' => [
                                            'description' => '主机规格详情。',
                                            'type' => 'array',
                                            'items' => [
                                                'type' => 'object',
                                                'properties' => [
                                                    'NetBandWidth' => ['description' => '内网带宽,单位为Gbps。'."\n"
                                                        ."\n", 'type' => 'number', 'format' => 'float', 'example' => '10'],
                                                    'EcsClass' => ['description' => '规格族。', 'type' => 'string', 'example' => '通用型 g6'],
                                                    'RdsClassCode' => ['description' => 'RDS规格。'."\n"
                                                        ."\n", 'type' => 'string', 'example' => 'mssql.cluster.host.g2xlarge	'],
                                                    'Cpu' => ['description' => '主机CPU。', 'type' => 'integer', 'format' => 'int32', 'example' => '24'],
                                                    'CpuFrequency' => ['description' => '处理器频率,单位为GHz。', 'type' => 'string', 'example' => '2.5 GHz/3.2 GHz'],
                                                    'StorageIops' => ['description' => '存储IOPS ,单位为万。'."\n"
                                                        ."\n", 'type' => 'integer', 'format' => 'int32', 'example' => '5'],
                                                    'CloudStorageBandwidth' => ['description' => '云盘带宽,单位为Gbit/s。', 'type' => 'number', 'format' => 'float', 'example' => '4'],
                                                    'EcsClassCode' => ['description' => 'ECS规格。'."\n"
                                                        ."\n", 'type' => 'string', 'example' => 'ecs.g6.2xlarge	'],
                                                    'IsCloudDisk' => ['description' => '是否为云盘。'."\n"
                                                        ."\n", 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                                                    'Memory' => ['description' => '内存大小,单位为GB。'."\n"
                                                        ."\n", 'type' => 'integer', 'format' => 'int32', 'example' => '192'],
                                                    'NetPackage' => ['description' => '内网收发包,单位为万PPS。'."\n"
                                                        ."\n", 'type' => 'integer', 'format' => 'int32', 'example' => '150'],
                                                    'CpuVersion' => ['description' => '处理器型号。', 'type' => 'string', 'example' => 'Intel Xeon(Cascade Lake) Platinum 8269CY	'],
                                                    'LocalStorage' => ['description' => '本地存储。'."\n"
                                                        ."\n", 'type' => 'string', 'example' => '7'],
                                                    'Description' => ['description' => '主机的名称。', 'type' => 'string', 'example' => 'testxxx'],
                                                ],
                                                'description' => '',
                                            ],
                                        ],
                                    ],
                                    'description' => '',
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidAction', 'errorMessage' => 'The specified action is not valid.', 'description' => '指定的操作无效'],
                ],
                403 => [
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'You are not authorized to perform this action.', 'description' => '不允许操作'],
                    ['errorCode' => 'Forbidden.RAM', 'errorMessage' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'description' => '操作被禁止'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"395858E2-2A82-4ED7-BB93-2DB60119EF4C\\",\\n  \\"HostEcsLevelInfos\\": [\\n    {\\n      \\"CddcHostType\\": \\"ram\\",\\n      \\"Items\\": [\\n        {\\n          \\"NetBandWidth\\": 10,\\n          \\"EcsClass\\": \\"通用型 g6\\",\\n          \\"RdsClassCode\\": \\"mssql.cluster.host.g2xlarge\\\\t\\",\\n          \\"Cpu\\": 24,\\n          \\"CpuFrequency\\": \\"2.5 GHz/3.2 GHz\\",\\n          \\"StorageIops\\": 5,\\n          \\"CloudStorageBandwidth\\": 4,\\n          \\"EcsClassCode\\": \\"ecs.g6.2xlarge\\\\t\\",\\n          \\"IsCloudDisk\\": 1,\\n          \\"Memory\\": 192,\\n          \\"NetPackage\\": 150,\\n          \\"CpuVersion\\": \\"Intel Xeon(Cascade Lake) Platinum 8269CY\\\\t\\",\\n          \\"LocalStorage\\": \\"7\\",\\n          \\"Description\\": \\"testxxx\\"\\n        }\\n      ]\\n    }\\n  ]\\n}","errorExample":""},{"type":"xml","example":"<DescribeHostEcsLevelInfoReponse>\\n<RequestId>395858E2-2A82-4ED7-BB93-2DB60119EF4C</RequestId>\\n<HostEcsLevelInfos>\\n    <CddcHostType>ram</CddcHostType>\\n    <Items>\\n        <Description>testxxx</Description>\\n        <Memory>192</Memory>\\n        <Cpu>24</Cpu>\\n        <NetPackage>150</NetPackage>\\n        <CloudStorageBandwidth>4</CloudStorageBandwidth>\\n        <CpuVersion>Intel Xeon(Cascade Lake) Platinum 8269CY\\t</CpuVersion>\\n        <IsCloudDisk>1</IsCloudDisk>\\n        <NetBandWidth>10</NetBandWidth>\\n        <LocalStorage>7</LocalStorage>\\n        <StorageIops>5</StorageIops>\\n        <RdsClassCode>mssql.cluster.host.g2xlarge\\t</RdsClassCode>\\n        <EcsClassCode>ecs.g6.2xlarge\\t</EcsClassCode>\\n        <CpuFrequency>2.5 GHz/3.2 GHz</CpuFrequency>\\n        <EcsClass>通用型 g6\\t</EcsClass>\\n    </Items>\\n</HostEcsLevelInfos>\\n</DescribeHostEcsLevelInfoReponse>","errorExample":""}]',
            'title' => '查询主机规格详细信息',
            'description' => '添加主机后,您可以查看主机规格的详细信息,包括CPU、内存、处理器型号、主机类型、主机存储类型等。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribeHostWebShell' => [
            'summary' => '调用DescribeHostWebShell接口获取专属集群主机Webshell登录地址。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76551',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在可用区ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou-b'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'LoginUrl' => ['description' => 'Webshell登录地址。', 'type' => 'string', 'example' => 'https://ecs-workbench-disposable.aliyun.com/account/disposable/login/sst/mybase.c7dfa64e9f/m44kih****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ESTG2'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The user ID has no permission.', 'description' => '当前用户没有操作权限'],
                ],
                403 => [
                    ['errorCode' => 'InvalidInstance', 'errorMessage' => 'The instance does not support the operation.', 'description' => '该实例不支持该操作'],
                ],
                [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'The specified host info is not found.', 'description' => '找不到指定的主机信息'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"LoginUrl\\": \\"https://ecs-workbench-disposable.aliyun.com/account/disposable/login/sst/mybase.c7dfa64e9f/m44kih****\\",\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ESTG2\\"\\n}","errorExample":""},{"type":"xml","example":"<DescribeHostWebShellReponse>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22ESTG2</RequestId>\\n<LoginUrl>https://ecs-workbench-disposable.aliyun.com/account/disposable/login/sst/mybase.c7dfa64e9f/m44kih****</LoginUrl>\\n</DescribeHostWebShellReponse>","errorExample":""}]',
            'title' => '获取专属集群主机 Webshell 登录地址',
            'description' => '专属集群MySQL、PostgreSQL类型的数据库引擎支持通过Webshell访问主机。具体详情请参见[通过Webshell访问主机](~~205456~~)。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribePrinsBackupPlan' => [
            'summary' => '查询在 MyBase 实例纳管页创建的 DBS 备份计划详情,返回为空时说明纳管实例未创建备份计划。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212746',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称。', 'type' => 'string', 'required' => true, 'example' => 'pr-22a21ac289e****'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22****'],
                            'BackupPlan' => [
                                'description' => '备份计划详情列表。',
                                'type' => 'object',
                                'properties' => [
                                    'BackupPlanId' => ['description' => '备份计划ID。', 'type' => 'string', 'example' => 'dbsrhm5j8rm****'],
                                    'BackupPlanName' => ['description' => '备份计划名称。', 'type' => 'string', 'example' => 'test****'],
                                    'UserName' => ['description' => '备份使用的数据库账号名。', 'type' => 'string', 'example' => 'test_user'],
                                    'EcsInstanceId' => ['description' => 'ECS实例ID。', 'type' => 'string', 'example' => 'i-bp1726beecvi8kak****'],
                                    'BackupStartTime' => ['description' => '备份开始时间,格式为HH:mm。', 'type' => 'string', 'example' => '14:22'],
                                    'InstanceClass' => ['description' => '规格,返回值如下:'."\n"
                                        ."\n"
                                        .'- **micro**:入门型'."\n"
                                        .'- **small**:低配型'."\n"
                                        .'- **medium**:中配型'."\n"
                                        .'- **large**:高配型'."\n"
                                        .'- **xlarge**:高配型(无流量上限)', 'type' => 'string', 'example' => 'micro'],
                                    'BackupPeriod' => ['description' => '全量备份周期,取值:'."\n"
                                        .'- Monday:周一'."\n"
                                        .'- Tuesday:周二'."\n"
                                        .'- Wednesday:周三'."\n"
                                        .'- Thursday:周四'."\n"
                                        .'- Friday:周五'."\n"
                                        .'- Saturday:周六'."\n"
                                        .'- Sunday:周日'."\n"
                                        .'> '."\n"
                                        .'> - 支持选择多个取值,用英文逗号(,)分开。', 'type' => 'string', 'example' => 'Monday'],
                                    'BackupPlanStatus' => ['description' => '备份计划状态,返回值如下:'."\n"
                                        .'- **wait**:未配置'."\n"
                                        .'- **init**:未启动(预检查失败)'."\n"
                                        .'- **running**:运行中'."\n"
                                        .'- **stop**:失败'."\n"
                                        .'- **pause**:暂停'."\n"
                                        .'- **locked**:锁定中'."\n"
                                        .'- **check_pass**:预检查通过', 'type' => 'string', 'example' => 'running'],
                                    'DatabaseType' => ['description' => '数据库类型,取值如下:'."\n"
                                        ."\n"
                                        .'- **MYSQL**', 'type' => 'string', 'example' => 'MySQL'],
                                    'BackupPlanCreateTime' => ['description' => '备份计划创建时间戳。', 'type' => 'string', 'example' => '1582527713000'],
                                    'ResourceGroupId' => ['description' => '资源组ID。', 'type' => 'string', 'example' => 'rg-aek3ckqdbgg****'],
                                ],
                            ],
                            'OssHint' => ['description' => '用户是否已开通 OSS 服务。'."\n"
                                .'><notice>若返回为 false 则无法正常创建备份计划,需要先开通 OSS 服务。></notice>', 'type' => 'boolean', 'example' => 'true'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22****\\",\\n  \\"BackupPlan\\": {\\n    \\"BackupPlanId\\": \\"dbsrhm5j8rm****\\",\\n    \\"BackupPlanName\\": \\"test****\\",\\n    \\"UserName\\": \\"test_user\\",\\n    \\"EcsInstanceId\\": \\"i-bp1726beecvi8kak****\\",\\n    \\"BackupStartTime\\": \\"14:22\\",\\n    \\"InstanceClass\\": \\"micro\\",\\n    \\"BackupPeriod\\": \\"Monday\\",\\n    \\"BackupPlanStatus\\": \\"running\\",\\n    \\"DatabaseType\\": \\"MySQL\\",\\n    \\"BackupPlanCreateTime\\": \\"1582527713000\\",\\n    \\"ResourceGroupId\\": \\"rg-aek3ckqdbgg****\\"\\n  },\\n  \\"OssHint\\": true\\n}","type":"json"}]',
            'title' => '查询备份计划详情',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribePrinsEcsInstances' => [
            'summary' => '查询ECS实例信息列表。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212746',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
                'tenantRelevance' => 'publicInformation',
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'EcsInstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'ECS实例ID。', 'type' => 'string', 'required' => false, 'example' => 'i-bp1726beecvi8kak****'],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '20'],
                ],
                [
                    'name' => 'PageNumber',
                    'in' => 'query',
                    'schema' => ['description' => '实例列表的页码,起始值为1,默认值为1。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'VpcId',
                    'in' => 'query',
                    'schema' => ['description' => '实例所在的专有网络ID 。', 'type' => 'string', 'required' => false, 'example' => 'vpc-t4nbtmekgxotv0d3y****'],
                ],
                [
                    'name' => 'ZoneId',
                    'in' => 'query',
                    'schema' => ['description' => '可用区ID。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou-j'],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。'."\n"
                        ."\n"
                        .'使用NextToken方式查询时,每次最多返回的结果数。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'maximum' => '100', 'minimum' => '0', 'example' => '20'],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。'."\n"
                        ."\n"
                        .'本次调用返回的查询凭证值。', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a4883'],
                ],
                [
                    'name' => 'Keyword',
                    'in' => 'query',
                    'schema' => ['description' => '查询关键字,模糊匹配,支持主机 ID、主机名称、主机 IP。', 'type' => 'string', 'required' => false, 'example' => 'keyword'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E****'],
                            'PageSize' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'example' => '20'],
                            'PageNumber' => ['description' => '实例列表的页码,起始值为1,默认值为1。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'TotalCount' => ['description' => '总记录条数', 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                            'InstanceList' => [
                                'description' => 'ECS 实例列表。',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'InstanceId' => ['description' => 'ECS 实例 ID。', 'type' => 'string', 'example' => 'i-2zeaquy5es02nksh****'],
                                        'VpcId' => ['description' => '主机所在专有网络ID 。', 'type' => 'string', 'example' => 'vpc-uf6idhbqkbuw11kw3****'],
                                        'ZoneId' => ['description' => '地域下的可用区ID。', 'type' => 'string', 'example' => 'cn-hangzhou-j'],
                                        'InstanceName' => ['description' => 'ECS 实例名称。', 'type' => 'string', 'example' => 'launch-advisor-20250530'],
                                        'Stauts' => ['description' => '实例状态', 'type' => 'string', 'example' => 'Running'],
                                        'IpList' => [
                                            'description' => 'IP 信息列表。',
                                            'type' => 'array',
                                            'items' => [
                                                'description' => 'IP 信息。',
                                                'type' => 'object',
                                                'properties' => [
                                                    'Ip' => ['description' => '主机 IP。', 'type' => 'string', 'example' => '127.0.0.1'],
                                                    'Type' => ['description' => 'IP 地址类型,取值:'."\n"
                                                        ."\n"
                                                        .'- **Private**:内网 IP'."\n"
                                                        ."\n"
                                                        .'- **Public**: 外网 IP', 'type' => 'string', 'example' => 'Private'],
                                                ],
                                            ],
                                        ],
                                        'SecurityGroups' => [
                                            'description' => '安全组列表信息。',
                                            'type' => 'array',
                                            'items' => ['description' => '安全组 ID', 'type' => 'string', 'example' => 'sg-uf66unlpw292cgh6****'],
                                        ],
                                        'Description' => ['description' => 'ECS 主机描述。', 'type' => 'string', 'example' => 'test'],
                                        'Disks' => [
                                            'description' => '磁盘列表',
                                            'type' => 'array',
                                            'items' => [
                                                'description' => '磁盘数据',
                                                'type' => 'object',
                                                'properties' => [
                                                    'DiskId' => ['description' => '云盘或本地盘ID。', 'type' => 'string', 'example' => 'd-uf6aa8sjgtc4168f****'],
                                                    'Category' => ['description' => '磁盘类型。取值范围:'."\n"
                                                        .' - **cloud_efficiency**:高效云盘。'."\n"
                                                        .' - **cloud_ssd**:SSD云盘。'."\n"
                                                        .' - **cloud_essd**:ESSD云盘。'."\n"
                                                        .' - **cloud**:普通云盘。', 'type' => 'string', 'example' => 'cloud_essd'],
                                                    'Type' => ['description' => '云盘或本地盘磁盘类型 ,取值:'."\n"
                                                        ."\n"
                                                        .'- **system**:系统盘'."\n"
                                                        ."\n"
                                                        .'- **data**: 数据盘', 'type' => 'string', 'example' => 'system'],
                                                    'Device' => ['description' => '云盘或本地盘挂载实例的设备名。', 'type' => 'string', 'example' => '/dev/xvda'],
                                                    'Mount' => ['description' => '挂载目录。', 'type' => 'string', 'example' => '/data'],
                                                ],
                                            ],
                                        ],
                                    ],
                                    'description' => '',
                                ],
                            ],
                            'MaxResults' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。', 'type' => 'integer', 'format' => 'int32', 'example' => '50'],
                            'NextToken' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。', 'type' => 'string', 'example' => 'caeba0bbb2be03f84eb48b699f0a4883'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E****\\",\\n  \\"PageSize\\": 20,\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 100,\\n  \\"InstanceList\\": [\\n    {\\n      \\"InstanceId\\": \\"i-2zeaquy5es02nksh****\\",\\n      \\"VpcId\\": \\"vpc-uf6idhbqkbuw11kw3****\\",\\n      \\"ZoneId\\": \\"cn-hangzhou-j\\",\\n      \\"InstanceName\\": \\"launch-advisor-20250530\\",\\n      \\"Stauts\\": \\"Running\\",\\n      \\"IpList\\": [\\n        {\\n          \\"Ip\\": \\"127.0.0.1\\",\\n          \\"Type\\": \\"Private\\"\\n        }\\n      ],\\n      \\"SecurityGroups\\": [\\n        \\"sg-uf66unlpw292cgh6****\\"\\n      ],\\n      \\"Description\\": \\"test\\",\\n      \\"Disks\\": [\\n        {\\n          \\"DiskId\\": \\"d-uf6aa8sjgtc4168f****\\",\\n          \\"Category\\": \\"cloud_essd\\",\\n          \\"Type\\": \\"system\\",\\n          \\"Device\\": \\"/dev/xvda\\",\\n          \\"Mount\\": \\"/data\\"\\n        }\\n      ]\\n    }\\n  ],\\n  \\"MaxResults\\": 50,\\n  \\"NextToken\\": \\"caeba0bbb2be03f84eb48b699f0a4883\\"\\n}","type":"json"}]',
            'title' => '查询 ECS 实例列表',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribePrinsInstance' => [
            'summary' => '获取纳管实例详情。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212752',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例名称。', 'type' => 'string', 'required' => false, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'Discover',
                    'in' => 'query',
                    'schema' => ['description' => '是否查询关联的主从实例。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E****'],
                            'DbInstance' => [
                                'description' => '纳管实例详情。',
                                'type' => 'object',
                                'properties' => [
                                    'RegionId' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'example' => 'cn-hangzhou'],
                                    'InstanceName' => ['description' => '自建纳管实例的名称。', 'type' => 'string', 'example' => 'pr-22a21ac289e0****'],
                                    'EngineType' => ['description' => '引擎类型,取值:'."\n"
                                        .'- **MySQL** 。', 'type' => 'string', 'example' => 'MySQL'],
                                    'EngineVersion' => ['description' => '数据库版本。', 'type' => 'string', 'example' => '8.0.36'],
                                    'Status' => [
                                        'description' => '实例状态。',
                                        'type' => 'string',
                                        'enumValueTitles' => ['inacitve' => '异常', 'deleted' => '已删除', 'creating' => '创建中', 'active' => '运行中'],
                                        'example' => 'active',
                                    ],
                                    'InstanceClass' => ['description' => '实例规格。', 'type' => 'string', 'example' => '2C4G'],
                                    'InstanceStorageType' => ['description' => '实例存储类型。', 'type' => 'string', 'example' => 'cloud_essd'],
                                    'InstanceStorageCapacity' => ['description' => '存储容量。', 'type' => 'string', 'example' => '40'],
                                    'GmtCreated' => ['description' => '实例创建时间的时间戳。', 'type' => 'string', 'example' => '1729758903000'],
                                    'NetworkType' => ['description' => '实例网络类型。', 'type' => 'string', 'example' => 'vpc'],
                                    'VpcId' => ['description' => '实例所在的专有网络ID 。', 'type' => 'string', 'example' => 'vpc-uf6idhbqkbuw11kw3****'],
                                    'Description' => ['description' => '实例描述。', 'type' => 'string', 'example' => 'test'],
                                    'HostInstances' => [
                                        'description' => '实例包含的主机列表。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'GmtCreated' => ['description' => '主机创建时间的时间戳。', 'type' => 'string', 'example' => '1729758903000'],
                                                'InstanceId' => ['description' => 'ECS 实例 ID。', 'type' => 'string', 'example' => 'i-bp1gmm4pnacse343****'],
                                                'InstanceClass' => ['description' => 'ECS 规格信息。', 'type' => 'string', 'example' => 'ecs.c7.large'],
                                                'IpAddress' => [
                                                    'description' => 'ECS 的 IP地址。',
                                                    'type' => 'array',
                                                    'items' => [
                                                        'type' => 'object',
                                                        'properties' => [
                                                            'Ip' => ['description' => 'IP 信息。', 'type' => 'string', 'example' => '127.0.0.1'],
                                                            'Port' => ['description' => '实例端口号。', 'type' => 'string', 'example' => '3306'],
                                                            'Type' => ['description' => 'IP 地址类型,取值:'."\n"
                                                                ."\n"
                                                                .'- **Private**:内网 IP'."\n"
                                                                ."\n"
                                                                .'- **Public**: 外网 IP', 'type' => 'string', 'example' => 'Private'],
                                                        ],
                                                        'description' => '',
                                                    ],
                                                ],
                                                'InstanceName' => ['description' => 'ECS 实例名称。', 'type' => 'string', 'example' => 'launch-advisor-20250603'],
                                                'Status' => [
                                                    'description' => 'ECS 主机状态。',
                                                    'type' => 'string',
                                                    'enumValueTitles' => ['deleted' => '已删除', 'inactive' => '异常', 'active' => '运行中'],
                                                    'example' => 'active',
                                                ],
                                                'ZoneId' => ['description' => '可用区ID。', 'type' => 'string', 'example' => 'cn-hangzhou-j'],
                                                'InstanceRole' => ['description' => '主机角色。'."\n"
                                                    ."\n"
                                                    .'- master'."\n"
                                                    ."\n"
                                                    .'- slave', 'type' => 'string', 'example' => 'master'],
                                                'DiskInfo' => [
                                                    'description' => 'ECS磁盘信息。',
                                                    'type' => 'array',
                                                    'items' => [
                                                        'description' => 'ECS磁盘信息。',
                                                        'type' => 'object',
                                                        'properties' => [
                                                            'Id' => ['description' => '磁盘 ID。', 'type' => 'string', 'example' => 'd-bp1ddpo8lqswottd****'],
                                                            'Size' => ['description' => '磁盘大小,单位为GB。', 'type' => 'integer', 'format' => 'int64', 'example' => '50'],
                                                            'Category' => ['description' => '磁盘类型。取值范围:'."\n"
                                                                .' - **cloud_efficiency**:高效云盘。'."\n"
                                                                .' - **cloud_ssd**:SSD云盘。'."\n"
                                                                .' - **cloud_essd**:ESSD云盘。'."\n"
                                                                .' - **cloud**:普通云盘。', 'type' => 'string', 'example' => 'cloud_essd'],
                                                            'Type' => ['description' => '云盘或本地盘磁盘类型 ,取值:'."\n"
                                                                ."\n"
                                                                .'- **system**:系统盘'."\n"
                                                                ."\n"
                                                                .'- **data**: 数据盘'."\n", 'type' => 'string', 'example' => 'system'],
                                                            'Usage' => ['description' => '磁盘使用率。', 'type' => 'string', 'example' => '40'],
                                                            'Device' => ['description' => '云盘或本地盘挂载实例的设备名。', 'type' => 'string', 'example' => '/dev/xvda'],
                                                        ],
                                                    ],
                                                ],
                                                'Cpu' => ['description' => '主机 CPU 核数。', 'type' => 'string', 'example' => '2'],
                                                'Mem' => ['description' => '内存大小,单位GB。', 'type' => 'string', 'example' => '4'],
                                                'VpcId' => ['description' => '主机所在专有网络ID 。', 'type' => 'string', 'example' => ' vpc-bp1d5gyhoue53eu6h****'],
                                                'Port' => ['description' => '主机端口。', 'type' => 'string', 'example' => '3306'],
                                                'Description' => ['description' => '主机描述。', 'type' => 'string', 'example' => 'test'],
                                                'Ip' => ['description' => '纳管实例时选择的主机 IP。', 'type' => 'string', 'example' => '127.0.0.1'],
                                                'SecurityGroupId' => ['description' => '纳管实例时指定的安全组 ID。', 'type' => 'string', 'example' => 'sg-uf6bo3fxuuen4uxndp9j'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                    'Tag' => [
                                        'description' => '标签列表。',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => '标签信息。',
                                            'type' => 'object',
                                            'properties' => [
                                                'Key' => ['description' => '标签键。', 'type' => 'string', 'example' => 'key'],
                                                'Value' => ['description' => '标签值。', 'type' => 'string', 'example' => 'value'],
                                            ],
                                        ],
                                    ],
                                    'DmsId' => ['description' => '实例关联的 dms 实例 id', 'type' => 'string', 'example' => '2717906'],
                                    'DasId' => ['description' => '实例关联的 das 实例 id。', 'type' => 'string', 'example' => 'hdm_ef2263e117f23c4f3114417742b4****'],
                                    'Alias' => ['description' => '实例别名。', 'type' => 'string', 'example' => 'alias'],
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E****\\",\\n  \\"DbInstance\\": {\\n    \\"RegionId\\": \\"cn-hangzhou\\",\\n    \\"InstanceName\\": \\"pr-22a21ac289e0****\\",\\n    \\"EngineType\\": \\"MySQL\\",\\n    \\"EngineVersion\\": \\"8.0.36\\",\\n    \\"Status\\": \\"active\\",\\n    \\"InstanceClass\\": \\"2C4G\\",\\n    \\"InstanceStorageType\\": \\"cloud_essd\\",\\n    \\"InstanceStorageCapacity\\": \\"40\\",\\n    \\"GmtCreated\\": \\"1729758903000\\",\\n    \\"NetworkType\\": \\"vpc\\",\\n    \\"VpcId\\": \\"vpc-uf6idhbqkbuw11kw3****\\",\\n    \\"Description\\": \\"test\\",\\n    \\"HostInstances\\": [\\n      {\\n        \\"GmtCreated\\": \\"1729758903000\\",\\n        \\"InstanceId\\": \\"i-bp1gmm4pnacse343****\\",\\n        \\"InstanceClass\\": \\"ecs.c7.large\\",\\n        \\"IpAddress\\": [\\n          {\\n            \\"Ip\\": \\"127.0.0.1\\",\\n            \\"Port\\": \\"3306\\",\\n            \\"Type\\": \\"Private\\"\\n          }\\n        ],\\n        \\"InstanceName\\": \\"launch-advisor-20250603\\",\\n        \\"Status\\": \\"active\\",\\n        \\"ZoneId\\": \\"cn-hangzhou-j\\",\\n        \\"InstanceRole\\": \\"master\\",\\n        \\"DiskInfo\\": [\\n          {\\n            \\"Id\\": \\"d-bp1ddpo8lqswottd****\\",\\n            \\"Size\\": 50,\\n            \\"Category\\": \\"cloud_essd\\",\\n            \\"Type\\": \\"system\\",\\n            \\"Usage\\": \\"40\\",\\n            \\"Device\\": \\"/dev/xvda\\"\\n          }\\n        ],\\n        \\"Cpu\\": \\"2\\",\\n        \\"Mem\\": \\"4\\",\\n        \\"VpcId\\": \\" vpc-bp1d5gyhoue53eu6h****\\",\\n        \\"Port\\": \\"3306\\",\\n        \\"Description\\": \\"test\\",\\n        \\"Ip\\": \\"127.0.0.1\\",\\n        \\"SecurityGroupId\\": \\"sg-uf6bo3fxuuen4uxndp9j\\"\\n      }\\n    ],\\n    \\"Tag\\": [\\n      {\\n        \\"Key\\": \\"key\\",\\n        \\"Value\\": \\"value\\"\\n      }\\n    ],\\n    \\"DmsId\\": \\"2717906\\",\\n    \\"DasId\\": \\"hdm_ef2263e117f23c4f3114417742b4****\\",\\n    \\"Alias\\": \\"alias\\"\\n  }\\n}","type":"json"}]',
            'title' => '获取纳管实例详情',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'DescribeRegions' => [
            'summary' => '调用DescribeRegions接口查看地域ID。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74517',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ECB1F'],
                            'Regions' => [
                                'type' => 'object',
                                'itemNode' => true,
                                'properties' => [
                                    'RDSRegion' => [
                                        'description' => '地域详情信息列表。',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'ZoneId' => ['description' => '地域下的可用区ID。', 'type' => 'string', 'example' => 'ap-southeast-1a'],
                                                'RegionId' => ['description' => '地域ID。', 'type' => 'string', 'example' => 'ap-southeast-1'],
                                            ],
                                            'description' => '',
                                        ],
                                    ],
                                ],
                                'description' => '',
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ECB1F\\",\\n  \\"Regions\\": {\\n    \\"RDSRegion\\": [\\n      {\\n        \\"ZoneId\\": \\"ap-southeast-1a\\",\\n        \\"RegionId\\": \\"ap-southeast-1\\"\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<DescribeRegionsReponse>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22ECB1F</RequestId>\\n<Regions>\\n    <RDSRegion>\\n        <ZoneId>ap-southeast-1a</ZoneId>\\n        <RegionId>ap-southeast-1</RegionId>\\n    </RDSRegion>\\n</Regions>\\n</DescribeRegionsReponse>","errorExample":""}]',
            'title' => '查看可选的地域和可用区',
            'description' => '关于各个地域对应的ID,请参见[地域信息](~~198326~~)。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '400', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeRegions'],
                ],
            ],
            'ramActions' => [],
        ],
        'GetPrinsEventList' => [
            'summary' => '获取事件列表。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212752',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称。', 'type' => 'string', 'required' => false, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'StartTime',
                    'in' => 'query',
                    'schema' => ['description' => '查询起始时间的时间戳。', 'type' => 'string', 'required' => false, 'example' => '1732253446000'],
                ],
                [
                    'name' => 'EndTime',
                    'in' => 'query',
                    'schema' => ['description' => '查询结束时间的时间戳。'."\n"
                        ."\n"
                        .'> StartTime 和 EndTime 之间的间隔不超过 12 小时', 'type' => 'string', 'required' => false, 'example' => '1732255446000'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'C6592723-09E1-4248-A78E-12AB00D7****'],
                            'EventList' => [
                                'description' => '事件列表。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '事件信息。',
                                    'type' => 'object',
                                    'properties' => [
                                        'Name' => ['description' => '事件名称。', 'type' => 'string', 'example' => 'Instance:StateChange'],
                                        'Content' => ['description' => '事件描述。', 'type' => 'string', 'example' => 'Instance status change notification'],
                                        'Level' => ['description' => '事件级别。取值:'."\n"
                                            .'- Critical:严重。'."\n"
                                            .'- Warn:警告。'."\n"
                                            .'- Info:信息。', 'type' => 'string', 'example' => 'Info'],
                                        'Status' => ['description' => '事件状态。', 'type' => 'string', 'example' => 'Normal'],
                                        'Time' => ['description' => '事件发生的时间戳。', 'type' => 'string', 'example' => '1635993751000'],
                                    ],
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"C6592723-09E1-4248-A78E-12AB00D7****\\",\\n  \\"EventList\\": [\\n    {\\n      \\"Name\\": \\"Instance:StateChange\\",\\n      \\"Content\\": \\"Instance status change notification\\",\\n      \\"Level\\": \\"Info\\",\\n      \\"Status\\": \\"Normal\\",\\n      \\"Time\\": \\"1635993751000\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => '获取实例事件列表',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'cddc:GetPrinsEventList',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetPrinsMetricsList' => [
            'summary' => '获取纳管实例性能指标数据。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212752',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'ECS 实例 ID。', 'type' => 'string', 'required' => false, 'example' => 'i-8vbgsaqkgzk9m24n****'],
                ],
                [
                    'name' => 'StartTime',
                    'in' => 'query',
                    'schema' => ['description' => '查询开始时间的时间戳。', 'type' => 'string', 'required' => false, 'example' => '1732253446000'],
                ],
                [
                    'name' => 'EndTime',
                    'in' => 'query',
                    'schema' => ['description' => '查询事件结束的时间戳。'."\n"
                        ."\n"
                        .'> StartTime 和 EndTime 之间的间隔不超过 12 小时', 'type' => 'string', 'required' => false, 'example' => '1732255446000'],
                ],
                [
                    'name' => 'Metrics',
                    'in' => 'query',
                    'schema' => ['description' => '指标信息。'."\n"
                        .'具体类别:'."\n"
                        ."\n"
                        .'**DAS**'."\n"
                        .'- mysql.tps,mysql.qps'."\n"
                        .'- mysql.threads_running,mysql.threads_connected,mysql.threads_created,mysql.threads_cached,mysql.threads_rejected'."\n"
                        .'- mysql.delete_ps,mysql.insert_ps,mysql.replace_ps,mysql.update_ps,mysql.select_ps'."\n"
                        .'- mysql.bytes_received,mysql.bytes_sent'."\n"
                        .'- mysql.innodb_bp_hit,mysql.innodb_bp_dirty_pct,mysql.innodb_bp_usage_pct'."\n"
                        .'- mysql.innodb_data_read,mysql.innodb_data_written'."\n"
                        .'- mysql.innodb_rows_read,mysql.innodb_rows_updated,mysql.innodb_rows_deleted,mysql.innodb_rows_inserted'."\n"
                        ."\n"
                        .'**ECS**'."\n"
                        ."\n"
                        .'- cpu_total'."\n"
                        .'- memory_usedutilization'."\n"
                        .'- load_1m,load_5m,load_15m'."\n"
                        .'- DiskReadBPS,DiskWriteBPS'."\n"
                        .'- DiskReadIOPS,DiskWriteIOPS'."\n"
                        .'- diskusage_utilization,fs_inodeutilization'."\n"
                        .'- VPC_PublicIP_InternetInRate,VPC_PublicIP_InternetOutRate'."\n"
                        .'- IntranetInRate,IntranetOutRate'."\n"
                        .'- concurrentConnections', 'type' => 'string', 'required' => false, 'example' => 'cpu_total'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '实例所在的[地域ID](~~198326~~)。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E****'],
                            'Data' => [
                                'description' => '返回指标数据列表。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '返回指标数据结果。',
                                    'type' => 'object',
                                    'properties' => [
                                        'Kpi' => ['description' => '指标名称。', 'type' => 'string', 'example' => 'cpu_total'],
                                        'Value' => ['description' => '指标数值。', 'type' => 'string', 'example' => '50'],
                                        'Timestamp' => ['description' => '指标统计时间戳。', 'type' => 'string', 'example' => '1732253446000'],
                                        'Category' => ['description' => '指标的类型,取值:'."\n"
                                            ."\n"
                                            .'- DAS'."\n"
                                            ."\n"
                                            .'- ECS', 'type' => 'string', 'example' => 'ECS'],
                                    ],
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E****\\",\\n  \\"Data\\": [\\n    {\\n      \\"Kpi\\": \\"cpu_total\\",\\n      \\"Value\\": \\"50\\",\\n      \\"Timestamp\\": \\"1732253446000\\",\\n      \\"Category\\": \\"ECS\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => '获取实例性能指标',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'ListPrinsInstances' => [
            'summary' => '查询纳管实例列表。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '212746',
                'abilityTreeNodes' => ['FEATUREcddcGJUHY1'],
                'tenantRelevance' => 'publicInformation',
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称。', 'type' => 'string', 'required' => false, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '30'],
                ],
                [
                    'name' => 'PageNumber',
                    'in' => 'query',
                    'schema' => ['description' => '实例列表的页码,起始值为1,默认值为1。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                ],
                [
                    'name' => 'EngineType',
                    'in' => 'query',
                    'schema' => ['description' => '引擎类型,取值:'."\n"
                        .'- **MySQL** 。', 'type' => 'string', 'required' => false, 'example' => 'MySQL'],
                ],
                [
                    'name' => 'Tag',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'style' => 'json',
                    'schema' => [
                        'description' => '标签信息,筛选出包含对应标签键值的实例。',
                        'type' => 'array',
                        'items' => [
                            'description' => '标签。',
                            'type' => 'object',
                            'properties' => [
                                'Key' => ['description' => '标签的键。', 'type' => 'string', 'required' => false, 'example' => 'demokey'],
                                'Value' => ['description' => '标签的值。', 'type' => 'string', 'required' => false, 'example' => 'demovalue'],
                            ],
                            'required' => false,
                        ],
                        'required' => false,
                    ],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'maximum' => '100', 'minimum' => '0', 'example' => '20'],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a4883'],
                ],
                [
                    'name' => 'EngineVersion',
                    'in' => 'query',
                    'schema' => ['description' => '数据库版本。', 'type' => 'string', 'required' => false, 'example' => '8.0.36'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22****'],
                            'PageSize' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'example' => '30'],
                            'PageNumber' => ['description' => '页码', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'TotalCount' => ['description' => '总记录条数', 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                            'Instances' => [
                                'description' => '实例信息列表。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '实例信息。',
                                    'type' => 'object',
                                    'properties' => [
                                        'RegionId' => ['description' => '主机所属的地域 ID。', 'type' => 'string', 'example' => 'cn-hangzhou'],
                                        'Status' => [
                                            'description' => '实例状态描述。',
                                            'type' => 'string',
                                            'enumValueTitles' => ['inactive' => '异常', 'deleted' => '已删除', 'creating' => '创建中', 'active' => '运行中'],
                                            'example' => 'active',
                                        ],
                                        'InstanceName' => ['description' => '自建纳管实例名称。', 'type' => 'string', 'example' => 'pr-22a21ac289e0****'],
                                        'Alias' => ['description' => '实例别名。', 'type' => 'string', 'example' => 'test'],
                                        'EngineType' => ['description' => '引擎类型,取值:'."\n"
                                            .'- **MySQL** 。', 'type' => 'string', 'example' => 'MySQL'],
                                        'EngineVersion' => ['description' => '数据库版本。', 'type' => 'string', 'example' => '8.0.36'],
                                        'GmtCreated' => ['description' => '实例创建时间的时间戳。', 'type' => 'string', 'example' => '1729758903000'],
                                        'Description' => ['description' => '实例描述。', 'type' => 'string', 'example' => 'test'],
                                        'Tag' => [
                                            'description' => '标签列表。',
                                            'type' => 'array',
                                            'items' => [
                                                'description' => '标签信息。',
                                                'type' => 'object',
                                                'properties' => [
                                                    'Key' => ['description' => '标签的键。', 'type' => 'string', 'example' => 'key'],
                                                    'Value' => ['description' => '标签的值。', 'type' => 'string', 'example' => 'value'],
                                                ],
                                            ],
                                        ],
                                        'DmsId' => ['description' => '实例关联的 dms 实例 id。', 'type' => 'string', 'example' => '2717906'],
                                        'DasId' => ['description' => '实例关联的 das 实例 id。', 'type' => 'string', 'example' => 'hdm_ef2263e117f23c4f3114417742b****'],
                                        'Vip' => ['description' => '实例的 ip。', 'type' => 'boolean', 'example' => '127.0.0.1'],
                                    ],
                                ],
                            ],
                            'MaxResults' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。'."\n"
                                ."\n"
                                .'使用NextToken方式查询时,每次最多返回的结果数。', 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                            'NextToken' => ['description' => '> 该参数暂未上线,当前使用 PageNumber 与 PageSize 完成分页查询操作。'."\n"
                                ."\n"
                                .'本次调用返回的查询凭证值。', 'type' => 'string', 'example' => '4b1e854bca4f2fb7e0b5e8707e68181f'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22****\\",\\n  \\"PageSize\\": 30,\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 100,\\n  \\"Instances\\": [\\n    {\\n      \\"RegionId\\": \\"cn-hangzhou\\",\\n      \\"Status\\": \\"active\\",\\n      \\"InstanceName\\": \\"pr-22a21ac289e0****\\",\\n      \\"Alias\\": \\"test\\",\\n      \\"EngineType\\": \\"MySQL\\",\\n      \\"EngineVersion\\": \\"8.0.36\\",\\n      \\"GmtCreated\\": \\"1729758903000\\",\\n      \\"Description\\": \\"test\\",\\n      \\"Tag\\": [\\n        {\\n          \\"Key\\": \\"key\\",\\n          \\"Value\\": \\"value\\"\\n        }\\n      ],\\n      \\"DmsId\\": \\"2717906\\",\\n      \\"DasId\\": \\"hdm_ef2263e117f23c4f3114417742b****\\",\\n      \\"Vip\\": true\\n    }\\n  ],\\n  \\"MaxResults\\": 100,\\n  \\"NextToken\\": \\"4b1e854bca4f2fb7e0b5e8707e68181f\\"\\n}","type":"json"}]',
            'title' => '查询纳管实例列表',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'ListPrinsParams' => [
            'summary' => '查询数据库纳管实例参数列表。',
            'methods' => ['post', 'get'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '227820',
                'abilityTreeNodes' => ['FEATUREcddc7QNOWM'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称', 'type' => 'string', 'required' => true, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可调用[DescribeRegions](~~214103~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'ConfigName',
                    'in' => 'query',
                    'schema' => ['description' => '参数配置名称,模糊匹配规则。', 'type' => 'string', 'required' => false, 'example' => 'innodb'],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '30'],
                ],
                [
                    'name' => 'PageNumber',
                    'in' => 'query',
                    'schema' => ['description' => '分页页码,从1开始。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'C860658E-68A6-46C1-AF6E-3AE7C4D3****'],
                            'ConfigList' => [
                                'description' => '参数信息列表。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '参数信息。',
                                    'type' => 'object',
                                    'properties' => [
                                        'ConfigName' => ['description' => '参数名称。', 'type' => 'string', 'example' => 'innodb_buffer_pool_size'],
                                        'DefaultValue' => ['description' => '参数默认值。', 'type' => 'string', 'example' => '128134217728'],
                                        'CurValue' => ['description' => '参数当前值。', 'type' => 'string', 'example' => '134217728'],
                                        'Comment' => ['description' => '参数的具体英文含义。', 'type' => 'string', 'example' => 'InnoDB buffer pool size。'],
                                        'Translation' => ['description' => '参数的中文含义。', 'type' => 'string', 'example' => 'InnoDB 缓冲池的大小。'],
                                    ],
                                ],
                            ],
                            'PageSize' => ['description' => '每页展示数目。', 'type' => 'integer', 'format' => 'int32', 'example' => '30'],
                            'PageNumber' => ['description' => '分页页码,从1开始。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'TotalCount' => ['description' => '总记录条数。', 'type' => 'integer', 'format' => 'int32', 'example' => '100'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"C860658E-68A6-46C1-AF6E-3AE7C4D3****\\",\\n  \\"ConfigList\\": [\\n    {\\n      \\"ConfigName\\": \\"innodb_buffer_pool_size\\",\\n      \\"DefaultValue\\": \\"128134217728\\",\\n      \\"CurValue\\": \\"134217728\\",\\n      \\"Comment\\": \\"InnoDB buffer pool size。\\",\\n      \\"Translation\\": \\"InnoDB 缓冲池的大小。\\"\\n    }\\n  ],\\n  \\"PageSize\\": 30,\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 100\\n}","type":"json"}]',
            'title' => '查询数据库参数列表',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'ListPrinsSQLErrorLog' => [
            'summary' => '查询数据库错误日志。',
            'methods' => ['get', 'post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '227820',
                'abilityTreeNodes' => ['FEATUREcddc7QNOWM'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => '自建纳管实例的名称', 'type' => 'string', 'required' => true, 'example' => 'pr-22a21ac289e0****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'Keyword',
                    'in' => 'query',
                    'schema' => ['description' => '日志查询关键字。', 'type' => 'string', 'required' => false, 'example' => 'keyword'],
                ],
                [
                    'name' => 'StartLinenum',
                    'in' => 'query',
                    'schema' => ['description' => '指定内容获取的开始行号,为0时表示获取最新的日志内容,默认值0。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '0'],
                ],
                [
                    'name' => 'Size',
                    'in' => 'query',
                    'schema' => ['description' => '查询的日志条数,默认30。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '30'],
                ],
                [
                    'name' => 'Reverse',
                    'in' => 'query',
                    'schema' => ['description' => '是否正序查询,默认为false。'."\n"
                        ."\n"
                        .'- true: 表示从 StartLinenum 开始向上获取 Size 条日志内容,即返回 (StartLinenum - Size, StartLinenum) 区间内的数据。'."\n"
                        .'- false: 表示从 StartLinenum 开始向下获取 Size 条日志内容,即返回 (StartLinenum, StartLinenum+Size) 区间内的数据。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'LogPath',
                    'in' => 'query',
                    'schema' => ['description' => '日志所在路径,为空时会自动获取 mysql 错误日志位置。', 'type' => 'string', 'required' => false, 'example' => 'error.log'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => '请求 ID。', 'type' => 'string', 'example' => 'B74AD197-214C-50F2-BF7D-B13632EE****'],
                            'LogList' => [
                                'description' => '返回日志的信息列表。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '日志内容。',
                                    'type' => 'object',
                                    'properties' => [
                                        'Content' => ['description' => '日志内容。', 'type' => 'string', 'example' => 'error: ****'],
                                        'Linenum' => ['description' => '行号。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                                    ],
                                ],
                            ],
                            'TotalCount' => ['description' => '查询地域下实例总数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'],
                            'LogPath' => ['description' => '日志路径,指定要收集的日志所在路径', 'type' => 'string', 'example' => 'error.log'],
                        ],
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"B74AD197-214C-50F2-BF7D-B13632EE****\\",\\n  \\"LogList\\": [\\n    {\\n      \\"Content\\": \\"error: ****\\",\\n      \\"Linenum\\": 1\\n    }\\n  ],\\n  \\"TotalCount\\": 1,\\n  \\"LogPath\\": \\"error.log\\"\\n}","type":"json"}]',
            'title' => '查询数据库错误日志',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'ListTagResources' => [
            'summary' => '查询主机和标签的绑定关系。',
            'methods' => ['get', 'post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '95097',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所属的地域ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ap-southeast-1'],
                ],
                [
                    'name' => 'ResourceType',
                    'in' => 'query',
                    'schema' => ['description' => '资源类型,取值固定为DEDICATEDHOST。', 'type' => 'string', 'required' => true, 'example' => 'DEDICATEDHOST'],
                ],
                [
                    'name' => 'ResourceId',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '主机ID,可以设置多个。',
                        'type' => 'array',
                        'items' => ['description' => '主机ID,可以设置多个。'."\n"
                            ."\n"
                            .'**N**表示窜入第几个主机ID。例如:'."\n"
                            ."\n"
                            .'- **Resourceid.1**表示传入第一个主机ID。'."\n"
                            ."\n"
                            .'- **Resourceid.2**表示传入第二个主机ID。', 'type' => 'string', 'required' => false, 'example' => 'ch-t4n4dcdvu6840****'],
                        'required' => false,
                        'maxItems' => 51,
                    ],
                ],
                [
                    'name' => 'Tag',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '标签。',
                        'type' => 'array',
                        'items' => [
                            'type' => 'object',
                            'properties' => [
                                'Key' => ['description' => '标签的键。'."\n"
                                    ."\n"
                                    .'- **N**表示传入第几个标签的键。例如:'."\n"
                                    ."\n"
                                    .'    - **Tag.1.Key**表示传入第一个标签的键。'."\n"
                                    ."\n"
                                    .'    - **Tag.2.Key**表示传入第二个标签的键。'."\n"
                                    ."\n"
                                    .'- 本参数和**ResourceId.N**参数两者中必须传入一项。', 'type' => 'string', 'required' => false, 'example' => 'demokey'],
                                'Value' => ['description' => '标签的值。'."\n"
                                    ."\n"
                                    .'- **N**表示传入第几个标签的值。例如: '."\n"
                                    ."\n"
                                    .'    - **Tag.1.Value**表示传入第一个标签的值。'."\n"
                                    ."\n"
                                    .'    - **Tag.2.Value**表示传入第二个标签的值。'."\n"
                                    ."\n"
                                    .'- 如果标签的值不存在,则自动创建。', 'type' => 'string', 'required' => false, 'example' => 'demovalue'],
                            ],
                            'required' => false,
                            'description' => '',
                        ],
                        'required' => false,
                        'maxItems' => 21,
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => '2853CAA0-D7A2-5CAB-B3A8-BDE2994F320C'],
                            'TagResources' => [
                                'description' => '主机和标签的信息。',
                                'type' => 'array',
                                'items' => [
                                    'description' => '主机和标签的信息。',
                                    'type' => 'object',
                                    'properties' => [
                                        'TagValue' => ['description' => '标签的值。'."\n"
                                            ."\n", 'type' => 'string', 'example' => 'demovalue'],
                                        'ResourceType' => ['description' => '资源类型。'."\n"
                                            ."\n"
                                            .'返回值固定为ALIYUN::CDDC::DEDICATEDHOST,即阿里云专属集群主机。', 'type' => 'string', 'example' => 'ALIYUN::CDDC::DEDICATEDHOST'],
                                        'ResourceId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-t4n4dcdvu6840****'],
                                        'TagKey' => ['description' => '标签的键。', 'type' => 'string', 'example' => 'demokey'],
                                    ],
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'MissingResourceType', 'errorMessage' => 'The specified parameter ResourceType is not valid.', 'description' => ''],
                    ['errorCode' => 'MissParameter.TagOrResourceId', 'errorMessage' => 'The parameter Tag.n or ResourceId.n is needed.', 'description' => ''],
                    ['errorCode' => 'InvalidParameter.TagValue', 'errorMessage' => 'The Tag.%s.Value parameter - %s is invalid', 'description' => '标签值参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'InvalidParameter.TagKey', 'errorMessage' => 'The Tag.%s.Key parameter - %s is invalid', 'description' => '标签键参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The ResourceIds parameter\'s number is exceed , Valid : 50', 'description' => ''],
                    ['errorCode' => 'InvalidTagValue.Malformed', 'errorMessage' => 'The specified parameter "Tag.n.Value" is not valid.', 'description' => ''],
                    ['errorCode' => 'InvalidDedicatedHostId.NotFound', 'errorMessage' => 'The parameter - ResourceIds.N is not found.', 'description' => '资源ID对应的资源无法找到。'],
                    ['errorCode' => 'InvalidParameter.ResourceType', 'errorMessage' => 'The specified parameter "ResourceType" is not valid.', 'description' => ''],
                    ['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The Tags parameter\'s number is exceed, Valid : 20.', 'description' => ''],
                    ['errorCode' => 'MissingParameter.ResourceIds', 'errorMessage' => 'The parameter - ResourceIds.N should not be null.', 'description' => '资源ID列表不能为空'],
                    ['errorCode' => 'Duplicate.TagKey', 'errorMessage' => 'The Tag.N.Key contain duplicate key.', 'description' => ''],
                    ['errorCode' => 'InvalidTagKey.Malformed', 'errorMessage' => 'The Tag.N.Key parameter is invalid.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"2853CAA0-D7A2-5CAB-B3A8-BDE2994F320C\\",\\n  \\"TagResources\\": [\\n    {\\n      \\"TagValue\\": \\"demovalue\\",\\n      \\"ResourceType\\": \\"ALIYUN::CDDC::DEDICATEDHOST\\",\\n      \\"ResourceId\\": \\"ch-t4n4dcdvu6840****\\",\\n      \\"TagKey\\": \\"demokey\\"\\n    }\\n  ]\\n}","errorExample":""},{"type":"xml","example":"<ListTagResourcesResponse>\\n    <RequestId>2853CAA0-D7A2-5CAB-B3A8-BDE2994F320C</RequestId>\\n    <TagResources>\\n        <TagValue>demovalue</TagValue>\\n        <ResourceType>ALIYUN::CDDC::DEDICATEDHOST</ResourceType>\\n        <ResourceId>ch-t4n4dcdvu6840****</ResourceId>\\n        <TagKey>demokey</TagKey>\\n    </TagResources>\\n</ListTagResourcesResponse>","errorExample":""}]',
            'title' => '调用 ListTagResources 查询主机和标签的绑定关系',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListTagResources'],
                ],
            ],
            'ramActions' => [],
        ],
        'ModifyDedicatedHostAccount' => [
            'summary' => '修改专属集群主机账号。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74525',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '需要修改主机账号的主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取目标主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'AccountName',
                    'in' => 'query',
                    'schema' => ['description' => '主机账号名称。'."\n", 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test'],
                ],
                [
                    'name' => 'AccountPassword',
                    'in' => 'query',
                    'schema' => ['description' => '主机账号密码。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test*****'],
                ],
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '需要修改主机账号的主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ECB1F'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                ],
                404 => [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'Specified hostinfo is not found.', 'description' => ''],
                    ['errorCode' => 'InvalidAccountName.NotFound', 'errorMessage' => 'Specified account name does not exist.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ECB1F\\"\\n}","errorExample":""},{"type":"xml","example":"<ModifyDedicatedHostAccountReponse>\\r\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22ECB1F</RequestId>\\r\\n</ModifyDedicatedHostAccountReponse>","errorExample":""}]',
            'title' => '修改专属集群主机账号',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostAccount'],
                ],
            ],
            'ramActions' => [],
        ],
        'ModifyDedicatedHostAttribute' => [
            'summary' => '调用ModifyDedicatedHostAttribute接口设置专属集群的主机是否允许分配实例。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74526',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在[地域ID](~~198326~~)。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'HostName',
                    'in' => 'query',
                    'schema' => ['description' => '主机名称。', 'type' => 'string', 'required' => false, 'example' => 'mysql-host'],
                ],
                [
                    'name' => 'AllocationStatus',
                    'in' => 'query',
                    'schema' => ['description' => '主机是否可分配实例,取值:'."\n"
                        .'- **1**:允许实例分配。'."\n"
                        .'- **0**:停止实例分配。', 'type' => 'string', 'required' => false, 'example' => '1'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ESFS'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                    ['errorCode' => 'ParamTypeException', 'errorMessage' => 'The parameter\'s type error.', 'description' => ''],
                ],
                404 => [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'Specified hostinfo is not found.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ESFS\\"\\n}","errorExample":""},{"type":"xml","example":"<ModifyDedicatedHostAttributeReponse>\\r\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22ESFS</RequestId>\\r\\n</ModifyDedicatedHostAttributeReponse>","errorExample":""}]',
            'title' => '设置专属集群的主机是否允许分配实例',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostAttribute'],
                ],
            ],
            'ramActions' => [],
        ],
        'ModifyDedicatedHostClass' => [
            'summary' => '调用ModifyDedicatedHostClass接口升配主机的规格。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76557',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '[地域ID](~~198326~~)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp1fgj3kt7fsb****'],
                ],
                [
                    'name' => 'TargetClassCode',
                    'in' => 'query',
                    'schema' => ['description' => '主机升配的规格编码,详情请参见[主机规格详情](~~206343~~)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'rds.c6.x4large'],
                ],
                [
                    'name' => 'SwitchTime',
                    'in' => 'query',
                    'schema' => ['description' => '指定主机规格的升配时间,格式为yyyy-MM-ddTHH:mm:ssZ(UTC时间)。'."\n"
                        .'>仅当SwitchTimeMode为2时,需要传入SwitchTime参数。'."\n", 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => '2021-07-13T07:14:22Z'],
                ],
                [
                    'name' => 'SwitchTimeMode',
                    'in' => 'query',
                    'schema' => ['description' => '选择升配的执行模式,取值:'."\n"
                        .'- **0**(默认):立刻执行升配。'."\n"
                        ."\n"
                        .'- **2**:在指定时间执行升配。'."\n"
                        ."\n"
                        .'> 若本参数的值为**2**,则必须同时传入**SwitchTime**参数。', 'type' => 'string', 'required' => false, 'example' => '2'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'DedicatedHostId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-bp1fgj3kt7fsb****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ESD12'],
                            'TaskId' => ['description' => '任务ID。', 'type' => 'string', 'example' => '10254125'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidAction', 'errorMessage' => 'The specified action is not valid.', 'description' => '指定的操作无效'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"DedicatedHostId\\": \\"ch-bp1fgj3kt7fsb****\\",\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ESD12\\",\\n  \\"TaskId\\": \\"10254125\\"\\n}","errorExample":""},{"type":"xml","example":"<ModifyDedicatedHostClassReponse>\\n<DedicatedHostId>ch-bp1fgj3kt7fsb****</DedicatedHostId>\\n<TaskId>10254125</TaskId>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22ESD12</RequestId>\\n</ModifyDedicatedHostClassReponse>","errorExample":""}]',
            'title' => '升配主机的规格',
            'description' => '在创建专属集群MyBase主机后,如果当前主机规格配置无法满足您的业务需求,您可随时变更主机的规格,包括主机的CPU、内存等,更多信息请参见[升配主机规格](~~262822~~)。'."\n"
                .'> 主机升配会导致主机重启(主机上运行数据库实例也随之重启),关于重启主机对数据库实例产生影响,详情请参见[重启主机](~~141772~~)。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
        ],
        'ModifyDedicatedHostGroupAttribute' => [
            'summary' => '可修改的配置包括 CPU 超配比、内存使用率、空间超配比、资源分布策略等。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74529',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群所在地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostGroupId',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群ID。'."\n"
                        ."\n"
                        .'> 您可通过云数据库专属集群控制台集群列表查看目标专属集群ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'dhg-h5i4p331f509****'],
                ],
                [
                    'name' => 'DedicatedHostGroupDesc',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的名称。', 'type' => 'string', 'required' => false, 'example' => 'mysql-cluster'],
                ],
                [
                    'name' => 'CpuAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的CPU超配比,取值范围:**100%**~**300%**。'."\n"
                        ."\n"
                        .'> 若您修改CPUC超配比为**300%**,代表所有实例的CPU资源之和是实际CPU资源的3倍,最大化使用CPU资源。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '300'],
                ],
                [
                    'name' => 'MemAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群中每台主机的内存最大使用率。取值范围:**0%**~**100%**。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '100'],
                ],
                [
                    'name' => 'DiskAllocationRatio',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群的空间超配比。取值范围:**100%**~**200%**。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '200'],
                ],
                [
                    'name' => 'AllocationPolicy',
                    'in' => 'query',
                    'schema' => ['description' => '专属集群资源调度的分配策略。取值:'."\n"
                        .'- **Evenly**:均衡分配,最大化追求更稳定的系统表现,优先从未分配资源或已分配资源较少的主机中分配资源。'."\n"
                        .'- **Intensively**:紧凑分配,最大化追求更充分的资源利用率,优先从创建时间较早且已分配资源较多的主机中分配资源。', 'type' => 'string', 'required' => false, 'example' => 'Intensively'],
                ],
                [
                    'name' => 'HostReplacePolicy',
                    'in' => 'query',
                    'schema' => ['description' => '主机故障时系统的处理策略。取值:'."\n"
                        ."\n"
                        .'- **Auto**:自动替换主机。'."\n"
                        .'- **Manual**:手动替换主机。'."\n"
                        ."\n"
                        .'> 仅创建数据库引擎为**MySQL**的专属集群时,您可以根据实际需求选择主机故障处理策略。其余引擎均请使用Auto默认值。', 'type' => 'string', 'required' => false, 'example' => 'Auto'],
                ],
                [
                    'name' => 'OpenPermission',
                    'in' => 'query',
                    'schema' => ['description' => '是否开放专属集群内的主机的OS权限。取值:'."\n"
                        ."\n"
                        .'- **0**:关闭'."\n"
                        .'- **1**:开放'."\n"
                        ."\n"
                        .'> 仅创建数据库引擎为**MySQL、SQL Server、PostgreSQL**的专属集群时,您可以根据实际需求选择主机开放OS权限。其余引擎暂未提供主机开放OS权限功能,该参数取值默认为关闭。', 'type' => 'string', 'required' => false, 'example' => '0'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22EEDAS'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'Forbidden.RAM', 'errorMessage' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'description' => '操作被禁止'],
                ],
                [
                    ['errorCode' => 'InvalidDedicatedHostGroup.NotFound', 'errorMessage' => '找不到目标主机组!', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22EEDAS\\"\\n}","errorExample":""},{"type":"xml","example":"<ModifyDedicatedHostGroupAttributeResponse>\\r\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22EEDAS</RequestId>\\r\\n</ModifyDedicatedHostGroupAttributeResponse>","errorExample":""}]',
            'title' => '修改专属集群的配置',
            'description' => '更多信息,请参见[管理集群](~~182328~~)。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostGroupAttribute'],
                ],
            ],
            'ramActions' => [],
        ],
        'ModifyDedicatedHostPassword' => [
            'summary' => '调用ModifyDedicatedHostPassword接口修改主机root密码。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76558',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'NewPassword',
                    'in' => 'query',
                    'schema' => ['description' => '新密码。密码要求:'."\n"
                        ."\n"
                        .'- 长度为8~32位。'."\n"
                        ."\n"
                        .'- 须同时包含大写、小写、数字、特殊字符中的3种。'."\n"
                        ."\n"
                        .'- 特殊字符为:`!@#$%^&*()_+-=`'."\n"
                        ."\n"
                        .'> 当您的引擎为SQL Server时,密码要求不能包含账户名(忽略大小写)。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test*****'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****	'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'DedicatedHostName' => ['description' => '主机名称。', 'type' => 'string', 'example' => 'test123****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E12AS'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InvalidDBInstance.NotFound', 'errorMessage' => 'The specified instance does not exist or is not supported.', 'description' => '指定的实例不存在或不支持'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"DedicatedHostName\\": \\"test123****\\",\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E12AS\\"\\n}","errorExample":""},{"type":"xml","example":"<ModifyDedicatedHostPasswordReponse>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22E12AS</RequestId>\\n<DedicatedHostName>test123****</DedicatedHostName>\\n</ModifyDedicatedHostPasswordReponse>","errorExample":""}]',
            'title' => '修改专属主机密码',
            'description' => '本接口当前仅支持Tair主机。'."\n",
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostPassword'],
                ],
            ],
            'ramActions' => [],
        ],
        'QueryHostBaseInfoByInstance' => [
            'summary' => '调用QueryHostBaseInfoByInstance接口查询实例所在主机基本信息。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74533',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '实例所在地域ID。可查看[地域信息](~~198326~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DBInstanceId',
                    'in' => 'query',
                    'schema' => ['description' => '实例ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'rm-bp15rszyxs4t3****'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22E12CV'],
                            'HostInstanceConsoleInfos' => [
                                'description' => '主机上实例信息概览。',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'VpcId' => ['description' => '实例所在主机专有网络ID 。', 'type' => 'string', 'example' => 'vpc-bp1ov7as4yvz4kxei****'],
                                        'Status' => ['description' => '实例状态描述。', 'type' => 'string', 'example' => 'RUNNING'],
                                        'ExpiredTime' => ['description' => '实例到期时间。', 'type' => 'string', 'example' => '2021.07.20'],
                                        'ClusterName' => ['description' => '实例规格描述。', 'type' => 'string', 'example' => 'rds.ebmr6.26xlarge'],
                                        'Ip' => ['description' => '实例所在主机IP地址。', 'type' => 'string', 'example' => ' 172.22.0.***'],
                                        'HostName' => ['description' => '实例所在主机名称。', 'type' => 'string', 'example' => 'ch-bp1fgj3kt7fsb****'],
                                        'Engine' => ['description' => '数据库类型。', 'type' => 'string', 'example' => 'mysql'],
                                        'Role' => ['description' => '实例角色。', 'type' => 'string', 'example' => 'master'],
                                        'Port' => ['description' => '实例所在主机端口。', 'type' => 'string', 'example' => '3443'],
                                        'EngineVersion' => ['description' => '数据库版本。', 'type' => 'string', 'example' => '5.7'],
                                    ],
                                    'description' => '',
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'You are not authorized to perform this action.', 'description' => '不允许操作'],
                ],
                [
                    ['errorCode' => 'InvalidDBInstance.NotFound', 'errorMessage' => 'The specified instance does not exist or is not supported.', 'description' => '指定的实例不存在或不支持'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22E12CV\\",\\n  \\"HostInstanceConsoleInfos\\": [\\n    {\\n      \\"VpcId\\": \\"vpc-bp1ov7as4yvz4kxei****\\",\\n      \\"Status\\": \\"RUNNING\\",\\n      \\"ExpiredTime\\": \\"2021.07.20\\",\\n      \\"ClusterName\\": \\"rds.ebmr6.26xlarge\\",\\n      \\"Ip\\": \\" 172.22.0.***\\",\\n      \\"HostName\\": \\"ch-bp1fgj3kt7fsb****\\",\\n      \\"Engine\\": \\"mysql\\",\\n      \\"Role\\": \\"master\\",\\n      \\"Port\\": \\"3443\\",\\n      \\"EngineVersion\\": \\"5.7\\"\\n    }\\n  ]\\n}","errorExample":""},{"type":"xml","example":"<QueryHostBaseInfoByInstanceResponse>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22E12CV</RequestId>\\n<HostInstanceConsoleInfos>\\n    <Status>RUNNING</Status>\\n    <Role>master</Role>\\n    <EngineVersion>5.7</EngineVersion>\\n    <VpcId>vpc-bp1ov7as4yvz4kxei****</VpcId>\\n    <ExpiredTime>2021.07.20</ExpiredTime>\\n    <Port>3443</Port>\\n    <Ip> 172.22.0.***</Ip>\\n    <ClusterName>rds.ebmr6.26xlarge</ClusterName>\\n    <HostName>ch-bp1fgj3kt7fsb****</HostName>\\n    <Engine>mysql</Engine>\\n</HostInstanceConsoleInfos>\\n<QueryHostBaseInfoByInstanceResponse>","errorExample":""}]',
            'title' => '查看实例所在主机基本信息',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '200', 'countWindow' => 60, 'regionId' => '*', 'api' => 'QueryHostBaseInfoByInstance'],
                ],
            ],
            'ramActions' => [],
        ],
        'QueryHostInstanceConsoleInfo' => [
            'summary' => '调用QueryHostInstanceConsoleInfo接口查询主机实例节点列表。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74534',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在地域ID。您可以登录云数据库专属集群控制台,查看[地域信息](~~198326~~)。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-qingdao'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp1fgj3kt7fsb****'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22ECB1F'],
                            'HostInstanceConsoleInfos' => [
                                'description' => '实例信息列表。',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'Status' => ['description' => '实例状态描述。', 'type' => 'string', 'example' => 'RUNNING'],
                                        'MaxConnIncreaseRatioValue' => ['description' => '上弹连接数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1300'],
                                        'MemSize' => ['description' => '实例规格内存,单位为GB。', 'type' => 'integer', 'format' => 'int32', 'example' => '16'],
                                        'DiskSize' => ['description' => '实例存储空间,单位为GB。', 'type' => 'integer', 'format' => 'int32', 'example' => '500'],
                                        'Ip' => ['description' => '实例所在主机IP。', 'type' => 'string', 'example' => '172.22.XX.XX'],
                                        'Port' => ['description' => '主机端口。', 'type' => 'string', 'example' => '3443'],
                                        'EngineVersion' => ['description' => '数据库版本。', 'type' => 'string', 'example' => '5.8'],
                                        'MemoryIncreaseRatioValue' => ['description' => '上弹内存配置。', 'type' => 'integer', 'format' => 'int32', 'example' => '64'],
                                        'CpuIncreaseRatioValue' => ['description' => '上弹CPU配置。', 'type' => 'integer', 'format' => 'int32', 'example' => '16'],
                                        'DBInstanceId' => ['description' => '实例ID。', 'type' => 'string', 'example' => 'rm-bp1m5z8002gyj****'],
                                        'Engine' => ['description' => '数据库类型。', 'type' => 'string', 'example' => 'mysql'],
                                        'LevelName' => ['description' => '实例规格描述。', 'type' => 'string', 'example' => 'mysql.z2.medium.2'],
                                        'Role' => ['description' => '实例角色。', 'type' => 'string', 'example' => 'master'],
                                        'DBInstanceDescription' => ['description' => '实例描述。', 'type' => 'string', 'example' => 'rm-bp1m5z8002gyj****'],
                                        'CpuCores' => ['description' => '实例规格CPU,单位为核。', 'type' => 'integer', 'format' => 'int32', 'example' => '8'],
                                        'PerfInfo' => [
                                            'description' => '实例所在主机性能信息。',
                                            'type' => 'object',
                                            'properties' => [
                                                'PerfIdbPio' => ['description' => '实例所在主机物理IO。', 'type' => 'number', 'format' => 'float', 'example' => '30'],
                                                'DiskCurr' => ['description' => '实例所在主机磁盘空间,单位为GB。', 'type' => 'number', 'format' => 'float', 'example' => '1000'],
                                                'MemRatio' => ['description' => '实例所在主机内存大小,单位为GB。', 'type' => 'number', 'format' => 'float', 'example' => '64'],
                                                'CpuRatio' => ['description' => '实例所在主机CPU大小,单位为核。', 'type' => 'number', 'format' => 'float', 'example' => '16'],
                                            ],
                                        ],
                                    ],
                                    'description' => '',
                                ],
                            ],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'Permission.NotSupport', 'errorMessage' => 'You are not authorized to perform this action.', 'description' => '不允许操作'],
                    ['errorCode' => 'Forbidden.RAM', 'errorMessage' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'description' => '操作被禁止'],
                ],
                [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'The host is not found.', 'description' => '主机不存在'],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22ECB1F\\",\\n  \\"HostInstanceConsoleInfos\\": [\\n    {\\n      \\"Status\\": \\"RUNNING\\",\\n      \\"MaxConnIncreaseRatioValue\\": 1300,\\n      \\"MemSize\\": 16,\\n      \\"DiskSize\\": 500,\\n      \\"Ip\\": \\"172.22.XX.XX\\",\\n      \\"Port\\": \\"3443\\",\\n      \\"EngineVersion\\": \\"5.8\\",\\n      \\"MemoryIncreaseRatioValue\\": 64,\\n      \\"CpuIncreaseRatioValue\\": 16,\\n      \\"DBInstanceId\\": \\"rm-bp1m5z8002gyj****\\",\\n      \\"Engine\\": \\"mysql\\",\\n      \\"LevelName\\": \\"mysql.z2.medium.2\\",\\n      \\"Role\\": \\"master\\",\\n      \\"DBInstanceDescription\\": \\"rm-bp1m5z8002gyj****\\",\\n      \\"CpuCores\\": 8,\\n      \\"PerfInfo\\": {\\n        \\"PerfIdbPio\\": 30,\\n        \\"DiskCurr\\": 1000,\\n        \\"MemRatio\\": 64,\\n        \\"CpuRatio\\": 16\\n      }\\n    }\\n  ]\\n}","errorExample":""},{"type":"xml","example":"<QueryHostInstanceConsoleInfoResponse>\\n    <RequestId>D6E068C3-25BC-455A-85FE-45F0B22ECB1F</RequestId>\\n    <HostInstanceConsoleInfos>\\n        <Status>RUNNING</Status>\\n        <MaxConnIncreaseRatioValue>1300</MaxConnIncreaseRatioValue>\\n        <MemSize>16</MemSize>\\n        <DiskSize>500</DiskSize>\\n        <Ip>172.22.XX.XX</Ip>\\n        <Port>3443</Port>\\n        <EngineVersion>5.8</EngineVersion>\\n        <MemoryIncreaseRatioValue>64</MemoryIncreaseRatioValue>\\n        <CpuIncreaseRatioValue>16</CpuIncreaseRatioValue>\\n        <DBInstanceId>rm-bp1m5z8002gyj****</DBInstanceId>\\n        <Engine>mysql</Engine>\\n        <LevelName>mysql.z2.medium.2</LevelName>\\n        <Role>master</Role>\\n        <DBInstanceDescription>rm-bp1m5z8002gyj****</DBInstanceDescription>\\n        <CpuCores>8</CpuCores>\\n        <PerfInfo>\\n            <PerfIdbPio>30</PerfIdbPio>\\n            <DiskCurr>1000</DiskCurr>\\n            <MemRatio>64</MemRatio>\\n            <CpuRatio>16</CpuRatio>\\n        </PerfInfo>\\n    </HostInstanceConsoleInfos>\\n</QueryHostInstanceConsoleInfoResponse>","errorExample":""}]',
            'title' => '查询主机实例节点列表',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2021-12-07T09:31:21.000Z', 'description' => '错误码发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '200', 'countWindow' => 60, 'regionId' => '*', 'api' => 'QueryHostInstanceConsoleInfo'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'cddc:QueryHostInstanceConsoleInfo',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ReplaceDedicatedHost' => [
            'summary' => '调用ReplaceDedicatedHost接口替换专属集群的主机。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74535',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '目标主机所在地域ID。可调用[DescribeDedicatedHostAttribute](~~213010~~)获取。', 'type' => 'string', 'required' => false, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。可调用[DescribeDedicatedHosts](~~200944~~)获取目标主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'FailoverMode',
                    'in' => 'query',
                    'schema' => ['description' => '实例主库的切换方案。取值:'."\n"
                        .'- **MaintainTime**(默认):在实例维护时间段切换,等待当前主机上的主实例都切换成其他主机的备实例后再重启主机,避免影响业务。'."\n"
                        .'- **Immediate**:立即强制重启主机。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'MaintainTime'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'DedicatedHostId' => ['description' => '专属集群的主机ID。', 'type' => 'string', 'example' => ' ch-bp10a5id3boqi****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22EDSD8'],
                            'TaskId' => ['description' => '任务ID。', 'type' => 'integer', 'format' => 'int32', 'example' => '10254125'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InvalidDedicatedHostId_NotFound', 'errorMessage' => 'specific DedicatedHostId not found', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"DedicatedHostId\\": \\" ch-bp10a5id3boqi****\\",\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22EDSD8\\",\\n  \\"TaskId\\": 10254125\\n}","errorExample":""},{"type":"xml","example":"<ReplaceDedicatedHostReponse>\\n<DedicatedHostId> dhg-6w7q18iwt5jo****</DedicatedHostId>\\n<TaskId>10254125</TaskId>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22EDSD8</RequestId>\\n</ReplaceDedicatedHostReponse>","errorExample":""}]',
            'title' => '替换专属集群的主机',
            'description' => '当MySQL主机故障策略选择手动替换,且MySQL主机状态为**故障中**时,您可调用该接口替换主机。'."\n"
                ."\n"
                .'> 您可通过调用[DescribeDedicatedHostAttribute](~~213010~~)接口,根据返回参数**HostStatus**的值获取当前主机的状态。',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ReplaceDedicatedHost'],
                ],
            ],
            'ramActions' => [],
        ],
        'RestartDedicatedHost' => [
            'summary' => '调用RestartDedicatedHost接口重启专属集群的主机。',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '74537',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所在的[地域ID](~~198326~~)。', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'cn-hangzhou'],
                ],
                [
                    'name' => 'DedicatedHostId',
                    'in' => 'query',
                    'schema' => ['description' => '主机ID。您可以登录云数据库专属集群控制台,在**主机列表**查看并获取主机ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ch-bp10a5id3boqi****'],
                ],
                [
                    'name' => 'FailoverMode',
                    'in' => 'query',
                    'schema' => ['description' => '主实例的切换方案,取值:'."\n"
                        .'- **MaintainTime**(默认):在实例维护时间段切换,等待当前主机上的主实例切换到其他主机的备实例后再重启主机,避免影响业务。'."\n"
                        .'- **Immediate**:立即切换,即立即强制重启主机。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'MaintainTime'],
                ],
                [
                    'name' => 'ForceStop',
                    'in' => 'query',
                    'schema' => ['description' => '是否强制关机重启,取值:'."\n"
                        ."\n"
                        .'- true:强制重启。执行断电操作,所有未写入存储设备的缓存数据会丢失,请谨慎选择。'."\n"
                        ."\n"
                        .'- false(默认值):正常重启。'."\n"
                        ."\n"
                        .'> 该参数仅对Tair主机生效,其余引擎主机重启均为正常重启。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'DedicatedHostId' => ['description' => '主机ID。', 'type' => 'string', 'example' => 'ch-bp10a5id3boqi****'],
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'D6E068C3-25BC-455A-85FE-45F0B22EDSH'],
                            'TaskId' => ['description' => '任务ID。', 'type' => 'integer', 'format' => 'int32', 'example' => '10254125'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'InvalidUserId.NotSupport', 'errorMessage' => 'The userid have no permission.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'InvalidAction.NotSupport', 'errorMessage' => 'The host status does not support the operation.', 'description' => '当前主机状态不支持此操作'],
                ],
                [
                    ['errorCode' => 'HostInfo.NotFound', 'errorMessage' => 'Specified hostinfo is not found.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"DedicatedHostId\\": \\"ch-bp10a5id3boqi****\\",\\n  \\"RequestId\\": \\"D6E068C3-25BC-455A-85FE-45F0B22EDSH\\",\\n  \\"TaskId\\": 10254125\\n}","errorExample":""},{"type":"xml","example":"<RestartDedicatedHostReponse>\\n<DedicatedHostId>ch-bp10a5id3boqi****</DedicatedHostId>\\n<TaskId>10254125</TaskId>\\n<RequestId>D6E068C3-25BC-455A-85FE-45F0B22EDSH</RequestId>\\n</RestartDedicatedHostReponse>","errorExample":""}]',
            'title' => '重启专属集群的主机',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
                ['createdAt' => '2022-09-13T12:36:32.000Z', 'description' => '请求参数发生变更'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'RestartDedicatedHost'],
                ],
            ],
            'ramActions' => [],
        ],
        'TagResources' => [
            'summary' => '为一个或多个主机绑定标签。',
            'methods' => ['get', 'post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '94226',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所属的地域ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ap-southeast-1'],
                ],
                [
                    'name' => 'ResourceId',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '主机ID,可以设置多个。'."\n"
                            ."\n",
                        'type' => 'array',
                        'items' => ['description' => '主机ID,可以设置多个。'."\n"
                            .' **N**表示传入第几个主机ID。例如:'."\n"
                            .'- **Resourceid.1**表示传入第一个主机ID。'."\n"
                            .'- **Resourceid.2**表示传入第二个主机ID。', 'type' => 'string', 'required' => false, 'example' => 'ch-bp1yp3mqggn8****'],
                        'required' => true,
                        'example' => 'ch-t4n4dcdvu6840****',
                        'maxItems' => 51,
                    ],
                ],
                [
                    'name' => 'Tag',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '标签',
                        'type' => 'array',
                        'items' => [
                            'type' => 'object',
                            'properties' => [
                                'Key' => ['description' => '标签的键。'."\n"
                                    ."\n"
                                    .'- **N**表示传入第几个标签的键。例如:'."\n"
                                    ."\n"
                                    .'    - **Tag.1.Key**表示传入第一个标签的键。'."\n"
                                    ."\n"
                                    .'    - **Tag.2.Key**表示传入第二个标签的键。'."\n"
                                    .'- 如果标签的键不存在,则自动创建。', 'type' => 'string', 'required' => true, 'example' => 'demokey'],
                                'Value' => ['description' => '标签的值。'."\n"
                                    ."\n"
                                    .'- **N**表示传入第几个标签的值。例如:'."\n"
                                    ."\n"
                                    .'    - **Tag.1.Value**表示传入第一个标签的值。'."\n"
                                    ."\n"
                                    .'    - **Tag.2.Value**表示传入第二个标签的值。'."\n"
                                    .'- 如果标签的值不存在,则自动创建。', 'type' => 'string', 'required' => true, 'example' => 'demovalue'],
                            ],
                            'required' => false,
                            'description' => '',
                        ],
                        'required' => true,
                        'maxItems' => 21,
                    ],
                ],
                [
                    'name' => 'ResourceType',
                    'in' => 'query',
                    'schema' => ['description' => '资源类型,取值固定为DEDICATEDHOST。'."\n"
                        ."\n", 'type' => 'string', 'required' => true, 'example' => 'DEDICATEDHOST'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => '4B938011-874B-5F54-8B9E-7E2A08B3AA13'],
                        ],
                        'description' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'OperationDenied.QuotaExceed', 'errorMessage' => 'The Tags parameter number is exceed. Valid is 20.', 'description' => '单个资源的用户标签数量过多,不能超过20。'],
                    ['errorCode' => 'NoPermission.SystemTag', 'errorMessage' => 'The operator is not permission for the system tag', 'description' => '无法对系统标签进行操作。'],
                    ['errorCode' => 'InvalidParameter.TagValue', 'errorMessage' => 'The Tag.%s.Value parameter - %s is invalid', 'description' => '标签值参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'InvalidParameter.TagKey', 'errorMessage' => 'The Tag.%s.Key parameter - %s is invalid', 'description' => '标签键参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The ResourceIds parameter\'s number is exceed , Valid : 50', 'description' => ''],
                    ['errorCode' => 'InvalidTagValue.Malformed', 'errorMessage' => 'The specified parameter "Tag.n.Value" is not valid.', 'description' => ''],
                    ['errorCode' => 'InvalidDedicatedHostId.NotFound', 'errorMessage' => 'The parameter - ResourceIds.N is not found.', 'description' => '资源ID对应的资源无法找到。'],
                    ['errorCode' => 'InvalidParameter.ResourceType', 'errorMessage' => 'The specified parameter "ResourceType" is not valid.', 'description' => ''],
                    ['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The Tags parameter\'s number is exceed, Valid : 20.', 'description' => ''],
                    ['errorCode' => 'MissingParameter.ResourceIds', 'errorMessage' => 'The parameter - ResourceIds.N should not be null.', 'description' => '资源ID列表不能为空'],
                    ['errorCode' => 'Duplicate.TagKey', 'errorMessage' => 'The Tag.N.Key contain duplicate key.', 'description' => ''],
                    ['errorCode' => 'InvalidTagKey.Malformed', 'errorMessage' => 'The Tag.N.Key parameter is invalid.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"4B938011-874B-5F54-8B9E-7E2A08B3AA13\\"\\n}","errorExample":""},{"type":"xml","example":"<TagResourcesResponse>\\n    <RequestId>4B938011-874B-5F54-8B9E-7E2A08B3AA13</RequestId>\\n</TagResourcesResponse>","errorExample":""}]',
            'title' => '为一个或多个主机绑定标签',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2021-11-02T13:29:35.000Z', 'description' => 'OpenAPI 下线'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'TagResources'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'cddc:TagResources',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'UntagResources' => [
            'summary' => '将主机的标签解绑。',
            'methods' => ['get', 'post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '95095',
                'abilityTreeNodes' => ['FEATUREcddcZHIXH7'],
            ],
            'parameters' => [
                [
                    'name' => 'RegionId',
                    'in' => 'query',
                    'schema' => ['description' => '主机所属的地域ID。', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ap-southeast-1'],
                ],
                [
                    'name' => 'ResourceId',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '主机ID,可以设置多个。'."\n",
                        'type' => 'array',
                        'items' => ['description' => '主机ID,可以设置多个。'."\n"
                            ."\n"
                            .'**N**表示窜入第几个主机ID。例如:'."\n"
                            ."\n"
                            .'- **Resourceid.1**表示传入第一个主机ID。'."\n"
                            ."\n"
                            .'- **Resourceid.2**表示传入第二个主机ID。', 'type' => 'string', 'required' => false, 'example' => 'ch-t4n4dcdvu6840****'],
                        'required' => true,
                        'maxItems' => 51,
                    ],
                ],
                [
                    'name' => 'TagKey',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '标签的键。',
                        'type' => 'array',
                        'items' => ['description' => '标签的键。'."\n"
                            ."\n"
                            .'- **N**表示传入第几个标签的键。例如:'."\n"
                            ."\n"
                            .'    - **Tag.1.Key**表示传入第一个标签的键。'."\n"
                            ."\n"
                            .'    - **Tag.2.Key**表示传入第二个标签的键。'."\n"
                            ."\n"
                            .'- 如果标签的键不存在,则自动创建。', 'type' => 'string', 'required' => false, 'example' => 'demokey'],
                        'required' => false,
                        'maxItems' => 21,
                    ],
                ],
                [
                    'name' => 'All',
                    'in' => 'query',
                    'schema' => ['description' => '是否解绑主机上的所有标签,取值:'."\n"
                        ."\n"
                        .'- **true**:解绑主机上的所有标签。'."\n"
                        ."\n"
                        .'- **false**:不解绑上主机的所有标签,默认值。'."\n"
                        ."\n"
                        .'> 如果同时设置了TagKey.N和本参数,则本参数不生效。', 'type' => 'boolean', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'ResourceType',
                    'in' => 'query',
                    'schema' => ['description' => '资源类型,取值固定为DEDICATEDHOST。', 'type' => 'string', 'required' => true, 'example' => 'DEDICATEDHOST'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '请求ID。',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => '请求ID。', 'type' => 'string', 'example' => 'B74AD197-214C-50F2-BF7D-B13632EE4D75'],
                        ],
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'NoPermission.SystemTag', 'errorMessage' => 'The operator is not permission for the system tag', 'description' => '无法对系统标签进行操作。'],
                    ['errorCode' => 'InvalidParameter.TagValue', 'errorMessage' => 'The Tag.%s.Value parameter - %s is invalid', 'description' => '标签值参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'InvalidParameter.TagKey', 'errorMessage' => 'The Tag.%s.Key parameter - %s is invalid', 'description' => '标签键参数非法,不能为空,或者长度超过128。'],
                    ['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The ResourceIds parameter\'s number is exceed , Valid : 50', 'description' => ''],
                    ['errorCode' => 'InvalidTagValue.Malformed', 'errorMessage' => 'The specified parameter "Tag.n.Value" is not valid.', 'description' => ''],
                    ['errorCode' => 'InvalidDedicatedHostId.NotFound', 'errorMessage' => 'The parameter - ResourceIds.N is not found.', 'description' => '资源ID对应的资源无法找到。'],
                    ['errorCode' => 'InvalidParameter.ResourceType', 'errorMessage' => 'The specified parameter "ResourceType" is not valid.', 'description' => ''],
                    ['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The Tags parameter\'s number is exceed, Valid : 20.', 'description' => ''],
                    ['errorCode' => 'MissingParameter.ResourceIds', 'errorMessage' => 'The parameter - ResourceIds.N should not be null.', 'description' => '资源ID列表不能为空'],
                    ['errorCode' => 'Duplicate.TagKey', 'errorMessage' => 'The Tag.N.Key contain duplicate key.', 'description' => ''],
                    ['errorCode' => 'InvalidTagKey.Malformed', 'errorMessage' => 'The Tag.N.Key parameter is invalid.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"B74AD197-214C-50F2-BF7D-B13632EE4D75\\"\\n}","errorExample":""},{"type":"xml","example":"<UntagResourcesResponse>\\n    <RequestId>B74AD197-214C-50F2-BF7D-B13632EE4D75</RequestId>\\n</UntagResourcesResponse>","errorExample":""}]',
            'title' => '将主机的标签解绑',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UntagResources'],
                ],
            ],
            'ramActions' => [],
        ],
    ],
    'endpoints' => [
        ['regionId' => 'ap-northeast-1', 'regionName' => '日本(东京)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.ap-northeast-1.aliyuncs.com', 'endpoint' => 'cddc.ap-northeast-1.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-1', 'regionName' => '新加坡', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-2', 'regionName' => '澳大利亚(悉尼)已关停', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.ap-southeast-2.aliyuncs.com', 'endpoint' => 'cddc.ap-southeast-2.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-3', 'regionName' => '马来西亚(吉隆坡)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.ap-southeast-3.aliyuncs.com', 'endpoint' => 'cddc.ap-southeast-3.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-5', 'regionName' => '印度尼西亚(雅加达)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.ap-southeast-5.aliyuncs.com', 'endpoint' => 'cddc.ap-southeast-5.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-beijing', 'regionName' => '华北2(北京)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-chengdu', 'regionName' => '西南1(成都)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.cn-chengdu.aliyuncs.com', 'endpoint' => 'cddc.cn-chengdu.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-hangzhou', 'regionName' => '华东1(杭州)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-heyuan', 'regionName' => '华南2(河源)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-hongkong', 'regionName' => '中国香港', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-huhehaote', 'regionName' => '华北5(呼和浩特)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.cn-huhehaote.aliyuncs.com', 'endpoint' => 'cddc.cn-huhehaote.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-qingdao', 'regionName' => '华北1(青岛)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shanghai', 'regionName' => '华东2(上海)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shenzhen', 'regionName' => '华南1(深圳)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-zhangjiakou', 'regionName' => '华北3(张家口)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'cddc.cn-zhangjiakou.aliyuncs.com', 'endpoint' => 'cddc.cn-zhangjiakou.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'us-west-1', 'regionName' => '美国(硅谷)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'us-east-1', 'regionName' => '美国(弗吉尼亚)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'eu-west-1', 'regionName' => '英国(伦敦)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'cddc.eu-west-1.aliyuncs.com', 'endpoint' => 'cddc.eu-west-1.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'eu-central-1', 'regionName' => '德国(法兰克福)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'cddc.eu-central-1.aliyuncs.com', 'endpoint' => 'cddc.eu-central-1.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'me-east-1', 'regionName' => '阿联酋(迪拜)', 'areaId' => 'middleEast', 'areaName' => '中东', 'public' => 'cddc.me-east-1.aliyuncs.com', 'endpoint' => 'cddc.me-east-1.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-south-1', 'regionName' => '印度(孟买)已关停', 'areaId' => 'middleEast', 'areaName' => '中东', 'public' => 'cddc.ap-south-1.aliyuncs.com', 'endpoint' => 'cddc.ap-south-1.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shenzhen-finance-1', 'regionName' => '华南1 金融云', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shanghai-finance-1', 'regionName' => '华东2 金融云', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'cddc.aliyuncs.com', 'endpoint' => 'cddc.aliyuncs.com', 'vpc' => ''],
    ],
    'errorCodes' => [
        ['code' => 'AccessForbidden', 'message' => 'The specified Access ID does not have sufficient permission.', 'http_code' => 401, 'description' => '指定的访问ID没有足够的特权。'],
        ['code' => 'AccessForbidden', 'message' => 'The specified access ID has insufficient permission.', 'http_code' => 500, 'description' => '指定的访问Id没有足够的权限.'],
        ['code' => 'CDDC.AvailableHostsNotEnoughInZone', 'message' => 'Not enough available hosts are in the target zone.', 'http_code' => 400, 'description' => '可用区缺少主机资源'],
        ['code' => 'CDDC.Bastion.NoPermission', 'message' => 'The user has not authorized CDDC to call the Bastionhost API operations.', 'http_code' => 400, 'description' => '用户未授权CDDC去角色扮演调用Bastion接口'],
        ['code' => 'CDDC.BastionApi.Error', 'message' => 'Failed to call the Bastionhost API operations.', 'http_code' => 400, 'description' => '角色扮演调用Bastion(堡垒机) API 失败'],
        ['code' => 'CDDC.DeleteWhenInstanceExist.Failed', 'message' => 'The cluster contains an instance and cannot be deleted.', 'http_code' => 400, 'description' => '无法删除主机,因为有实例存在'],
        ['code' => 'CDDC.InvalidBastionObject.NotFound', 'message' => 'Failed to find the Bastion commodity instance.', 'http_code' => 404, 'description' => '找不到Bastion资源(也有可能是低版本堡垒机不存在)'],
        ['code' => 'ClustersTemplateNotFound', 'message' => 'Key account cluster is not supported for the region.', 'http_code' => 404, 'description' => '该地域尚未开通大客户主机组'],
        ['code' => 'Custins.Exist', 'message' => 'The cluster contains an instance and cannot be deleted.', 'http_code' => 400, 'description' => '集群中存在实例,不能删除'],
        ['code' => 'Forbidden.RAM', 'message' => 'User not authorized to operate on the specified resource, or this API does not support RAM.', 'http_code' => 403, 'description' => '操作被禁止'],
        ['code' => 'HostInfo.NotFound', 'message' => 'The host is not found.', 'http_code' => 404, 'description' => '主机不存在'],
        ['code' => 'HostInfo.NotFound', 'message' => 'The specified host info is not found.', 'http_code' => 404, 'description' => '找不到指定的主机信息'],
        ['code' => 'HostStatusNotSupport', 'message' => 'Specified host status does not support this operation.', 'http_code' => 400, 'description' => '主机状态不支持该操作'],
        ['code' => 'IncompleteAccountInfo', 'message' => 'Your account information is incomplete. Update your information first.', 'http_code' => 400, 'description' => '用户信息尚未完善,请补全信息后再操作。'],
        ['code' => 'IncompleteTaxInfo', 'message' => 'Your tax information is incomplete. Update the information first.', 'http_code' => 400, 'description' => '您的税务信息尚未完善,请补全信息后再操作。'],
        ['code' => 'IncorrectDBInstanceLockMode', 'message' => 'The current database instance lock mode does not support the operation.', 'http_code' => 403, 'description' => '当前的数据库实例锁定模式不支持此操作。'],
        ['code' => 'IncorrectDBInstanceType', 'message' => 'The current database instance type does not support the operation.', 'http_code' => 403, 'description' => '当前的数据库实例类型不支持此操作。'],
        ['code' => 'IncorrectDBType', 'message' => 'Current DB type does not support this operation.', 'http_code' => 404, 'description' => '数据库类型不支持该操作'],
        ['code' => 'InsuffcientBalanceOrBankAccount', 'message' => 'No payment method is specified for your account. We recommend that you add a payment method or add funds to the prepayment balance.', 'http_code' => 400, 'description' => '您的账户暂无有效支付方式,请添加支付方式或给预付款充值。'],
        ['code' => 'InsufficientResourceCapacity', 'message' => 'No host is available for the requested instance.', 'http_code' => 404, 'description' => '资源不足,分配失败'],
        ['code' => 'InvalidAccountPassword.Format', 'message' => 'The account password format is invalid.', 'http_code' => 400, 'description' => '密码格式错误'],
        ['code' => 'InvalidAction', 'message' => 'The specified action is not valid.', 'http_code' => 400, 'description' => '指定的操作无效'],
        ['code' => 'InvalidAction.NotSupport', 'message' => 'The host status does not support the operation.', 'http_code' => 403, 'description' => '当前主机状态不支持此操作'],
        ['code' => 'InvalidClusterName.NotFound', 'message' => 'The specified cluster name is not found.', 'http_code' => 404, 'description' => 'Cluster不存在'],
        ['code' => 'InvalidDBInstance.NotFound', 'message' => 'The specified instance does not exist or is not supported.', 'http_code' => 404, 'description' => '指定的实例不存在或不支持'],
        ['code' => 'InvalidDBInstanceConnType.Format', 'message' => 'The specified database instance connection type is invalid.', 'http_code' => 400, 'description' => '指定的数据库实例连接类型无效。'],
        ['code' => 'InvalidDedicatedHostGroup.NotFound', 'message' => 'The specified DedicatedHostGroup does not exist.', 'http_code' => 404, 'description' => '集群不存在'],
        ['code' => 'InvalidDedicatedHostId.NotFound', 'message' => 'The parameter - ResourceIds.N is not found.', 'http_code' => 400, 'description' => '资源ID对应的资源无法找到。'],
        ['code' => 'InvalidInstance', 'message' => 'The instance does not support the operation.', 'http_code' => 403, 'description' => '该实例不支持该操作'],
        ['code' => 'InvalidInstanceLevel.Malformed', 'message' => 'The instance level does not match the source instance level.', 'http_code' => 400, 'description' => '实例级别与src实例级别不匹配。'],
        ['code' => 'InvalidMasterHostName', 'message' => 'The specified zoneId of the master host is different from the zoneId of the master.', 'http_code' => 400, 'description' => '指定的主节点主机所在的可用区和主节点的可用区不一致'],
        ['code' => 'InvalidMasterHostName', 'message' => 'The specified master host zoneId is different from the master zoneId.', 'http_code' => 400, 'description' => '传入的主机所在的zoneId和传入的主可用区ZoneId不一致'],
        ['code' => 'InvalidOldInstanceType.NotSupport', 'message' => 'The specified oldInstanceType is not supported in RDS.', 'http_code' => 400, 'description' => '当前老实例不支持该转换操作'],
        ['code' => 'InvalidOssBackupFile.InvalidFile', 'message' => 'The specified OSS backup file is invalid.', 'http_code' => 400, 'description' => '指定的OSS备份文件无效'],
        ['code' => 'InvalidParameter', 'message' => 'The parameter is invalid.', 'http_code' => 404, 'description' => '无效参数'],
        ['code' => 'InvalidParameter.TagKey', 'message' => 'The Tag.%s.Key parameter - %s is invalid', 'http_code' => 400, 'description' => '标签键参数非法,不能为空,或者长度超过128。'],
        ['code' => 'InvalidParameter.TagValue', 'message' => 'The Tag.%s.Value parameter - %s is invalid', 'http_code' => 400, 'description' => '标签值参数非法,不能为空,或者长度超过128。'],
        ['code' => 'InvalidPaymentMethod.Incomplete', 'message' => 'No payment method is specified for your account. We recommend that you add a payment method.', 'http_code' => 400, 'description' => '您的账户暂无有效支付方式,请添加支付方式。'],
        ['code' => 'InvalidPaymentMethod.InsufficientBalance', 'message' => 'No payment method is specified for your account. We recommend that you add a payment method or add funds to the prepayment balance.', 'http_code' => 400, 'description' => '您的账户暂无有效支付方式,请添加支付方式或保持预付款余额充足。'],
        ['code' => 'InvalidPaymentMethod.Missing', 'message' => 'No payment method is specified for your account. We recommend that you add a payment method.', 'http_code' => 400, 'description' => '您的账户暂无有效支付方式,请添加支付方式'],
        ['code' => 'InvalidPaymentMethod.Missing', 'message' => 'No payment method is specified for your account. Add a payment method first.', 'http_code' => 400, 'description' => '您的支付方式尚未完善,请补全信息后再操作。'],
        ['code' => 'InvalidRegion.NotFound', 'message' => 'The region is invalid.', 'http_code' => 400, 'description' => 'Region信息非法'],
        ['code' => 'InvalidRootPassword.Format', 'message' => 'The root password is invalid.', 'http_code' => 400, 'description' => '主机root密码不符合'],
        ['code' => 'InvalidSearchTimeRange', 'message' => 'The search time range cannot be longer than a month.', 'http_code' => 400, 'description' => '查询范围不能超过一个月'],
        ['code' => 'InvalidStorage.Format', 'message' => 'The specified format of storage size is invalid.', 'http_code' => 400, 'description' => '磁盘大小格式错误。'],
        ['code' => 'InvalidStorage.Format', 'message' => 'The format of Storage is invalid.', 'http_code' => 400, 'description' => 'Storage格式错误'],
        ['code' => 'InvalidTagValue.Malformed', 'message' => 'The specified parameter Tag.n.Value is invalid.', 'http_code' => 400, 'description' => '参数 Tag.n.Value非法。'],
        ['code' => 'InvalidUID', 'message' => 'Specified UID is not valid.', 'http_code' => 400, 'description' => '指定的UID无效'],
        ['code' => 'InvalidUserId.NotSupport', 'message' => 'The user ID has no permission.', 'http_code' => 400, 'description' => '当前用户没有操作权限'],
        ['code' => 'InvalidUserId.NotSupport', 'message' => 'The user has no permission.', 'http_code' => 400, 'description' => '该用户没有权限。'],
        ['code' => 'InvalidVpcId.NotSupport', 'message' => 'The VPC ID is invalid.', 'http_code' => 400, 'description' => 'VpcID错误.'],
        ['code' => 'IO.Exception', 'message' => 'An IO exception occurred. Please try again later.', 'http_code' => 400, 'description' => '数据传输出错,稍后重试'],
        ['code' => 'MissingParameter.ResourceIds', 'message' => 'The parameter - ResourceIds.N should not be null.', 'http_code' => 400, 'description' => '资源ID列表不能为空'],
        ['code' => 'MissingUID', 'message' => 'You must specify UID.', 'http_code' => 400, 'description' => '缺少参数uid'],
        ['code' => 'MissingUserID', 'message' => 'You must specify user ID.', 'http_code' => 400, 'description' => '缺少参数user_id'],
        ['code' => 'NoPermission.SystemTag', 'message' => 'The operator is not permission for the system tag', 'http_code' => 400, 'description' => '无法对系统标签进行操作。'],
        ['code' => 'NumberExceed.ResourceIds', 'message' => 'The maximum number of ResourceIds is exceeded.', 'http_code' => 400, 'description' => '参数“资源ID”的数量过多'],
        ['code' => 'OperationDenied.QuotaExceed', 'message' => 'The Tags parameter number is exceed. Valid is 20.', 'http_code' => 400, 'description' => '单个资源的用户标签数量过多,不能超过20。'],
        ['code' => 'OperationDenied.Resource', 'message' => 'The current instance type is insufficient. Select another instance type', 'http_code' => 400, 'description' => '当前规格库存不足,请选择其他规格购买。'],
        ['code' => 'ParamGroupsDbTypeError', 'message' => 'The instance does not match the specified parameter group.', 'http_code' => 400, 'description' => '该实例与该参数模板不匹配'],
        ['code' => 'ParamGroupsDbTypeNotSupport', 'message' => 'The parameter group does not support the specified database type.', 'http_code' => 400, 'description' => '参数模板暂不支持该数据库类型'],
        ['code' => 'ParamGroupsDbVersionNotSupport', 'message' => 'The parameter group does not support the database version.', 'http_code' => 400, 'description' => '参数模板暂不支持该数据库版本'],
        ['code' => 'ParamGroupsDescInvalid', 'message' => 'The maximum length of parameter group description is exceeded.', 'http_code' => 400, 'description' => '参数模板描述内容过长'],
        ['code' => 'ParamGroupsNameInvalid', 'message' => 'The specified parameter group name is invalid.', 'http_code' => 400, 'description' => '不合规的参数模板名称'],
        ['code' => 'ParamGroupsNameInvalid', 'message' => 'The parameter group name is invalid.', 'http_code' => 400, 'description' => '参数模板名称不合法'],
        ['code' => 'ParamGroupsNotExist', 'message' => 'The specified paramGroups does not exist.', 'http_code' => 400, 'description' => '参数模板不存在'],
        ['code' => 'ParamGroupsNotExistOrTypeNotSupport', 'message' => 'The parameter group does not exist or its type is not supported.', 'http_code' => 400, 'description' => '参数模板不存在或参数模板类型不支持'],
        ['code' => 'ParamGroupsNotExistOrTypeNotSupport', 'message' => 'The paramGroups does not exist or its type is not supported.', 'http_code' => 400, 'description' => '参数模板不存在或与实例不匹配'],
        ['code' => 'Permission.NotSupport', 'message' => 'You are not authorized to perform this action.', 'http_code' => 403, 'description' => '不允许操作'],
        ['code' => 'Permission.NotSupport', 'message' => 'The user permission does not support the operation.', 'http_code' => 403, 'description' => '权限不支持当前操作'],
        ['code' => 'StsTokenCreateError', 'message' => 'The role does not exist for the entity.', 'http_code' => 400, 'description' => '实体不存在角色'],
        ['code' => 'Tag.InvalidTagsParameter', 'message' => 'The parameter Tags is invalid.', 'http_code' => 400, 'description' => '参数tags格式非法'],
        ['code' => 'TaskHasExist', 'message' => 'The task already exists.', 'http_code' => 400, 'description' => '该任务已经存在。'],
        ['code' => 'Your payment method is invalid. Please contact our technical support team or submit a ticket.', 'message' => 'No payment method is specified for your account. Please contact your Customer Manager or open a ticket.', 'http_code' => 400, 'description' => '您当前的支付方式异常,请联系客户经理或提交工单处理。'],
    ],
    'changeSet' => [
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-11-27T06:54:42.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-11-22T06:06:34.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-11-21T12:55:25.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-09-07T15:14:11.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-09-07T15:01:15.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-08-14T13:40:26.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2023-08-11T14:45:00.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-11-23T08:47:11.000Z',
            'description' => '放开ImageId参数',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-11-15T08:57:29.000Z',
            'description' => '支持Weekly的售卖,且增加password等参数的透传',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-09-19T08:39:36.000Z',
            'description' => '修复CreateMyBase OpenAPI',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-09-19T03:44:05.000Z',
            'description' => '优化CreateMyBase 中OpenAPIExplorer的参数展示',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'DescribeDedicatedHostDisks'],
                ['description' => '请求参数发生变更', 'api' => 'DescribeDedicatedHostDisks'],
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHosts'],
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHosts'],
                ['description' => '请求参数发生变更', 'api' => 'ModifyDedicatedHostAttribute'],
                ['description' => '请求参数发生变更', 'api' => 'ModifyDedicatedHostAttribute'],
                ['description' => '请求参数发生变更', 'api' => 'ModifyDedicatedHostClass'],
                ['description' => '请求参数发生变更', 'api' => 'ModifyDedicatedHostClass'],
                ['description' => '请求参数发生变更', 'api' => 'QueryHostInstanceConsoleInfo'],
                ['description' => '请求参数发生变更', 'api' => 'QueryHostInstanceConsoleInfo'],
            ],
            'createdAt' => '2022-09-13T12:37:07.000Z',
            'description' => 'openapi必填参数调整',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-09-01T09:36:40.000Z',
            'description' => '调整返回值名称',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-09-01T08:07:36.000Z',
            'description' => '增加返回值,返回ecs实例id',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-09-01T02:21:01.000Z',
            'description' => '调整MyBaseOpenAPI文档',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateMyBase'],
            ],
            'createdAt' => '2022-08-26T07:20:34.000Z',
            'description' => '调整必填参数',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateDedicatedHost'],
            ],
            'createdAt' => '2022-07-07T01:59:38.000Z',
            'description' => 'hostname修改为不公开',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更', 'api' => 'CreateDedicatedHost'],
            ],
            'createdAt' => '2022-03-18T09:11:33.000Z',
            'description' => 'region必填',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHostGroups'],
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHosts'],
            ],
            'createdAt' => '2022-03-01T16:04:19.000Z',
            'description' => '私有变更',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更、响应参数发生变更', 'api' => 'DescribeDedicatedHostAttribute'],
            ],
            'createdAt' => '2022-02-15T03:26:39.000Z',
            'description' => '新增错误码',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHosts'],
            ],
            'createdAt' => '2022-01-21T06:07:30.000Z',
            'description' => '增加主机分布标签',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHosts'],
            ],
            'createdAt' => '2021-12-16T13:59:48.000Z',
            'description' => '无',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更', 'api' => 'CreateDedicatedHostAccount'],
            ],
            'createdAt' => '2021-12-14T04:02:31.000Z',
            'description' => '增加错误码InvalidAction.NotSupport',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更、请求参数发生变更', 'api' => 'CreateDedicatedHost'],
            ],
            'createdAt' => '2021-12-14T03:59:05.000Z',
            'description' => '增加错误码',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更', 'api' => 'DescribeHostEcsLevelInfo'],
                ['description' => '错误码发生变更', 'api' => 'DescribeMyBaseHostOverView'],
                ['description' => '错误码发生变更', 'api' => 'DescribeMyBaseInstanceOverView'],
                ['description' => '错误码发生变更', 'api' => 'QueryHostInstanceConsoleInfo'],
            ],
            'createdAt' => '2021-12-07T15:35:53.000Z',
            'description' => '适配错误码',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更', 'api' => 'CreateDedicatedHost'],
            ],
            'createdAt' => '2021-12-01T09:27:02.000Z',
            'description' => '新增资源不足错误',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ListTagResources'],
            ],
            'createdAt' => '2021-11-18T05:37:11.000Z',
            'description' => '简化',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更、请求参数发生变更', 'api' => 'DescribeDedicatedHosts'],
                ['description' => 'OpenAPI 下线', 'api' => 'DescribeDedicatedHostTags'],
                ['description' => 'OpenAPI 下线', 'api' => 'ListTagResources'],
                ['description' => 'OpenAPI 下线', 'api' => 'TagResources'],
                ['description' => 'OpenAPI 下线', 'api' => 'UntagResources'],
            ],
            'createdAt' => '2021-11-03T13:41:26.000Z',
            'description' => '内部api升级',
        ],
        [
            'apis' => [
                ['description' => '请求参数发生变更、错误码发生变更', 'api' => 'DescribeAvailableDedicatedHostClasses'],
                ['description' => '请求参数发生变更', 'api' => 'DescribeHostEcsLevelInfo'],
            ],
            'createdAt' => '2021-11-03T13:41:06.000Z',
            'description' => '接口升级 测试OpenApi',
        ],
        [
            'apis' => [
                ['description' => '响应参数发生变更', 'api' => 'DescribeDedicatedHostHealth'],
            ],
            'createdAt' => '2021-10-13T09:51:26.000Z',
            'description' => 'HostEvents平铺展示',
        ],
        [
            'apis' => [
                ['description' => '错误码发生变更、请求参数发生变更、响应参数发生变更', 'api' => 'DescribeHostEcsLevelInfo'],
            ],
            'createdAt' => '2021-09-08T07:13:57.000Z',
            'description' => '线上未使用的接口DescribeHostEcsLevelInfo重构优化上线',
        ],
    ],
    'flowControl' => [
        'flowControlList' => [
            ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListTagResources'],
            ['threshold' => '-1', 'countWindow' => 1, 'regionId' => '*'],
            ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UntagResources'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHostGroups'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHostAccount'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHost'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DeleteDedicatedHostAccount'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DeleteDedicatedHostGroup'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateMyBase'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostGroupAttribute'],
            ['threshold' => '200', 'countWindow' => 60, 'regionId' => '*', 'api' => 'QueryHostInstanceConsoleInfo'],
            ['threshold' => '400', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeRegions'],
            ['threshold' => '200', 'countWindow' => 60, 'regionId' => '*', 'api' => 'QueryHostBaseInfoByInstance'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ReplaceDedicatedHost'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostAccount'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHosts'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostAttribute'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'CreateDedicatedHostGroup'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyDedicatedHostPassword'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'RestartDedicatedHost'],
            ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'TagResources'],
            ['threshold' => '100', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeDedicatedHostAttribute'],
        ],
    ],
    'ram' => [
        'productCode' => 'CDDC',
        'productName' => '云数据库专属集群',
        'ramCodes' => ['cddc'],
        'ramLevel' => '操作级',
        'ramConditions' => [],
        'ramActions' => [
            [
                'apiName' => 'ReplaceDedicatedHost',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ReplaceDedicatedHost',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribePrinsInstance',
                'description' => '获取纳管实例详情',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribePrinsInstance',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeHostEcsLevelInfo',
                'description' => '查询主机规格详细信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeHostEcsLevelInfo',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateDedicatedHostGroup',
                'description' => '创建专属集群',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:CreateDedicatedHostGroup',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddPrinsInstance',
                'description' => '添加纳管实例',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:AddPrinsInstance',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeHostWebShell',
                'description' => '获取专属集群主机 Webshell 登录地址',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeHostWebShell',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'UntagResources',
                'description' => '将主机的标签解绑',
                'operationType' => 'delete',
                'ramAction' => [
                    'action' => 'cddc:UntagResources',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListTagResources',
                'description' => '调用 ListTagResources 查询主机和标签的绑定关系',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:ListTagResources',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeDedicatedHostGroups',
                'description' => '查询专属集群主机组信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeDedicatedHostGroups',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'TagResources',
                'description' => '为一个或多个主机绑定标签',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:TagResources',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'RestartDedicatedHost',
                'description' => '重启专属集群的主机',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:RestartDedicatedHost',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteDedicatedHostGroup',
                'description' => '删除专属集群',
                'operationType' => 'delete',
                'ramAction' => [
                    'action' => 'cddc:DeleteDedicatedHostGroup',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'QueryHostInstanceConsoleInfo',
                'description' => '查询主机实例节点列表',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:QueryHostInstanceConsoleInfo',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribePrinsBackupPlan',
                'description' => '查询备份计划详情',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribePrinsBackupPlan',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ModifyDedicatedHostGroupAttribute',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ModifyDedicatedHostGroupAttribute',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeDedicatedHosts',
                'description' => '查询专属集群的主机信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeDedicatedHosts',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteDedicatedHostAccount',
                'description' => '',
                'operationType' => 'delete',
                'ramAction' => [
                    'action' => 'cddc:DeleteDedicatedHostAccount',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListPrinsParams',
                'description' => '查询数据库参数列表',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:ListPrinsParams',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateMyBase',
                'description' => 'CreateMyBase',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:CreateMyBase',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateDedicatedHostAccount',
                'description' => '创建专用主机帐户',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:CreateDedicatedHostAccount',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ModifyDedicatedHostAccount',
                'description' => '修改专属集群主机账号',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ModifyDedicatedHostAccount',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeRegions',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeRegions',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreatePrinsBackupPlan',
                'description' => '创建备份计划',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:CreatePrinsBackupPlan',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateDedicatedHost',
                'description' => '添加专属集群主机',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'cddc:CreateDedicatedHost',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListPrinsInstances',
                'description' => '查询纳管实例列表',
                'operationType' => 'list',
                'ramAction' => [
                    'action' => 'cddc:ListPrinsInstances',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeDedicatedHostAttribute',
                'description' => '查询专属集群某个主机的参数信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeDedicatedHostAttribute',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribeDedicatedHostDisks',
                'description' => '查询主机上的磁盘信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:DescribeDedicatedHostDisks',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetPrinsMetricsList',
                'description' => '获取实例性能指标',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:GetPrinsMetricsList',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ModifyDedicatedHostAttribute',
                'description' => '设置专属集群的主机是否允许分配实例',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ModifyDedicatedHostAttribute',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListPrinsSQLErrorLog',
                'description' => '查询数据库错误日志',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:ListPrinsSQLErrorLog',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ModifyDedicatedHostClass',
                'description' => '升配主机的规格',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ModifyDedicatedHostClass',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ModifyDedicatedHostPassword',
                'description' => '修改专属主机密码',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'cddc:ModifyDedicatedHostPassword',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'QueryHostBaseInfoByInstance',
                'description' => '查看实例所在主机基本信息',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:QueryHostBaseInfoByInstance',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetPrinsEventList',
                'description' => '获取实例事件列表',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'cddc:GetPrinsEventList',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DescribePrinsEcsInstances',
                'description' => '查询 ECS 实例列表',
                'operationType' => 'list',
                'ramAction' => [
                    'action' => 'cddc:DescribePrinsEcsInstances',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'CDDC', 'resourceType' => '全部资源', 'arn' => '*'],
                    ],
                ],
            ],
        ],
        'resourceTypes' => [],
    ],
];