summaryrefslogtreecommitdiff
path: root/data/en_us/amqp-open/2019-12-12/api-docs.php
blob: 5749c31accf405aa3c62296e66e688b201872229 (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
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'RPC', 'product' => 'amqp-open', 'version' => '2019-12-12'],
    'directories' => [
        [
            'children' => ['CreateInstance', 'GetInstance', 'UpdateInstance', 'UpdateInstanceName', 'GetMetadataAmount', 'ListInstances', 'AddInstanceWhiteList', 'ListInstanceWhiteList', 'RemoveInstanceWhiteList'],
            'type' => 'directory',
            'title' => 'Instances',
        ],
        [
            'children' => ['CreateVirtualHost', 'DeleteVirtualHost', 'ListVirtualHosts'],
            'type' => 'directory',
            'title' => 'Vhost',
        ],
        [
            'children' => ['CreateQueue', 'DeleteQueue', 'ListQueueConsumers', 'ListQueues', 'ListQueueUpStreamBindings'],
            'type' => 'directory',
            'title' => 'Queue',
        ],
        [
            'children' => ['CreateExchange', 'DeleteExchange', 'ListDownStreamBindings', 'ListExchanges', 'ListExchangeUpStreamBindings'],
            'type' => 'directory',
            'title' => 'Exchange',
        ],
        [
            'children' => ['CreateBinding', 'DeleteBinding', 'ListBindings'],
            'type' => 'directory',
            'title' => 'Binding',
        ],
        [
            'children' => ['CreateAccount', 'DeleteAccount', 'ListAccounts'],
            'type' => 'directory',
            'title' => 'Static username and password',
        ],
        [
            'children' => ['CreateOpenSourceAccount', 'CreateOpenSourcePermission', 'DeleteOpenSourceAccount', 'DeleteOpenSourcePermission', 'ListOpenSourceAccounts', 'ListOpenSourcePermissions', 'UpdateInstanceServerlessSwitch', 'UpdateOpenSourceAccount', 'UpdateOpenSourcePermission'],
            'title' => 'Others',
            'type' => 'directory',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'AddInstanceWhiteList' => [
            'summary' => 'Adds an entry to the whitelist of an instance.',
            'path' => '',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the instance receiving the whitelist entry.', 'type' => 'string', 'required' => true, 'example' => 'rabbitmq-cn-xxx', 'title' => ''],
                ],
                [
                    'name' => 'WhiteListItem',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'type' => 'array',
                        'items' => ['description' => 'The value of the whitelist entry. For an IP address whitelist, specify a CIDR block and set the `WhiteListType` parameter to `2`. For a VPC whitelist, specify a VPC ID and set the `WhiteListType` parameter to `1`.', 'type' => 'string', 'required' => true, 'example' => '172.0.0.20/30', 'title' => ''],
                        'required' => true,
                        'title' => '',
                        'description' => 'The IP addresses or VPC IDs to add to the whitelist. Specify IP addresses as CIDR blocks.',
                        'example' => '172.0.0.20/30',
                    ],
                ],
                [
                    'name' => 'WhiteListType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The type of the whitelist. Set this parameter to `2` if `WhiteListItem` contains IP addresses, or to `1` if it contains VPC IDs.'."\n"
                            ."\n"
                            .'You can add a VPC whitelist only to instances that have an `anytunnel` VPC endpoint. Newer instances use the `privateLink` endpoint type, which does not support this feature.',
                        'type' => 'integer',
                        'format' => 'int32',
                        'required' => true,
                        'example' => '2',
                        'enum' => ['1', '2'],
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '8BFB1C9D-08A2-4859-A47C-403C9EFA2***'],
                            'Code' => ['description' => 'The status code. A value of `200` indicates a successful request.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The message returned with the response. This is typically an error message if the request fails.', 'type' => 'string', 'example' => 'The specified parameter \'[\\"vpc-xxx\\"]\' is not valid', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => ['description' => 'Data returned by the operation.', 'type' => 'any', 'example' => 'true', 'title' => ''],
                            'StatusCode' => ['description' => 'The HTTP status code for the response. A value of `200` indicates success.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'description' => 'The result of the API request.',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'AddInstanceWhiteList',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"8BFB1C9D-08A2-4859-A47C-403C9EFA2***\\",\\n  \\"Code\\": \\"200\\",\\n  \\"Message\\": \\"The specified parameter \'[\\\\\\\\\\\\\\"vpc-xxx\\\\\\\\\\\\\\"]\' is not valid\\",\\n  \\"Success\\": true,\\n  \\"Data\\": \\"true\\",\\n  \\"StatusCode\\": \\"200\\"\\n}","type":"json"}]',
        ],
        'CreateAccount' => [
            'summary' => 'When an open-source client accesses an ApsaraMQ for RabbitMQ server, it must provide a username and password for authentication. ApsaraMQ for RabbitMQ lets you generate a username and password from an AccessKey ID and AccessKey secret provided by Resource Access Management (RAM).',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '164698',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
                'tenantRelevance' => 'publicInformation',
            ],
            'parameters' => [
                [
                    'name' => 'instanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance. This specifies the instance for which you want to create a static username and password.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-*********', 'title' => ''],
                ],
                [
                    'name' => 'accountAccessKey',
                    'in' => 'query',
                    'schema' => ['description' => 'The AccessKey ID of your Alibaba Cloud account or RAM user. For more information about how to obtain an AccessKey ID, see [Create an AccessKey](~~116401~~).'."\n"
                        ."\n"
                        .'> If you use the AccessKey of a RAM user to create a static username and password to access ApsaraMQ for RabbitMQ and to send and receive messages, make sure that the RAM user is granted the required permissions. For more information, see [RAM access policies](~~146559~~).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'yourAccessKeyID', 'title' => ''],
                ],
                [
                    'name' => 'userName',
                    'in' => 'query',
                    'schema' => ['description' => 'The static username that you want to create.'."\n"
                        ."\n"
                        .'The value of this parameter is a Base64-encoded string that is constructed from the instance ID and the AccessKey ID. For more information about how to calculate the value, see the **Username calculation sample code** section in this topic.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'Mjo****************', 'title' => ''],
                ],
                [
                    'name' => 'signature',
                    'in' => 'query',
                    'schema' => ['description' => 'The signature. The system calculates the static password based on the signature, the AccessKey secret signature, and the username.'."\n"
                        ."\n"
                        .'The signature is calculated using the HmacSHA1 algorithm on the creation timestamp of the specified username and the AccessKey ID. For more information about how to calculate the signature, see the **Signature algorithm sample code** section in this topic.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '22c2d7d1769cb53c5a6d9213248e2de524******', 'title' => ''],
                ],
                [
                    'name' => 'createTimestamp',
                    'in' => 'query',
                    'schema' => ['description' => 'The timestamp that indicates when the username and password are created. Unit: milliseconds.'."\n"
                        ."\n"
                        .'> This timestamp is used to calculate the static password. You can customize this value. This is not the timestamp that the system generates when the username and password are created.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'docRequired' => true, 'example' => '1671175303522', 'title' => ''],
                ],
                [
                    'name' => 'secretSign',
                    'in' => 'query',
                    'schema' => ['description' => 'The signature of the AccessKey secret. The system calculates the static password based on the signature, the AccessKey secret signature, and the username.'."\n"
                        ."\n"
                        .'The AccessKey secret signature is calculated using the HmacSHA1 algorithm on the creation timestamp of the specified username and the AccessKey ID. For more information about how to calculate the signature, see the **Signature algorithm sample code** section in this topic.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '4c1a6367ce4c4255e9617326f9133ac635******', 'title' => ''],
                ],
                [
                    'name' => 'Remark',
                    'in' => 'query',
                    'schema' => ['description' => 'The remarks on the static user.', 'type' => 'string', 'example' => '*** environment', 'title' => '', 'required' => false],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'The returned result.',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => [
                                'title' => 'Id of the request',
                                'description' => 'The request ID.',
                                'enumValueTitles' => [],
                                'type' => 'string',
                                'example' => 'FEBA5E0C-50D0-4FA6-A794-4901E5465***',
                            ],
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the request was successful.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'AccessKey' => ['description' => 'The AccessKey ID that is used to create the username and password.', 'type' => 'string', 'example' => 'LTAI****************', 'title' => ''],
                                    'Password' => ['description' => 'The created static password.', 'type' => 'string', 'example' => 'OUYwQzM2QjZBRkUxNDRFM***************MzZCNzdDQzoxNjcxNDMwMzkyODI1', 'title' => ''],
                                    'CreateTimeStamp' => ['description' => 'The timestamp when the username and password were created. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1671175303522', 'title' => ''],
                                    'InstanceId' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'example' => 'amqp-cn-*********', 'title' => ''],
                                    'MasterUId' => ['description' => 'The ID of the Alibaba Cloud account or RAM user that owns the AccessKey. The AccessKey is used to create the static username and password.', 'type' => 'integer', 'format' => 'int64', 'example' => '1565***********01', 'title' => ''],
                                    'UserName' => ['description' => 'The created static username.', 'type' => 'string', 'example' => 'MjphbXFwLWNuLXVxbTJ6cjc2djAwMzpMVEFJNX*******ZNMWVSWnRFSjZ2Zm8=', 'title' => ''],
                                    'Remark' => ['description' => 'The remarks.', 'type' => 'string', 'example' => '*** environment', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"FEBA5E0C-50D0-4FA6-A794-4901E5465***\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"AccessKey\\": \\"LTAI****************\\",\\n    \\"Password\\": \\"OUYwQzM2QjZBRkUxNDRFM***************MzZCNzdDQzoxNjcxNDMwMzkyODI1\\",\\n    \\"CreateTimeStamp\\": 1671175303522,\\n    \\"InstanceId\\": \\"amqp-cn-*********\\",\\n    \\"MasterUId\\": 0,\\n    \\"UserName\\": \\"MjphbXFwLWNuLXVxbTJ6cjc2djAwMzpMVEFJNX*******ZNMWVSWnRFSjZ2Zm8=\\",\\n    \\"Remark\\": \\"*** environment\\"\\n  }\\n}","type":"json"}]',
            'title' => 'CreateAccount',
            'description' => '### Background information'."\n"
                ."\n"
                .'When an open-source client accesses an ApsaraMQ for RabbitMQ server, it must provide a username and password for authentication. The client can access the server after the authentication is successful. ApsaraMQ for RabbitMQ lets you generate a username and password from an AccessKey ID and AccessKey secret provided by RAM.'."\n"
                ."\n"
                .'### Notes'."\n"
                ."\n"
                .'- The instance for which you create a static username and password must be in the In Service state.'."\n"
                ."\n"
                .'- An AccessKey and a static username and password have a one-to-one mapping within an instance. This means you can create only one static username and password for each AccessKey in an instance.'."\n"
                ."\n"
                .'- To update a static username and password, delete the existing one and create a new one.'."\n"
                ."\n"
                .'### Username calculation sample code'."\n"
                ."\n"
                .'The value of the userName request parameter is a Base64-encoded string. This string is constructed from the instance ID and the AccessKey ID. The following sample code shows how to calculate the value:'."\n"
                ."\n"
                .'```'."\n"
                .'import java.nio.charset.Charset;'."\n"
                .'import java.nio.charset.StandardCharsets;'."\n"
                .'import java.util.Base64;'."\n"
                ."\n"
                .'public class Base64Utils {'."\n"
                .'    public static final Charset UTF8 = StandardCharsets.UTF_8;'."\n"
                ."\n"
                .'    /**'."\n"
                .'     * Decode a Base64 string'."\n"
                .'     *'."\n"
                .'     * @param str'."\n"
                .'     * @return'."\n"
                .'     */'."\n"
                .'    public static String decode(String str) {'."\n"
                .'        return new String(Base64.getDecoder().decode(str.getBytes(UTF8)), UTF8);'."\n"
                .'    }'."\n"
                ."\n"
                .'    public static String encode(String bytes) {'."\n"
                .'        return new String(Base64.getEncoder().encode(bytes.getBytes(UTF8)), UTF8);'."\n"
                .'    }'."\n"
                ."\n"
                .'    public static void main(String[] args) {'."\n"
                .'        // Construct a string from your instance ID and the AccessKey ID of the account that was used to purchase the instance.'."\n"
                .'        String str = "2:${instanceId}:${ak}";'."\n"
                ."\n"
                .'        // Generate the userName for the API call.'."\n"
                .'        String userName = encode(str);'."\n"
                .'        System.out.println("userName=" + userName);'."\n"
                ."\n"
                .'        String decodeStr = decode(userName);'."\n"
                .'        System.out.println("originStr=" + decodeStr);'."\n"
                .'    }'."\n"
                .'}'."\n"
                .'```'."\n"
                ."\n"
                .'### Signature algorithm sample code'."\n"
                ."\n"
                .'The values of the signature and secretSign request parameters are calculated using an encryption algorithm. The algorithm uses the creation timestamp of the static username and the AccessKey secret. The following sample code shows the algorithm:'."\n"
                ."\n"
                .'```'."\n"
                .'import javax.crypto.Mac;'."\n"
                .'import javax.crypto.spec.SecretKeySpec;'."\n"
                .'import java.security.InvalidKeyException;'."\n"
                .'import java.security.NoSuchAlgorithmException;'."\n"
                ."\n"
                .'public class SignatureUtils {'."\n"
                ."\n"
                .'    public static String hamcsha1(byte[] data, byte[] key) throws NoSuchAlgorithmException, InvalidKeyException {'."\n"
                .'        SecretKeySpec signingKey = new SecretKeySpec(key, "HmacSHA1");'."\n"
                .'        Mac mac = Mac.getInstance("HmacSHA1");'."\n"
                .'        mac.init(signingKey);'."\n"
                .'        return byte2hex(mac.doFinal(data));'."\n"
                .'    }'."\n"
                ."\n"
                .'    public static String byte2hex(byte[] b) {'."\n"
                .'        StringBuilder hs = new StringBuilder();'."\n"
                .'        String stmp;'."\n"
                .'        for (int n = 0; b != null && n < b.length; n++) {'."\n"
                .'            stmp = Integer.toHexString(b[n] & 0XFF);'."\n"
                .'            if (stmp.length() == 1) {'."\n"
                .'                hs.append(\'0\');'."\n"
                .'            }'."\n"
                .'            hs.append(stmp);'."\n"
                .'        }'."\n"
                .'        return hs.toString().toUpperCase();'."\n"
                .'    }'."\n"
                ."\n"
                .'    public static void main(String[] args) throws InvalidKeyException, NoSuchAlgorithmException {'."\n"
                .'        // createTimestamp is the createTimestamp parameter of the API.'."\n"
                .'        String createTimestamp = String.valueOf(System.currentTimeMillis());'."\n"
                .'        System.out.println("timestamp:" + createTimestamp);'."\n"
                ."\n"
                .'        // The AccessKey secret of your account.'."\n"
                .'        String sk = "${sk}";'."\n"
                ."\n"
                .'        // Generate the SecretSign for the API call.'."\n"
                .'        String SecretSign = hamcsha1(sk.getBytes(), createTimestamp.getBytes());'."\n"
                .'        System.out.println("SecretSign:" + SecretSign);'."\n"
                ."\n"
                .'        // Generate the signature for the API call.'."\n"
                .'        String signature = hamcsha1(createTimestamp.getBytes(), sk.getBytes());'."\n"
                .'        System.out.println("signature:" + signature);'."\n"
                .'    }'."\n"
                .'}'."\n"
                .'```',
            'extraInfo' => '### 控制台操作'."\n"
                .'除了调用**CreateAccount**接口,您还可以通过云消息队列 RabbitMQ 版控制台创建静态用户名密码。具体操作,请参见[静态用户名密码管理](~~184399~~)。',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateAccount'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:FetchStaticAccount',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'translator' => 'manual',
        ],
        'CreateBinding' => [
            'summary' => 'A producer sends a message to an exchange, which then routes the message to a specified queue or another exchange based on the binding and routing rules.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '58722',
                'abilityTreeNodes' => ['FEATUREons5ZTT5D'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost. The vhost must be created in the console. Both `DestinationName` and `SourceExchange` must belong to this vhost.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'SourceExchange',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the source exchange. This exchange must be created in the console.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'NormalEX', 'title' => ''],
                ],
                [
                    'name' => 'DestinationName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the binding destination. The destination must be created in the console. It must belong to the same vhost as `SourceExchange`. The `VirtualHost` parameter specifies the vhost.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoQueue', 'title' => ''],
                ],
                [
                    'name' => 'BindingKey',
                    'in' => 'formData',
                    'schema' => ['description' => 'The binding key.'."\n"
                        ."\n"
                        .'- If the source exchange is not a topic exchange:'."\n"
                        ."\n"
                        .'  - It can contain letters, digits, hyphens (-), underscores (\\_), periods (.), forward slashes (/), and at signs (@).'."\n"
                        ."\n"
                        .'  - The length must be 1 to 255 characters.'."\n"
                        ."\n"
                        .'- If the source exchange is a topic exchange:'."\n"
                        ."\n"
                        .'  - It can contain letters, digits, hyphens (-), underscores (\\_), asterisks (\\*), periods (.), number signs (#), forward slashes (/), and at signs (@).'."\n"
                        ."\n"
                        .'  - The key cannot start or end with a period (.). If the key starts with a number sign (#) or an asterisk (\\*), a period (.) must immediately follow. If the key ends with a number sign (#) or an asterisk (\\*), a period (.) must immediately precede it. If a number sign (#) or an asterisk (\\*) is in the middle of the key, it must have a period (.) on both sides.'."\n"
                        ."\n"
                        .'  - The length must be 1 to 255 characters.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => '.test', 'title' => ''],
                ],
                [
                    'name' => 'BindingType',
                    'in' => 'formData',
                    'schema' => ['description' => 'The type of the destination object. Valid values:'."\n"
                        ."\n"
                        .'- 0: Queue'."\n"
                        ."\n"
                        .'- 1: Exchange', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '0', 'title' => ''],
                ],
                [
                    'name' => 'Argument',
                    'in' => 'formData',
                    'schema' => ['description' => 'The key-value pairs for the message header attributes. The message header attributes consist of one or more key-value pairs. The x-match attribute is required. Other attributes are custom. The x-match attribute supports the following values:'."\n"
                        ."\n"
                        .'- all: This is the default value. All key-value pairs in the message header must match.'."\n"
                        ."\n"
                        .'- any: At least one key-value pair in the message header must match.'."\n"
                        ."\n"
                        .'Separate attributes with semicolons (;) and separate keys from values with colons (:). Example: x-match:all;type:report;format:pdf'."\n"
                        .'This parameter is valid only for headers exchanges. For other types of exchanges, this parameter is ignored.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => 'x-match:all;type:report;format:pdf ', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '09768C14-E51C-4F4A-8077-30810032C***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateBinding',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateBinding'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:GetExchange',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#vhostName}/queues/*'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:CreateExchange', 'validationType' => 'conditional'],
                        ['action' => 'amqp:CreateQueue'],
                        ['action' => 'amqp:GetVhost'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"09768C14-E51C-4F4A-8077-30810032C***\\"\\n}","type":"json"}]',
        ],
        'CreateExchange' => [
            'summary' => 'A producer sends a message to an exchange. The exchange then routes the message to one or more queues based on the routing key and the binding key, or discards the message.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsUA0VH5'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost to which the exchange belongs.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'ExchangeName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the exchange. Note:'."\n"
                        ."\n"
                        .'- The name can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@). The name must be 1 to 255 characters in length.'."\n"
                        ."\n"
                        .'- The name of an exchange cannot be changed after the exchange is created. To change the name, delete the exchange and create a new one.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoExchange', 'title' => ''],
                ],
                [
                    'name' => 'ExchangeType',
                    'in' => 'formData',
                    'schema' => [
                        'description' => 'The type of the exchange. Valid values:'."\n"
                            ."\n"
                            .'- **DIRECT**: This routing rule type routes messages to a queue whose binding key exactly matches the routing key of the message.'."\n"
                            ."\n"
                            .'- **TOPIC**: This type is similar to the DIRECT type. It routes messages to bound queues using routing key pattern matching and string comparison.'."\n"
                            ."\n"
                            .'- **FANOUT**: This routing rule type is simple. It routes all messages sent to the exchange to all queues that are bound to the exchange. This works like a broadcast feature.'."\n"
                            ."\n"
                            .'- **HEADERS**: This type is similar to the DIRECT type. It uses header properties instead of a routing key for routing. When a queue is bound to a headers exchange, key-value pairs are defined for the binding. When a message is sent to the exchange, key-value pairs are defined in the message header. The exchange routes the message by comparing the key-value pairs in the header with the key-value pairs of the binding.',
                        'type' => 'string',
                        'required' => true,
                        'docRequired' => true,
                        'enum' => ['DIRECT', 'TOPIC', 'FANOUT', 'HEADERS', 'X_JMS_TOPIC', 'X_DELAYED_MESSAGE', 'X_CONSISTENT_HASH'],
                        'example' => 'DIRECT',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'XDelayedType',
                    'in' => 'formData',
                    'schema' => [
                        'description' => 'An x-delayed-message exchange lets you use the x-delay header property to specify a delivery delay for a message in milliseconds. The routing rule for the delayed message is determined by the exchange type that you specify for the XDelayedType parameter. This parameter sets the actual exchange type to which the message is delivered after the delay. Valid values:'."\n"
                            ."\n"
                            .'- **DIRECT**: Delivers the delayed message to the specified queue that is bound to a DIRECT exchange.'."\n"
                            ."\n"
                            .'- **TOPIC**: Delivers the delayed message to queues that are bound to a TOPIC exchange.'."\n"
                            ."\n"
                            .'- **FANOUT**: Delivers the delayed message to queues that are bound to a FANOUT exchange.'."\n"
                            ."\n"
                            .'- **HEADERS**: Delivers the delayed message to queues that are bound to a HEADERS exchange.'."\n"
                            ."\n"
                            .'- **X-JMS-TOPIC**: Delivers the delayed message to queues that are bound to an X-JMS-TOPIC exchange.',
                        'type' => 'string',
                        'enum' => ['DIRECT', 'TOPIC', 'FANOUT', 'HEADERS', 'X_JMS_TOPIC'],
                        'required' => false,
                        'example' => 'DIRECT',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'AutoDeleteState',
                    'in' => 'formData',
                    'schema' => ['description' => 'Specifies whether to automatically delete the exchange. Valid values:'."\n"
                        ."\n"
                        .'- **true**: Yes. The exchange is automatically deleted after the last queue is unbound from it.'."\n"
                        ."\n"
                        .'- **false**: No. The exchange is not automatically deleted after the last queue is unbound from it.', 'type' => 'boolean', 'required' => true, 'docRequired' => true, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'Internal',
                    'in' => 'formData',
                    'schema' => ['description' => 'Specifies whether the exchange is an internal exchange. Valid values:'."\n"
                        ."\n"
                        .'- **false**: No'."\n"
                        ."\n"
                        .'- **true**: Yes', 'type' => 'boolean', 'required' => true, 'docRequired' => true, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'AlternateExchange',
                    'in' => 'formData',
                    'schema' => ['description' => 'The alternate exchange. Configure an alternate exchange to receive messages that fail to be routed.', 'type' => 'string', 'required' => false, 'example' => 'DemoAE', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '021788F6-E50C-4BD6-9F80-66B0A19A****', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateExchange',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateExchange'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:CreateExchange',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/*'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetVhost'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"021788F6-E50C-4BD6-9F80-66B0A19A****\\"\\n}","type":"json"}]',
        ],
        'CreateInstance' => [
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'high',
                'chargeType' => 'paid',
                'abilityTreeCode' => '194334',
                'abilityTreeNodes' => ['FEATUREonsQ3252I'],
            ],
            'parameters' => [
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The client token.', 'type' => 'string', 'example' => 'c2c5d1274axxxxxxxx', 'required' => false],
                ],
                [
                    'name' => 'PaymentType',
                    'in' => 'query',
                    'schema' => [
                        'title' => '',
                        'description' => 'The payment type. Valid values:'."\n"
                            .'- Subscription: subscription'."\n"
                            .'- PayAsYouGo: Serverless.',
                        'enumValueTitles' => ['PayAsYouGo' => 'PayAsYouGo', 'Subscription' => 'Subscription'],
                        'type' => 'string',
                        'required' => true,
                        'example' => 'Subscription',
                        'enum' => ['Subscription', 'PayAsYouGo'],
                    ],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The subscription period. Unit: periodCycle.'."\n"
                        ."\n"
                        .'> This parameter takes effect only when PaymentType is set to Subscription. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'default' => '1', 'required' => false],
                ],
                [
                    'name' => 'PeriodCycle',
                    'in' => 'query',
                    'schema' => [
                        'title' => '',
                        'description' => 'The unit of the subscription period. Valid values:'."\n"
                            .'- Month: month'."\n"
                            .'- Year: year'."\n"
                            ."\n"
                            .'This parameter takes effect only when PaymentType is set to Subscription. Default value: Month.',
                        'enumValueTitles' => ['Month' => 'Month', 'Year' => 'Year'],
                        'type' => 'string',
                        'example' => 'Month',
                        'default' => 'Month',
                        'enum' => ['Month', 'Year', 'M', 'Y'],
                        'required' => false,
                    ],
                ],
                [
                    'name' => 'AutoRenew',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The renewal method. Valid values:'."\n"
                        .'- true: Auto-renewal is enabled.'."\n"
                        .'- false: Manual renewal is required.', 'type' => 'boolean', 'example' => 'false', 'default' => 'false', 'required' => false],
                ],
                [
                    'name' => 'AutoRenewPeriod',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The auto-renewal epoch. Unit: the value of RenewalDurationUnit. Default unit: month.'."\n"
                        ."\n"
                        .'> This parameter takes effect only when AutoRenew is set to true. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'default' => '1', 'required' => false],
                ],
                [
                    'name' => 'RenewStatus',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The renewal status. This parameter is equivalent to autoRenew. Specify only one of the two parameters. Valid values:'."\n"
                        .'- AutoRenewal: auto-renewal is enabled.'."\n"
                        ."\n"
                        .'> Both autoRenew and renewStatus specify the renewal method. If both are specified, renewStatus takes precedence.', 'type' => 'string', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'RenewalDurationUnit',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The unit of the auto-renewal epoch. Valid values:'."\n"
                            .'- Month: month'."\n"
                            .'- Year: year.',
                        'enumValueTitles' => ['Month' => 'Month', 'Year' => 'Year'],
                        'type' => 'string',
                        'required' => false,
                        'example' => 'Month',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'InstanceType',
                    'in' => 'query',
                    'schema' => [
                        'title' => '',
                        'description' => 'The instance type.'."\n"
                            .'Valid values for subscription instances:'."\n"
                            .'- professional: Professional Edition'."\n"
                            .'- enterprise: Enterprise Edition'."\n"
                            .'- vip: Platinum Edition'."\n"
                            ."\n"
                            .'You do not need to specify this parameter for Serverless instances.',
                        'enumValueTitles' => ['enterprise' => 'enterprise', 'vip' => 'vip', 'professional' => 'professional'],
                        'type' => 'string',
                        'required' => false,
                        'example' => 'professional',
                        'enum' => ['professional', 'enterprise', 'vip', 'serverless', 'provisioned'],
                    ],
                ],
                [
                    'name' => 'ServerlessChargeType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The billing type of the Serverless instance. Valid values:'."\n"
                            .'- onDemand: pay-as-you-go.',
                        'type' => 'string',
                        'example' => 'onDemand',
                        'enum' => ['onDemand', 'provisioned'],
                        'required' => false,
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance name. We recommend that the name does not exceed 64 characters in length.', 'type' => 'string', 'required' => false, 'example' => 'amqp-xxxxx', 'title' => ''],
                ],
                [
                    'name' => 'MaxPrivateTps',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The private network TPS traffic. Unit: transactions per second.'."\n"
                        ."\n"
                        .'Configure the settings based on the values provided on the [ApsaraMQ for RabbitMQ buy page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1000'],
                ],
                [
                    'name' => 'SupportEip',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Specifies whether to support public network access. Valid values:'."\n"
                        .'- true: Public network access is supported.'."\n"
                        .'- false: Public network access is not supported.', 'type' => 'boolean', 'example' => 'true', 'default' => 'false', 'required' => false],
                ],
                [
                    'name' => 'MaxEipTps',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The peak public network TPS traffic. Unit: TPS.'."\n"
                        ."\n"
                        .'Configure the settings based on the values provided on the [ApsaraMQ for RabbitMQ buy page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int64', 'example' => '128', 'default' => '128', 'required' => false],
                ],
                [
                    'name' => 'QueueCapacity',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The number of queues.'."\n"
                        ."\n"
                        .'Configure the settings based on the values provided on the [ApsaraMQ for RabbitMQ buy page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1000'],
                ],
                [
                    'name' => 'MaxConnections',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The maximum number of connections.'."\n"
                        ."\n"
                        .'Configure the settings based on the values provided on the [ApsaraMQ for RabbitMQ buy page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '50000'],
                ],
                [
                    'name' => 'StorageSize',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The message storage space. Unit: GB. Valid values:'."\n"
                        .'- Professional Edition and Enterprise instance: fixed at 0.'."\n"
                        ."\n"
                        .'> A value of 0 indicates that no storage fees are charged for Professional Edition and Enterprise instances, not that no storage space is available.'."\n"
                        ."\n"
                        .'- Platinum Edition instances: m × 100, where m ranges from \\[7,28\\].', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '7'],
                ],
                [
                    'name' => 'SupportTracing',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'Specifies whether to enable the message trace feature. Valid values:'."\n"
                        .'- true: The message trace feature is enabled.'."\n"
                        .'- false: The message trace feature is disabled.'."\n"
                        ."\n"
                        .'> - Platinum Edition instances provide the message trace feature free of charge for 15 days. The trace feature can only be enabled, and the trace retention period can only be set to 15 days.'."\n"
                        .'- Instances of other types can enable or disable the trace feature.', 'type' => 'boolean', 'default' => 'false', 'required' => false, 'example' => 'true'],
                ],
                [
                    'name' => 'TracingStorageTime',
                    'in' => 'query',
                    'schema' => [
                        'title' => '',
                        'description' => 'The retention period of message traces. Unit: days. Valid values:'."\n"
                            .'- 3: 3 days'."\n"
                            .'- 7: 7 days'."\n"
                            .'- 15: 15 days'."\n"
                            ."\n"
                            .'This parameter takes effect only when SupportTracing is set to true.',
                        'type' => 'integer',
                        'format' => 'int32',
                        'enum' => ['3', '7', '15'],
                        'required' => false,
                        'example' => '3',
                    ],
                ],
                [
                    'name' => 'ResourceGroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the resource group to which the instance belongs.', 'type' => 'string', 'required' => false, 'example' => 'rg-acfmvvajg5qkxhi', 'title' => ''],
                ],
                [
                    'name' => 'EncryptedInstance',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'This feature is exclusive to dedicated instances. Specifies whether to enable data storage encryption for the instance.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'false'],
                ],
                [
                    'name' => 'KmsKeyId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'This feature is exclusive to dedicated instances. This parameter is required when EncryptedInstance is set to true. The ID of the KMS key used for data encryption at rest. The key must meet the following requirements:'."\n"
                        ."\n"
                        .'- The key cannot be a service key.'."\n"
                        ."\n"
                        .'- The key must be in the active state.'."\n"
                        ."\n"
                        .'- The key must be a symmetric key, not an asymmetric key.'."\n"
                        ."\n"
                        .'- The key usage must be encryption and decryption.'."\n"
                        ."\n"
                        .'- If the KMS key expires or is deleted, data reads and writes become unavailable, and the RabbitMQ instance failures occur.', 'type' => 'string', 'required' => false, 'example' => 'key-xxx'],
                ],
                [
                    'name' => 'ProvisionedCapacity',
                    'in' => 'query',
                    'schema' => ['description' => 'The provisioned TPS capacity for provisioned + elastic instances.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '2000', 'title' => ''],
                ],
                [
                    'name' => 'Edition',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The deployment architecture of the Serverless instance. Valid values:'."\n"
                            ."\n"
                            .'- shared: shared architecture. Applicable to provisioned + elastic (shared) and pay-as-you-go editions.'."\n"
                            ."\n"
                            .'- dedicated: dedicated architecture. Applicable to provisioned + elastic (dedicated) edition.',
                        'type' => 'string',
                        'enum' => ['shared', 'dedicated'],
                        'required' => false,
                        'example' => 'shared',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'Tags',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'The resource tags.',
                        'type' => 'array',
                        'items' => [
                            'title' => '',
                            'description' => 'The tag object.',
                            'type' => 'object',
                            'properties' => [
                                'Key' => ['title' => '', 'description' => 'The tag key.', 'type' => 'string', 'example' => 'testKey', 'required' => false],
                                'Value' => ['title' => '', 'description' => 'The tag value.', 'type' => 'string', 'example' => 'testValue', 'required' => false],
                            ],
                            'required' => false,
                            'example' => '',
                        ],
                        'required' => false,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'VpcId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The VPC ID used to create a PrivateLink endpoint.', 'type' => 'string', 'required' => true, 'example' => 'vpc-xxx'],
                ],
                [
                    'name' => 'VswitchIds',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'title' => '',
                        'description' => 'The vSwitch IDs used to create a PrivateLink endpoint when creating the instance.'."\n"
                            ."\n"
                            .'1. Two vSwitch IDs are required, and they must belong to different zones (except for regions with a single zone).'."\n"
                            ."\n"
                            .'2. The vSwitches must belong to the specified VPC.'."\n"
                            .' '."\n"
                            .'3. The vSwitch status must be Available.'."\n"
                            ."\n"
                            .'4. Each vSwitch must have at least 20 available IP addresses.'."\n"
                            ."\n"
                            .'5. The zone of each vSwitch must support NLB creation.',
                        'type' => 'array',
                        'items' => ['title' => '', 'description' => 'The vSwitch ID specified when creating the instance.', 'type' => 'string', 'required' => true, 'example' => 'vsw-xxx'],
                        'required' => true,
                        'maxItems' => 2,
                        'minItems' => 1,
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'SecurityGroupId',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The security group used to create a PrivateLink endpoint.'."\n"
                        ."\n"
                        .'1. Add an inbound access policy that allows the protocol type TCP on destination ports 5672 and 5671.'."\n"
                        ."\n"
                        .'2. Managed security groups are not supported.'."\n"
                        ."\n"
                        .'3. The security group must belong to the specified VPC.', 'type' => 'string', 'required' => true, 'example' => 'sg-xxx'],
                ],
                [
                    'name' => 'ListenerMode',
                    'in' => 'query',
                    'schema' => [
                        'title' => '',
                        'description' => 'Specifies whether the instance enables only TLS-encrypted ports. This parameter is supported only for dedicated provisioned + elastic instances and Platinum Edition instances.',
                        'type' => 'string',
                        'example' => 'tcp_and_ssl',
                        'default' => 'tcp_and_ssl',
                        'enum' => ['tcp_and_ssl', 'ssl_only'],
                        'required' => false,
                    ],
                ],
                [
                    'name' => 'AuthModel',
                    'in' => 'query',
                    'schema' => ['type' => 'string', 'example' => 'ram openSource', 'description' => '', 'title' => ''],
                ],
                [
                    'name' => 'ServerlessSwitch',
                    'in' => 'query',
                    'schema' => ['type' => 'boolean', 'description' => '', 'title' => '', 'example' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'JsonResult<Object>',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The common parameter. Each request has a unique ID that can be used for troubleshooting.', 'type' => 'string', 'example' => 'CCBB1225-C392-480E-8C7F-D09AB2CD2***', 'title' => ''],
                            'Code' => ['description' => 'The response code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The response message.', 'type' => 'string', 'example' => 'xxx failed,xxxx', 'title' => ''],
                            'Data' => ['description' => 'The ID of the created instance.', 'type' => 'any', 'example' => 'amqp-cn-xxxxx', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Create an instance',
            'summary' => 'Creates an ApsaraMQ for RabbitMQ instance.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateInstance'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:CreateInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [
                            ['conditionKey' => 'amqp:InstanceType', 'validationType' => 'always'],
                            ['conditionKey' => 'amqp:SupportEIP', 'validationType' => 'always'],
                            ['conditionKey' => 'amqp:ServerlessChargeType'],
                        ],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"CCBB1225-C392-480E-8C7F-D09AB2CD2***\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"xxx failed,xxxx\\",\\n  \\"Data\\": \\"amqp-cn-xxxxx\\",\\n  \\"Success\\": true\\n}","type":"json"}]',
        ],
        'CreateOpenSourceAccount' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => true, 'example' => 'KcUt5e5TbhkwaLyLl', 'title' => ''],
                ],
                [
                    'name' => 'Password',
                    'in' => 'query',
                    'schema' => ['description' => 'The password of the static user to be created.', 'type' => 'string', 'required' => true, 'example' => '***&KcUt5e5TbhkwaLyLl', 'title' => ''],
                ],
                [
                    'name' => 'Description',
                    'in' => 'query',
                    'schema' => ['description' => 'The remarks.', 'type' => 'string', 'required' => false, 'example' => 'description', 'title' => ''],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request. The value of this parameter is generated by the client. It must be unique among different requests, is case-sensitive, and cannot exceed 64 ASCII characters in length.', 'type' => 'string', 'required' => false, 'example' => 'f6af6bb123988d191bfe01c9a9b', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'FEBA5E0C-50D0-4FA6-A794-4901E5465***', 'title' => ''],
                            'Code' => ['description' => 'The response code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Message' => ['description' => 'The response message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Create open-source username and password',
            'summary' => 'Creates an open-source username and password.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"FEBA5E0C-50D0-4FA6-A794-4901E5465***\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
        ],
        'CreateOpenSourcePermission' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => false, 'example' => 'myName', 'title' => ''],
                ],
                [
                    'name' => 'Vhost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => false, 'example' => 'vhostName', 'title' => ''],
                ],
                [
                    'name' => 'Configure',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for the configure permission.', 'type' => 'string', 'required' => false, 'example' => '^$', 'title' => ''],
                ],
                [
                    'name' => 'Write',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for the write permission.', 'type' => 'string', 'required' => false, 'example' => 'order_exchange', 'title' => ''],
                ],
                [
                    'name' => 'Read',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for the read permission.', 'type' => 'string', 'required' => false, 'example' => '^$', 'title' => ''],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must ensure that the value is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see How to ensure idempotence.', 'type' => 'string', 'required' => false, 'example' => 'f6af6bb123988d191bfe01c9a9b', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'The request ID.', 'type' => 'string', 'example' => '8BFB1C9D-08A2-4859-A47C-403C9EFA2***'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The return message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Create open source permission',
            'summary' => 'Creates an open source permission.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"8BFB1C9D-08A2-4859-A47C-403C9EFA2***\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"Success\\": true\\n}","type":"json"}]',
        ],
        'CreateQueue' => [
            'summary' => 'A queue is a buffer that stores messages. In ApsaraMQ for RabbitMQ, messages are sent to a specified exchange and then routed to a bound queue.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsUKJAUW'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance to which the queue belongs.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost to which the queue belongs.'."\n"
                        .'The name can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@). The name must be 1 to 255 characters in length.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'QueueName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the queue to create.'."\n"
                        ."\n"
                        .'- The queue name can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@). The name must be 1 to 255 characters in length.'."\n"
                        ."\n"
                        .'- After a queue is created, its name cannot be changed. To change the name, delete the queue and create a new one.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoQueue', 'title' => ''],
                ],
                [
                    'name' => 'AutoDeleteState',
                    'in' => 'formData',
                    'schema' => ['description' => 'Specifies whether to automatically delete the queue. Valid values:'."\n"
                        ."\n"
                        .'- true: The queue is automatically deleted after the last consumer unsubscribes from it.'."\n"
                        ."\n"
                        .'- false: The queue is not automatically deleted.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'ExclusiveState',
                    'in' => 'formData',
                    'schema' => ['description' => 'Specifies whether the queue is an exclusive queue. Valid values:'."\n"
                        ."\n"
                        .'- true: The queue is an exclusive queue. An exclusive queue can be used only by the connection that declares it. The queue is automatically deleted after the connection is closed.'."\n"
                        ."\n"
                        .'- false: The queue is not an exclusive queue.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'MessageTTL',
                    'in' => 'formData',
                    'schema' => ['description' => 'The time to live (TTL) of a message in the queue.'."\n"
                        ."\n"
                        .'- A message expires if its retention time in the queue exceeds the configured TTL.'."\n"
                        ."\n"
                        .'- The message TTL must be a non-negative integer. The maximum value is 1 day. The unit is milliseconds. For example, if the value is 1000, the message can be stored in the queue for a maximum of 1 second.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1000', 'title' => ''],
                ],
                [
                    'name' => 'AutoExpireState',
                    'in' => 'formData',
                    'schema' => ['description' => 'The auto-expiration time for the queue. The queue is automatically deleted if it is not accessed within the specified time period.'."\n"
                        ."\n"
                        .'Unit: milliseconds.'."\n"
                        ."\n"
                        .'> This feature must be enabled before you can use this parameter. To enable the feature, <props="china">[submit a ticket](https://selfservice.console.aliyun.com/ticket/createIndex)</props><props="intl">[submit a ticket](https://ticket-intl.console.aliyun.com/#/ticket/createIndex)</props>.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '10000', 'title' => ''],
                ],
                [
                    'name' => 'MaxLength',
                    'in' => 'formData',
                    'schema' => ['description' => 'This parameter is not supported in the current version.'."\n"
                        ."\n"
                        .'The maximum number of messages that can be stored in the queue. If this limit is exceeded, the earliest messages in the queue are deleted.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'docRequired' => false, 'example' => '1000', 'title' => ''],
                ],
                [
                    'name' => 'DeadLetterExchange',
                    'in' => 'formData',
                    'schema' => ['description' => 'The dead-letter exchange. This type of exchange is used to receive rejected messages.'."\n"
                        ."\n"
                        .'If a consumer rejects a message and the message is not requeued, ApsaraMQ for RabbitMQ routes the message to the specified dead-letter exchange. The dead-letter exchange then routes the message to a bound queue for storage.', 'type' => 'string', 'required' => false, 'example' => 'DLExchange', 'title' => ''],
                ],
                [
                    'name' => 'DeadLetterRoutingKey',
                    'in' => 'formData',
                    'schema' => ['description' => 'The dead-letter routing key.'."\n"
                        .'The key can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@). The key must be 1 to 255 characters in length.', 'type' => 'string', 'required' => false, 'example' => 'test.dl', 'title' => ''],
                ],
                [
                    'name' => 'MaximumPriority',
                    'in' => 'formData',
                    'schema' => ['description' => 'The priority of the queue. The recommended value is an integer from 1 to 10.'."\n"
                        ."\n"
                        .'> This parameter is used for message priority. It is supported only by dedicated instances and can be used only after the message priority feature is enabled. To enable the feature, <props="china">[submit a ticket](https://selfservice.console.aliyun.com/ticket/createIndex)</props><props="intl">[submit a ticket](https://ticket-intl.console.aliyun.com/#/ticket/createIndex)</props>.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '59B52E2C-0B8E-44EC-A314-D0314A50***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateQueue',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateQueue'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:CreateQueue',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/queues/*'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"59B52E2C-0B8E-44EC-A314-D0314A50***\\"\\n}","type":"json"}]',
        ],
        'CreateVirtualHost' => [
            'summary' => 'Creates a vhost. A vhost is used to logically isolate resources. Each vhost manages its own exchanges, queues, and bindings. Applications can run on independent vhosts in a secure manner. This way, the business of an application is not affected by other applications. Before you connect producers and consumers to an ApsaraMQ for RabbitMQ instance, you must specify vhosts for the producers and consumers.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'create',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSCH7G8'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9n***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost to create. The name must meet the following requirements:'."\n"
                        ."\n"
                        .'- The name can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@).'."\n"
                        ."\n"
                        .'- The name must be 1 to 255 characters in length.'."\n"
                        ."\n"
                        .'- The vhost name cannot be changed after creation. To use a different name, delete the vhost and create a new one.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'Demo', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '628705FD-03EE-4ABE-BB21-E1672960***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'CreateVirtualHost',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateVirtualHost'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'amqp:CreateVhost',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'VirtualHost', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/*'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"628705FD-03EE-4ABE-BB21-E1672960***\\"\\n}","type":"json"}]',
        ],
        'DeleteAccount' => [
            'summary' => 'Deletes a static username and password.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '160959',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
                'tenantRelevance' => 'publicInformation',
            ],
            'parameters' => [
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The static username to delete.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'title' => '', 'example' => 'MjphbXFwLWNuLXVxbTJ6cjc2djAwMzpMVEFJNX*******ZNMWVSWnRFSjZ2Zm8='],
                ],
                [
                    'name' => 'CreateTimestamp',
                    'in' => 'query',
                    'schema' => ['description' => 'The timestamp that indicates when the static username and password were created. Unit: milliseconds.'."\n"
                        ."\n"
                        .'Call the [ListAccounts](~~472730~~) operation to find this value.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'docRequired' => true, 'title' => '', 'example' => '1671175303522'],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => 'The request ID.', 'type' => 'string', 'example' => '021788F6-E50C-4BD6-9F80-66B0A1******'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the call is successful.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '200'],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'title' => '', 'example' => 'operation success'],
                            'Data' => ['description' => 'The returned data.', 'type' => 'boolean', 'title' => '', 'example' => 'true'],
                            'Success' => ['description' => 'Indicates whether the call was successful.', 'type' => 'boolean', 'title' => '', 'example' => 'true'],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'DeleteAccount',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteAccount'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'delete',
                    'ramAction' => [
                        'action' => 'amqp:DeleteStaticAccount',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"021788F6-E50C-4BD6-9F80-66B0A1******\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"Data\\": true,\\n  \\"Success\\": true\\n}","type":"json"}]',
        ],
        'DeleteBinding' => [
            'summary' => 'The DeleteBinding operation detaches a source exchange from a target queue or another exchange.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '58726',
                'abilityTreeNodes' => ['FEATUREons5ZTT5D'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'SourceExchange',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the source exchange.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'NormalEX', 'title' => ''],
                ],
                [
                    'name' => 'DestinationName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the destination object.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoQueue', 'title' => ''],
                ],
                [
                    'name' => 'BindingType',
                    'in' => 'formData',
                    'schema' => ['description' => 'The type of the destination object. Valid values:'."\n"
                        ."\n"
                        .'- **QUEUE**'."\n"
                        ."\n"
                        .'- **EXCHANGE**', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'QUEUE', 'title' => ''],
                ],
                [
                    'name' => 'BindingKey',
                    'in' => 'formData',
                    'schema' => ['description' => 'The binding key.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'default' => '', 'example' => '.test.', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '021788F6-E50C-4BD6-9F80-66B0A19A6***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'DeleteBinding',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteBinding'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'delete',
                    'ramAction' => [
                        'action' => 'amqp:GetExchange',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#VirtualHostName}/queues/*'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:CreateExchange', 'validationType' => 'conditional'],
                        ['action' => 'amqp:CreateQueue'],
                        ['action' => 'amqp:GetVhost'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"021788F6-E50C-4BD6-9F80-66B0A19A6***\\"\\n}","type":"json"}]',
        ],
        'DeleteExchange' => [
            'summary' => 'Deletes an exchange.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsUA0VH5'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance that contains the exchange.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost that contains the exchange.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'ExchangeName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the exchange to delete.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoExchange', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '6961FFB8-6358-4EDC-9E3C-4A0C56CE6***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'DeleteExchange',
            'description' => '## Usage notes'."\n"
                ."\n"
                .'- You cannot delete exchanges with the type **headers**.'."\n"
                ."\n"
                .'- You cannot delete the three built-in exchanges in a vhost: amq.direct, amq.topic, or amq.fanout.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteExchange'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'delete',
                    'ramAction' => [
                        'action' => 'amqp:DeleteExchange',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/{#exchangeName}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetVhost'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"6961FFB8-6358-4EDC-9E3C-4A0C56CE6***\\"\\n}","type":"json"}]',
        ],
        'DeleteOpenSourceAccount' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9n***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => false, 'example' => 'KcUt5e5TbhkwaLyLl', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'Id of the request', 'type' => 'string', 'example' => '035F5EEF-730F-5579-86E3-F1B394A5CBB6'],
                            'Success' => ['description' => 'Indicates whether the operation was successful.', 'type' => 'string', 'example' => 'true', 'title' => ''],
                            'Code' => ['description' => 'The return code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Delete open-source username and password',
            'summary' => 'Deletes the username and password of an open-source user.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"035F5EEF-730F-5579-86E3-F1B394A5CBB6\\",\\n  \\"Success\\": \\"true\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
        ],
        'DeleteOpenSourcePermission' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => true, 'example' => 'myName', 'title' => ''],
                ],
                [
                    'name' => 'Vhost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'example' => 'production', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'The request ID.', 'type' => 'string', 'example' => '92385FD2-624A-48C9-8FB5-753F2AFA***'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request is successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Delete open source permission',
            'summary' => 'Deletes an open source permission.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"92385FD2-624A-48C9-8FB5-753F2AFA***\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
        ],
        'DeleteQueue' => [
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsUKJAUW'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '1880770869023***', 'title' => ''],
                ],
                [
                    'name' => 'QueueName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The queue name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'DemoQueue', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'Test', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '92385FD2-624A-48C9-8FB5-753F2AFA***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'DeleteQueue',
            'summary' => 'Deletes a queue.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteQueue'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'delete',
                    'ramAction' => [
                        'action' => 'amqp:DeleteQueue',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/queues/{#queueName}'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"92385FD2-624A-48C9-8FB5-753F2AFA***\\"\\n}","type":"json"}]',
        ],
        'DeleteVirtualHost' => [
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSCH7G8'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'formData',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'formData',
                    'schema' => ['description' => 'The name of the vhost to delete.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '4311050D-BD63-48F9-822B-947A75A1***', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'eventInfo' => [
                'enable' => false,
                'eventNames' => [],
            ],
            'title' => 'DeleteVirtualHost',
            'summary' => 'Deletes a virtual host (vhost).',
            'description' => 'Before you delete a vhost, you must delete all exchanges and queues in it.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteVirtualHost'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'delete',
                    'ramAction' => [
                        'action' => 'amqp:DeleteVhost',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetVhost'],
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"4311050D-BD63-48F9-822B-947A75A1***\\"\\n}","type":"json"}]',
        ],
        'GetInstance' => [
            'summary' => 'Retrieves the details of an ApsaraMQ for RabbitMQ instance.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '204415',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the Message Queue for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'OpenApiResponse<InstanceVO>',
                        'description' => 'OpenApiResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The unique ID generated for the request. You can use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '92385FD2-624A-48C9-8FB5-753F2AFA***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'Tags' => [
                                        'description' => 'The list of tags.',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'The details of the tag.',
                                            'type' => 'object',
                                            'properties' => [
                                                'Key' => ['description' => 'The tag key.', 'type' => 'string', 'example' => 'Tag key', 'title' => ''],
                                                'Value' => ['description' => 'The tag value.', 'type' => 'string', 'example' => 'Tag value', 'title' => ''],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'Status' => ['description' => 'The instance status. Valid values:'."\n"
                                        ."\n"
                                        .'- DEPLOYING: The instance is being deployed.'."\n"
                                        ."\n"
                                        .'- EXPIRED: The instance has expired.'."\n"
                                        ."\n"
                                        .'- SERVING: The instance is in service.'."\n"
                                        ."\n"
                                        .'- RELEASED: The instance has been released.', 'type' => 'string', 'example' => 'SERVING', 'title' => ''],
                                    'SupportEIP' => ['description' => 'Indicates whether the instance supports EIPs.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                    'ExpireTime' => ['description' => 'The timestamp that indicates when the instance expires, in milliseconds.'."\n"
                                        ."\n"
                                        .'> The value is a long integer. Handle it with care in certain programming languages to prevent precision loss.', 'type' => 'integer', 'format' => 'int64', 'example' => '1651507200000', 'title' => ''],
                                    'OrderCreateTime' => ['description' => 'The timestamp that indicates when the order was created, in milliseconds.'."\n"
                                        ."\n"
                                        .'> The value is a long integer. Handle it with care in certain programming languages to prevent precision loss.', 'type' => 'integer', 'format' => 'int64', 'example' => '1651507200000', 'title' => ''],
                                    'PrivateEndpoint' => ['description' => 'The VPC endpoint of the instance.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com'."\n", 'title' => ''],
                                    'StorageSize' => ['description' => 'The disk capacity. Unit: GB.'."\n"
                                        ."\n"
                                        .'> For Professional and Enterprise Edition instances, this parameter returns **-1**.', 'type' => 'integer', 'format' => 'int32', 'example' => '200'."\n", 'title' => ''],
                                    'MaxEipTps' => ['description' => 'The peak public TPS.'."\n"
                                        ."\n"
                                        .'For valid values, see the [ApsaraMQ for RabbitMQ purchase page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int32', 'example' => '1000', 'title' => ''],
                                    'InstanceId' => ['description' => 'The ID of the instance.', 'type' => 'string', 'example' => 'amqp-cn-*********', 'title' => ''],
                                    'InstanceType' => ['description' => 'The instance type.'."\n"
                                        ."\n"
                                        .'- PROFESSIONAL: Professional Edition'."\n"
                                        ."\n"
                                        .'- ENTERPRISE: Enterprise Edition'."\n"
                                        ."\n"
                                        .'- VIP: Platinum Edition'."\n"
                                        ."\n"
                                        .'- SERVERLESS: Serverless Edition', 'type' => 'string', 'example' => 'enterprise', 'title' => ''],
                                    'PublicEndpoint' => ['description' => 'The public endpoint of the instance.', 'type' => 'string', 'example' => 'xxx.cn-hangzhou.xxx.net.mq.amqp.aliyuncs.com', 'title' => ''],
                                    'ClassicEndpoint' => ['description' => 'The classic network endpoint. This parameter is deprecated.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****.not-support'."\n", 'title' => ''],
                                    'MaxVhost' => ['description' => 'The maximum number of vhosts for the instance.', 'type' => 'integer', 'format' => 'int32', 'example' => '50'."\n", 'title' => ''],
                                    'MaxTps' => ['description' => 'The peak private TPS.', 'type' => 'integer', 'format' => 'int32', 'example' => '1000', 'title' => ''],
                                    'AutoRenewInstance' => ['description' => 'Indicates whether auto-renewal is enabled for the instance.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                    'InstanceName' => ['description' => 'The name of the instance. A length of 64 characters or less is recommended.', 'type' => 'string', 'example' => 'yunQi-instance', 'title' => ''],
                                    'MaxQueue' => ['description' => 'The maximum number of queues for the instance.', 'type' => 'integer', 'format' => 'int32', 'example' => '1000', 'title' => ''],
                                    'OrderType' => ['description' => 'The billing method.'."\n"
                                        ."\n"
                                        .'- PRE\\_PAID: subscription'."\n"
                                        ."\n"
                                        .'- POST\\_PAID: pay-as-you-go', 'type' => 'string', 'example' => 'PRE_PAID', 'title' => ''],
                                    'TracingStorageTime' => ['description' => 'The retention period of message traces. Unit: days. Valid values:'."\n"
                                        ."\n"
                                        .'- 3: 3 days'."\n"
                                        ."\n"
                                        .'- 7: 7 days'."\n"
                                        ."\n"
                                        .'- 15: 15 days'."\n"
                                        ."\n"
                                        .'This parameter applies only when `SupportTracing` is set to true.', 'type' => 'integer', 'format' => 'int32', 'example' => '15', 'title' => ''],
                                    'SupportTracing' => ['description' => 'Indicates whether the message trace feature is enabled.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                                    'MaxConnections' => ['description' => 'The maximum number of connections.'."\n"
                                        ."\n"
                                        .'For valid values, see the [ApsaraMQ for RabbitMQ purchase page](https://common-buy.aliyun.com/?commodityCode=ons_onsproxy_pre).', 'type' => 'integer', 'format' => 'int32', 'example' => '1500', 'title' => ''],
                                    'ResourceGroupId' => ['description' => 'The ID of the resource group for the instance.', 'type' => 'string', 'example' => 'rg-acfm2vn6jkayvfy', 'title' => ''],
                                    'ServerlessSwitch' => ['type' => 'boolean', 'description' => '', 'title' => '', 'example' => ''],
                                    'EncryptedInstance' => ['description' => 'Indicates whether storage encryption is enabled for the instance data.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                    'KmsKeyId' => ['description' => 'The KMS key ID of the cloud disk.', 'type' => 'string', 'example' => 'key-hzz6566e86byam3lg5rw4', 'title' => ''],
                                    'ProvisionedCapacity' => ['description' => 'The reserved TPS capacity for reserved and elastic instances.', 'type' => 'integer', 'format' => 'int32', 'example' => '2000', 'title' => ''],
                                    'Edition' => ['description' => 'The deployment architecture. Valid values:'."\n"
                                        ."\n"
                                        .'- shared: shared architecture, which is suitable for reserved and elastic (shared) instances and pay-as-you-go instances.'."\n"
                                        ."\n"
                                        .'- dedicated: dedicated architecture, which is suitable for reserved and elastic (dedicated) instances.', 'type' => 'string', 'example' => 'shared', 'title' => ''],
                                    'ListenerMode' => [
                                        'description' => 'The listener mode. A value of tcp\\_and\\_ssl enables both port 5672 and 5671, while ssl\\_only enables only port 5671.',
                                        'type' => 'string',
                                        'example' => 'tcp_and_ssl',
                                        'default' => 'tcp_and_ssl',
                                        'enum' => ['tcp_and_ssl', 'ssl_only'],
                                        'title' => '',
                                    ],
                                    'VpcId' => ['description' => 'The VPC ID used to create a PrivateLink endpoint for the instance.', 'type' => 'string', 'example' => 'vpc-xxx', 'title' => ''],
                                    'SecurityGroupId' => ['description' => 'The security group ID used to create a PrivateLink endpoint for the instance.', 'type' => 'string', 'example' => 'sg-xxx', 'title' => ''],
                                    'VswitchIds' => [
                                        'type' => 'array',
                                        'items' => ['description' => 'The VSwitch ID.', 'type' => 'string', 'example' => 'vsw-xxx', 'title' => ''],
                                        'maxItems' => 2,
                                        'minItems' => 1,
                                        'description' => 'The VSwitch IDs used to create a PrivateLink endpoint for the instance.',
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"92385FD2-624A-48C9-8FB5-753F2AFA***\\",\\n  \\"Data\\": {\\n    \\"Tags\\": [\\n      {\\n        \\"Key\\": \\"Tag key\\",\\n        \\"Value\\": \\"Tag value\\"\\n      }\\n    ],\\n    \\"Status\\": \\"SERVING\\",\\n    \\"SupportEIP\\": true,\\n    \\"ExpireTime\\": 1651507200000,\\n    \\"OrderCreateTime\\": 1651507200000,\\n    \\"PrivateEndpoint\\": \\"amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com\\\\n\\",\\n    \\"StorageSize\\": 200,\\n    \\"MaxEipTps\\": 1000,\\n    \\"InstanceId\\": \\"amqp-cn-*********\\",\\n    \\"InstanceType\\": \\"enterprise\\",\\n    \\"PublicEndpoint\\": \\"xxx.cn-hangzhou.xxx.net.mq.amqp.aliyuncs.com\\",\\n    \\"ClassicEndpoint\\": \\"amqp-cn-st21x7kv****.not-support\\\\n\\",\\n    \\"MaxVhost\\": 50,\\n    \\"MaxTps\\": 1000,\\n    \\"AutoRenewInstance\\": false,\\n    \\"InstanceName\\": \\"yunQi-instance\\",\\n    \\"MaxQueue\\": 1000,\\n    \\"OrderType\\": \\"PRE_PAID\\",\\n    \\"TracingStorageTime\\": 15,\\n    \\"SupportTracing\\": true,\\n    \\"MaxConnections\\": 1500,\\n    \\"ResourceGroupId\\": \\"rg-acfm2vn6jkayvfy\\",\\n    \\"ServerlessSwitch\\": false,\\n    \\"EncryptedInstance\\": true,\\n    \\"KmsKeyId\\": \\"key-hzz6566e86byam3lg5rw4\\",\\n    \\"ProvisionedCapacity\\": 2000,\\n    \\"Edition\\": \\"shared\\",\\n    \\"ListenerMode\\": \\"tcp_and_ssl\\",\\n    \\"VpcId\\": \\"vpc-xxx\\",\\n    \\"SecurityGroupId\\": \\"sg-xxx\\",\\n    \\"VswitchIds\\": [\\n      \\"vsw-xxx\\"\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'GetInstance',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetInstance'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                        ],
                    ],
                ],
            ],
            'translator' => 'machine',
        ],
        'GetMetadataAmount' => [
            'summary' => 'Queries the current and maximum numbers of vhosts, exchanges, and queues for a specified ApsaraMQ for RabbitMQ instance.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => false, 'example' => 'amqp-cn-v0h1kb9n***', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'B75ACF23-2BEB-44AC-A0B6-AE14EDCA***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxVirtualHosts' => ['description' => 'The maximum number of vhosts that you can create.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                                    'CurrentVirtualHosts' => ['description' => 'The number of existing vhosts.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'MaxQueues' => ['description' => 'The maximum number of queues that you can create.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => ''],
                                    'CurrentExchanges' => ['description' => 'The number of existing exchanges.', 'type' => 'integer', 'format' => 'int32', 'example' => '7', 'title' => ''],
                                    'MaxExchanges' => ['description' => 'The maximum number of exchanges that you can create.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => ''],
                                    'CurrentQueues' => ['description' => 'The number of existing queues.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'GetMetadataAmount',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetMetadataAmount'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"B75ACF23-2BEB-44AC-A0B6-AE14EDCA***\\",\\n  \\"Data\\": {\\n    \\"MaxVirtualHosts\\": 10,\\n    \\"CurrentVirtualHosts\\": 1,\\n    \\"MaxQueues\\": 20,\\n    \\"CurrentExchanges\\": 7,\\n    \\"MaxExchanges\\": 20,\\n    \\"CurrentQueues\\": 1\\n  }\\n}","type":"json"}]',
        ],
        'ListAccounts' => [
            'summary' => 'Lists the usernames and passwords for a specified ApsaraMQ for RabbitMQ instance.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '160958',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance whose static usernames and passwords you want to list.', 'type' => 'string', 'required' => false, 'example' => 'amqp-cn-20p****04', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'The response.',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => 'The request ID.', 'type' => 'string', 'example' => '549A5A97-FE61-5A23-8126-3A1192*****'],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'additionalProperties' => [
                                    'type' => 'array',
                                    'items' => [
                                        'type' => 'object',
                                        'properties' => [
                                            'masterUid' => ['description' => 'The ID of the Alibaba Cloud account or RAM user that created the static username and password.', 'type' => 'integer', 'format' => 'int64', 'example' => '1565************1', 'title' => ''],
                                            'cInstanceId' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'example' => 'amqp-cn-uqm******03', 'title' => ''],
                                            'accessKey' => ['description' => 'The AccessKey ID that was used to create the static username and password.', 'type' => 'string', 'example' => 'LTAI****************', 'title' => ''],
                                            'userName' => ['description' => 'The static username.', 'type' => 'string', 'example' => 'MjphbXFwLWNuLXVxbTJ6cjc2djAwMzpMVEFJNX*******ZNMWVSWnRFSjZ2Zm8=', 'title' => ''],
                                            'password' => ['description' => 'The static password.', 'type' => 'string', 'example' => 'OUYwQzM2QjZBRkUxNDRFM***************MzZCNzdDQzoxNjcxNDMwMzkyODI1', 'title' => ''],
                                            'deleted' => ['description' => 'The UNIX timestamp when the static username and password were deleted. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '0', 'title' => ''],
                                            'createTimestamp' => ['description' => 'The UNIX timestamp when the static username and password were created. Unit: milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1671175303522', 'title' => ''],
                                            'Remark' => ['description' => 'The remark.', 'type' => 'string', 'example' => '*** environment', 'title' => ''],
                                        ],
                                        'description' => 'object',
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'description' => 'The result set.',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the request was successful.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"549A5A97-FE61-5A23-8126-3A1192*****\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"key\\": [\\n      {\\n        \\"masterUid\\": 0,\\n        \\"cInstanceId\\": \\"amqp-cn-uqm******03\\",\\n        \\"accessKey\\": \\"LTAI****************\\",\\n        \\"userName\\": \\"MjphbXFwLWNuLXVxbTJ6cjc2djAwMzpMVEFJNX*******ZNMWVSWnRFSjZ2Zm8=\\",\\n        \\"password\\": \\"OUYwQzM2QjZBRkUxNDRFM***************MzZCNzdDQzoxNjcxNDMwMzkyODI1\\",\\n        \\"deleted\\": 0,\\n        \\"createTimestamp\\": 1671175303522,\\n        \\"Remark\\": \\"*** environment\\"\\n      }\\n    ]\\n  },\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
            'title' => 'ListAccounts',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListAccounts'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:ListStaticAccounts',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
        ],
        'ListBindings' => [
            'summary' => 'Queries all bindings that are created in a vhost of a specified ApsaraMQ for RabbitMQ instance.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREons5ZTT5D'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '1880770869023***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'Test', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current query. To retrieve the next page of results, pass the token that was returned in the previous call. For the first call or if the last page is returned, the value of this parameter is an empty string.', 'type' => 'string', 'required' => false, 'minLength' => 1, 'default' => '', 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of entries to return. Valid values:'."\n"
                        ."\n"
                        .'**1 to 100**', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'E0A71208-3E87-4732-81CC-B18E0B4B1***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of entries returned for the current request.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The position where the current query ends. An empty value indicates that all data is returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Bindings' => [
                                        'description' => 'The list of bindings.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'SourceExchange' => ['description' => 'The name of the source exchange.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'Argument' => ['description' => 'The x-match property. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **all**: The default value. All key-value pairs of the message header must match.'."\n"
                                                    ."\n"
                                                    .'- **any**: At least one key-value pair of the message header must match.'."\n"
                                                    ."\n"
                                                    .'This parameter is valid only for headers exchanges.', 'type' => 'string', 'example' => 'all', 'title' => ''],
                                                'BindingKey' => ['description' => 'The binding key.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is not a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain letters, digits, hyphens (-), underscores (\\_), asterisks (\\*), periods (.), number signs (#), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key cannot start or end with a period (.). If the key starts with a number sign (#) or an asterisk (\\*), it must be followed by a period (.). If the key ends with a number sign (#) or an asterisk (\\*), it must be preceded by a period (.). If a number sign (#) or an asterisk (\\*) is in the middle of the key, it must be both preceded and followed by a period (.).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.', 'type' => 'string', 'example' => 'amq.test', 'title' => ''],
                                                'BindingType' => ['description' => 'The type of the destination object. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **QUEUE**'."\n"
                                                    ."\n"
                                                    .'- **EXCHANGE**', 'type' => 'string', 'example' => 'QUEUE', 'title' => ''],
                                                'DestinationName' => ['description' => 'The name of the destination.', 'type' => 'string', 'example' => 'QueueTest', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListBindings',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListBindings'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:ListQueue'],
                        ['action' => 'amqp:ListExchange'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E0A71208-3E87-4732-81CC-B18E0B4B1***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Bindings\\": [\\n      {\\n        \\"SourceExchange\\": \\"test\\",\\n        \\"Argument\\": \\"all\\",\\n        \\"BindingKey\\": \\"amq.test\\",\\n        \\"BindingType\\": \\"QUEUE\\",\\n        \\"DestinationName\\": \\"QueueTest\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListDownStreamBindings' => [
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsHNP38C'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance to which the exchange belongs.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '1880770869023***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The name of the vhost to which the exchange belongs.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'ExchangeName',
                    'in' => 'query',
                    'schema' => ['description' => 'The name of the exchange.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that is used to retrieve the next page of results. If this is your first call, or if you have retrieved all results, leave this parameter empty.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the request was successful.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '9C1E0502-0790-4FDB-8C96-6D5C8D9B7***', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that is used to retrieve the next page of results. If the value is empty, all results have been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Bindings' => [
                                        'description' => 'The bindings.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'SourceExchange' => ['description' => 'The name of the source exchange.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'Argument' => ['description' => 'The x-match property. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **all**: The default value. All key-value pairs in the message header must match.'."\n"
                                                    ."\n"
                                                    .'- **any**: At least one key-value pair in the message header must match.'."\n"
                                                    ."\n"
                                                    .'This parameter is valid only for headers exchanges.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'BindingKey' => ['description' => 'The binding key.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is not a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), asterisks (\\*), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key cannot start or end with a period (.). If the binding key starts with a number sign (#) or an asterisk (\\*), it must be followed by a period (.). If it ends with a number sign (#) or an asterisk (\\*), it must be preceded by a period (.). If a number sign (#) or an asterisk (\\*) is in the middle of the binding key, it must be surrounded by periods (.).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.', 'type' => 'string', 'example' => 'amq.test', 'title' => ''],
                                                'BindingType' => ['description' => 'The type of the destination object. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **QUEUE**'."\n"
                                                    ."\n"
                                                    .'- **EXCHANGE**', 'type' => 'string', 'example' => 'QUEUE', 'title' => ''],
                                                'DestinationName' => ['description' => 'The name of the destination.', 'type' => 'string', 'example' => 'QueueTest', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListDownStreamBindings',
            'summary' => 'Queries the exchanges or queues that are bound to a specified exchange.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDownStreamBindings'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                        ['action' => 'amqp:ListQueue', 'validationType' => 'always'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"RequestId\\": \\"9C1E0502-0790-4FDB-8C96-6D5C8D9B7***\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Bindings\\": [\\n      {\\n        \\"SourceExchange\\": \\"test\\",\\n        \\"Argument\\": \\"test\\",\\n        \\"BindingKey\\": \\"amq.test\\",\\n        \\"BindingType\\": \\"QUEUE\\",\\n        \\"DestinationName\\": \\"QueueTest\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListExchangeUpStreamBindings' => [
            'summary' => 'Queries the queues or other exchanges that are bound to a specified exchange.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsHNP38C'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '1880770869023***', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'ExchangeName',
                    'in' => 'query',
                    'schema' => ['description' => 'The exchange name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current query. Pass this token in the next call to query the next page. This parameter is an empty string for the first query or when the last page is returned.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the call is successful.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '2DCCCE88-BC82-4A4F-AF5E-9A759672B***', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that indicates the position where the current query ends. An empty value indicates that all data has been read.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Bindings' => [
                                        'description' => 'The bindings.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'SourceExchange' => ['description' => 'The name of the source exchange.', 'type' => 'string', 'example' => 'dle', 'title' => ''],
                                                'Argument' => ['description' => 'The x-match property. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **all**: The default value. All key-value pairs in the message header must match.'."\n"
                                                    ."\n"
                                                    .'- **any**: At least one key-value pair in the message header must match.'."\n"
                                                    ."\n"
                                                    .'This parameter is valid only for headers exchanges. It is invalid for other types of exchanges.', 'type' => 'string', 'example' => 'all', 'title' => ''],
                                                'BindingKey' => ['description' => 'The binding key.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is not a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The key can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The key must be 1 to 255 characters in length.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The key can contain letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The key cannot start or end with a period (.). A number sign (#) or an asterisk (\\*) must be preceded by a period if it is not at the start of the key. It must be followed by a period if it is not at the end of the key.'."\n"
                                                    ."\n"
                                                    .'  - The key must be 1 to 255 characters in length.', 'type' => 'string', 'example' => 'amq.dle.test', 'title' => ''],
                                                'BindingType' => ['description' => 'The type of the destination object. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **QUEUE**'."\n"
                                                    ."\n"
                                                    .'- **EXCHANGE**', 'type' => 'string', 'example' => 'EXCHANGE', 'title' => ''],
                                                'DestinationName' => ['description' => 'The destination name.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListExchangeUpStreamBindings',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListExchangeUpStreamBindings'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                        ['action' => 'amqp:ListQueue', 'validationType' => 'always'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"RequestId\\": \\"2DCCCE88-BC82-4A4F-AF5E-9A759672B***\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Bindings\\": [\\n      {\\n        \\"SourceExchange\\": \\"dle\\",\\n        \\"Argument\\": \\"all\\",\\n        \\"BindingKey\\": \\"amq.dle.test\\",\\n        \\"BindingType\\": \\"EXCHANGE\\",\\n        \\"DestinationName\\": \\"test\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListExchanges' => [
            'summary' => 'Lists all exchanges in a specified vhost of an instance.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '58733',
                'abilityTreeNodes' => ['FEATUREonsHNP38C'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-7pp2mwbc****', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The name of the vhost.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token for retrieving the next page of results. Set this parameter to the token value returned from the previous call.'."\n"
                        ."\n"
                        .'- Omit this parameter on your first call.'."\n"
                        ."\n"
                        .'- If a subsequent call is required, set this parameter to the `NextToken` value returned from the previous call.', 'type' => 'string', 'required' => false, 'example' => 'AAAANDQBYW1xcC1jbi03cHAybXdiY3AwMGEBdmhvc3QBAXNkZndhYWJhATE2NDkzMTM4OTU5NDIB4o3z1pPwWzk4aYuiRffi8R6-****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return. Valid values: **1 to 100**.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'FEBA5E0C-50D0-4FA6-A794-4901E5465***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that marks the start of the next query.'."\n"
                                        ."\n"
                                        .'- If this parameter is empty, no more data is available.'."\n"
                                        ."\n"
                                        .'- If a value is returned, use the value as the `NextToken` value in the next call to continue the query.', 'type' => 'string', 'example' => 'AAAANDQBYW1xcC1jbi03cHAybXdiY3AwMGEBdmhvc3QBAXNkZndhYWJhATE2NDkzMTM4OTU5NDIB4o3z1pPwWzk4aYuiRffi8R6-****', 'title' => ''],
                                    'Exchanges' => [
                                        'description' => 'The exchanges.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'AutoDeleteState' => ['description' => 'Indicates whether the exchange is an auto-delete exchange.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                                'CreateTime' => ['description' => 'The time when the exchange was created. The value is a UNIX timestamp in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1580886216000', 'title' => ''],
                                                'Attributes' => ['description' => 'The attributes of the exchange. This parameter is not supported.', 'type' => 'object', 'example' => 'test', 'title' => ''],
                                                'VHostName' => ['description' => 'The name of the vhost to which the exchange belongs.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'Name' => ['description' => 'The name of the exchange.', 'type' => 'string', 'example' => 'amq.direct', 'title' => ''],
                                                'ExchangeType' => ['description' => 'The type of the exchange.', 'type' => 'string', 'example' => 'DIRECT', 'title' => ''],
                                                'Internal' => ['description' => 'Indicates whether the exchange is an internal exchange.', 'type' => 'boolean', 'title' => '', 'example' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"FEBA5E0C-50D0-4FA6-A794-4901E5465***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"AAAANDQBYW1xcC1jbi03cHAybXdiY3AwMGEBdmhvc3QBAXNkZndhYWJhATE2NDkzMTM4OTU5NDIB4o3z1pPwWzk4aYuiRffi8R6-****\\",\\n    \\"Exchanges\\": [\\n      {\\n        \\"AutoDeleteState\\": false,\\n        \\"CreateTime\\": 1580886216000,\\n        \\"Attributes\\": {\\n          \\"test\\": \\"test\\",\\n          \\"test2\\": 1\\n        },\\n        \\"VHostName\\": \\"test\\",\\n        \\"Name\\": \\"amq.direct\\",\\n        \\"ExchangeType\\": \\"DIRECT\\",\\n        \\"Internal\\": false\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'ListExchanges',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListExchanges'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                    ],
                ],
            ],
        ],
        'ListInstanceWhiteList' => [
            'summary' => 'Queries the IP or VPC whitelist for an instance.',
            'path' => '',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the instance whose whitelist to query.', 'type' => 'string', 'required' => true, 'example' => 'rabbitmq-cn-xxx', 'title' => ''],
                ],
                [
                    'name' => 'whiteListType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The type of whitelist to query.'."\n"
                            ."\n"
                            .'VPC whitelists apply only to instances whose VPC endpoint is of the `anytunnel` type. The latest instance versions use a `PrivateLink` VPC endpoint and do not support VPC whitelists.',
                        'enumValueTitles' => [1 => 'VPC whitelist', 'IP address whitelist'],
                        'type' => 'integer',
                        'format' => 'int32',
                        'required' => true,
                        'enum' => ['1', '2'],
                        'title' => '',
                        'example' => '2',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The unique ID of the request. Use this ID to troubleshoot issues.', 'type' => 'string', 'title' => '', 'example' => '6DC68EC9-0E76-5435-B8C0-FF9492B4****'],
                            'Code' => ['description' => 'The return code. A value of `200` indicates a successful request.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The error message returned on a failed request.', 'type' => 'string', 'example' => 'xxx failed,xxxx', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => ['description' => 'The returned data, which is an array of whitelist entries. Each object in the array contains an `id` (a sequence number used for deletion) and a `value` (the actual entry, such as an IP address range or a VPC ID).', 'type' => 'any', 'example' => '"Data": ['."\n"
                                .'    {'."\n"
                                .'      "id": 454,'."\n"
                                .'      "value": "10.1.2.1/30"'."\n"
                                .'    }'."\n"
                                .'  ]', 'title' => ''],
                            'StatusCode' => ['description' => 'The HTTP status code. A value of `200` indicates a successful request.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'description' => 'The response object.',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'ListInstanceWhiteList',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"6DC68EC9-0E76-5435-B8C0-FF9492B4****\\",\\n  \\"Code\\": \\"200\\",\\n  \\"Message\\": \\"xxx failed,xxxx\\",\\n  \\"Success\\": true,\\n  \\"Data\\": \\"\\\\\\"Data\\\\\\": [\\\\n    {\\\\n      \\\\\\"id\\\\\\": 454,\\\\n      \\\\\\"value\\\\\\": \\\\\\"10.1.2.1/30\\\\\\"\\\\n    }\\\\n  ]\\",\\n  \\"StatusCode\\": \\"200\\"\\n}","type":"json"}]',
        ],
        'ListInstances' => [
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '58735',
                'abilityTreeNodes' => ['FEATUREonsQ3252I'],
            ],
            'parameters' => [
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token to retrieve the next page of results. If this is your first query, leave this parameter empty.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return. The recommended value is from 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'maximum' => '200', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'ResourceGroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the resource group that contains the instance.', 'type' => 'string', 'required' => false, 'example' => 'rg-aekzu74zjgdu4mq', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'CCBB1225-C392-480E-8C7F-D09AB2CD2***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'NextToken' => ['description' => 'The token for the next page of results. If this field is empty, it means all results have been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'MaxResults' => ['description' => 'The maximum number of entries returned per page.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'Instances' => [
                                        'description' => 'A list of instances.',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'An instance.',
                                            'type' => 'object',
                                            'properties' => [
                                                'Status' => ['description' => 'The instance status. Valid values:'."\n"
                                                    ."\n"
                                                    .'- DEPLOYING: The instance is being deployed.'."\n"
                                                    ."\n"
                                                    .'- EXPIRED: The instance has expired.'."\n"
                                                    ."\n"
                                                    .'- SERVING: The instance is running.'."\n"
                                                    ."\n"
                                                    .'- RELEASED: The instance is released.', 'type' => 'string', 'example' => 'SERVING', 'title' => ''],
                                                'SupportEIP' => ['description' => 'Indicates whether the instance supports EIPs.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                                'ExpireTime' => ['description' => 'The expiration timestamp of the instance, in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1651507200000', 'title' => ''],
                                                'OrderCreateTime' => ['description' => 'The creation timestamp of the order, in milliseconds.', 'type' => 'integer', 'format' => 'int64', 'example' => '1572441939000', 'title' => ''],
                                                'PrivateEndpoint' => ['description' => 'The VPC endpoint of the instance.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com', 'title' => ''],
                                                'StorageSize' => ['description' => 'The storage capacity of the disk. Unit: GB.'."\n"
                                                    ."\n"
                                                    .'> This parameter returns a value of **-1** for Professional Edition and Enterprise Edition instances, to which it does not apply.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                                                'MaxEipTps' => ['description' => 'The peak transactions per second (TPS) of the instance over the public network.', 'type' => 'integer', 'format' => 'int32', 'example' => '24832', 'title' => ''],
                                                'InstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****', 'title' => ''],
                                                'InstanceType' => ['description' => 'The instance type. Valid values:'."\n"
                                                    ."\n"
                                                    .'- professional: Professional Edition'."\n"
                                                    ."\n"
                                                    .'- enterprise: Enterprise Edition'."\n"
                                                    ."\n"
                                                    .'- vip: Platinum Edition'."\n"
                                                    ."\n"
                                                    .'<props="china">'."\n"
                                                    ."\n"
                                                    .'- serverless: Serverless Edition'."\n"
                                                    ."\n"
                                                    .'</props>', 'type' => 'string', 'example' => 'professional', 'title' => ''],
                                                'PublicEndpoint' => ['description' => 'The public endpoint of the instance.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com', 'title' => ''],
                                                'ClassicEndpoint' => ['description' => 'The classic network endpoint. This parameter is deprecated.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****.not-support', 'title' => ''],
                                                'MaxVhost' => ['description' => 'The maximum number of vhosts for the instance.', 'type' => 'integer', 'format' => 'int32', 'example' => '50', 'title' => ''],
                                                'MaxTps' => ['description' => 'The peak transactions per second (TPS) of the instance over the private network.', 'type' => 'integer', 'format' => 'int32', 'example' => '5000', 'title' => ''],
                                                'AutoRenewInstance' => ['description' => 'Indicates whether auto-renewal is enabled for the instance.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                                'InstanceName' => ['description' => 'The instance name.', 'type' => 'string', 'example' => 'amqp-cn-st21x7kv****', 'title' => ''],
                                                'MaxQueue' => ['description' => 'The maximum number of queues for the instance.', 'type' => 'integer', 'format' => 'int32', 'example' => '50', 'title' => ''],
                                                'OrderType' => ['description' => 'The billing method. Valid values:'."\n"
                                                    ."\n"
                                                    .'- PRE\\_PAID: The instance uses the subscription billing method.'."\n"
                                                    ."\n"
                                                    .'- POST\\_PAID: The instance uses the pay-as-you-go billing method.', 'type' => 'string', 'example' => 'PRE_PAID', 'title' => ''],
                                                'Tags' => [
                                                    'description' => 'The tags attached to the instance.',
                                                    'type' => 'array',
                                                    'items' => [
                                                        'description' => 'The tag.',
                                                        'type' => 'object',
                                                        'properties' => [
                                                            'Key' => ['description' => 'The tag key.', 'type' => 'string', 'example' => 'region', 'title' => ''],
                                                            'Value' => ['description' => 'The tag value.', 'type' => 'string', 'example' => 'hangzhou', 'title' => ''],
                                                        ],
                                                        'title' => '',
                                                        'example' => '',
                                                    ],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'ResourceGroupId' => ['description' => 'The resource group ID.', 'type' => 'string', 'example' => 'rg-aek3axfj2w4czrq', 'title' => ''],
                                                'ServerlessSwitch' => ['type' => 'boolean', 'description' => '', 'title' => '', 'example' => ''],
                                                'EncryptedInstance' => ['description' => 'Indicates whether storage encryption is enabled for the instance.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                                'KmsKeyId' => ['description' => 'The ID of the KMS key used for data disk encryption.', 'type' => 'string', 'example' => 'key-bjj66c2a893vmhawtq5fd', 'title' => ''],
                                                'ProvisionedCapacity' => ['description' => 'The reserved TPS capacity for reserved and elastic instances.', 'type' => 'integer', 'format' => 'int32', 'example' => '2000', 'title' => ''],
                                                'Edition' => ['description' => 'The deployment architecture, which is applicable only to Serverless Edition instances. Valid values:'."\n"
                                                    ."\n"
                                                    .'- shared: A shared architecture, used for reserved, elastic (shared), and pay-as-you-go instances.'."\n"
                                                    ."\n"
                                                    .'- dedicated: A dedicated architecture, used for reserved and elastic (dedicated) instances.', 'type' => 'string', 'example' => 'shared', 'title' => ''],
                                                'ListenerMode' => [
                                                    'description' => 'The port listener mode of the instance. `tcp_and_ssl` enables both port `5672` and port `5671`, while `ssl_only` enables only port `5671`.',
                                                    'type' => 'string',
                                                    'example' => 'tcp_and_ssl',
                                                    'default' => 'tcp_and_ssl',
                                                    'enum' => ['tcp_and_ssl', 'ssl_only'],
                                                    'title' => '',
                                                ],
                                                'VpcId' => ['description' => 'The ID of the VPC in which the instance resides. This VPC is used for PrivateLink endpoint creation.', 'type' => 'string', 'example' => 'vpc-xxx', 'title' => ''],
                                                'SecurityGroupId' => ['description' => 'The ID of the security group to which the instance belongs. This security group is used for PrivateLink endpoint creation.', 'type' => 'string', 'example' => 'sg-xxx', 'title' => ''],
                                                'VswitchIds' => [
                                                    'type' => 'array',
                                                    'items' => ['description' => 'A VSwitch ID to which the instance is connected.', 'type' => 'string', 'example' => 'vsw-xxx', 'title' => ''],
                                                    'maxItems' => 2,
                                                    'minItems' => 1,
                                                    'description' => 'The IDs of the VSwitches to which the instance is connected. These VSwitches are used for PrivateLink endpoint creation.',
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'title' => 'ListInstances',
            'summary' => 'Queries a list of ApsaraMQ for RabbitMQ instances in a specified region and returns basic information about each instance, such as its endpoints and specification limits.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListInstances'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:ListInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"CCBB1225-C392-480E-8C7F-D09AB2CD2***\\",\\n  \\"Data\\": {\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"MaxResults\\": 1,\\n    \\"Instances\\": [\\n      {\\n        \\"Status\\": \\"SERVING\\",\\n        \\"SupportEIP\\": true,\\n        \\"ExpireTime\\": 1651507200000,\\n        \\"OrderCreateTime\\": 1572441939000,\\n        \\"PrivateEndpoint\\": \\"amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com\\",\\n        \\"StorageSize\\": 200,\\n        \\"MaxEipTps\\": 24832,\\n        \\"InstanceId\\": \\"amqp-cn-st21x7kv****\\",\\n        \\"InstanceType\\": \\"professional\\",\\n        \\"PublicEndpoint\\": \\"amqp-cn-st21x7kv****.mq-amqp.cn-hangzhou-a.aliyuncs.com\\",\\n        \\"ClassicEndpoint\\": \\"amqp-cn-st21x7kv****.not-support\\",\\n        \\"MaxVhost\\": 50,\\n        \\"MaxTps\\": 5000,\\n        \\"AutoRenewInstance\\": false,\\n        \\"InstanceName\\": \\"amqp-cn-st21x7kv****\\",\\n        \\"MaxQueue\\": 50,\\n        \\"OrderType\\": \\"PRE_PAID\\",\\n        \\"Tags\\": [\\n          {\\n            \\"Key\\": \\"region\\",\\n            \\"Value\\": \\"hangzhou\\"\\n          }\\n        ],\\n        \\"ResourceGroupId\\": \\"rg-aek3axfj2w4czrq\\",\\n        \\"ServerlessSwitch\\": false,\\n        \\"EncryptedInstance\\": false,\\n        \\"KmsKeyId\\": \\"key-bjj66c2a893vmhawtq5fd\\",\\n        \\"ProvisionedCapacity\\": 2000,\\n        \\"Edition\\": \\"shared\\",\\n        \\"ListenerMode\\": \\"tcp_and_ssl\\",\\n        \\"VpcId\\": \\"vpc-xxx\\",\\n        \\"SecurityGroupId\\": \\"sg-xxx\\",\\n        \\"VswitchIds\\": [\\n          \\"vsw-xxx\\"\\n        ]\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListOpenSourceAccounts' => [
            'summary' => 'Enumerates open-source usernames and passwords.',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'high',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-7pp2mwbc****', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current query. This token is passed as a parameter in the next call to continue pagination. Set this parameter to an empty string for the first call or when the last page is returned.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of entries to return.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'Id of the request', 'type' => 'string', 'example' => '021788F6-E50C-4BD6-9F80-66B0A19A****'],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'CInstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'amqp-abc***', 'title' => ''],
                                        'AliyunUserId' => ['description' => 'The Alibaba Cloud UID.', 'type' => 'integer', 'format' => 'int64', 'example' => '12345678900123', 'title' => ''],
                                        'Name' => ['description' => 'The username.', 'type' => 'string', 'example' => 'example', 'title' => ''],
                                        'PasswordHash' => ['description' => 'The password hash.', 'type' => 'string', 'example' => 'f6af6bbb91e947d988d191bfe01c9a9b', 'title' => ''],
                                        'HashingAlgorithm' => ['description' => 'The hash algorithm.', 'type' => 'string', 'example' => 'bcrypt', 'title' => ''],
                                        'Tags' => ['description' => 'The tags.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                        'ExtraJson' => ['description' => 'The description.', 'type' => 'string', 'example' => '{}', 'title' => ''],
                                        'Limits' => ['description' => 'The quota configuration.', 'type' => 'string', 'example' => 'null', 'title' => ''],
                                        'WeakPassword' => ['description' => 'Indicates whether the password is a weak password. Valid values:'."\n"
                                            .'- 0: No.'."\n"
                                            .'- 1: Yes.', 'type' => 'boolean', 'title' => '', 'example' => ''],
                                        'CreateTime' => ['description' => 'The time when the user was created.', 'type' => 'string', 'example' => '1704067200000', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'Success' => ['description' => 'Indicates whether the call was successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Code' => ['description' => 'The status code.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'MaxResults' => ['description' => 'The maximum number of entries to return.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                            'NextToken' => ['description' => 'The token that marks the end of the current query. This token is passed as a parameter in the next call to continue pagination. Set this parameter to an empty string for the first call or when the last page is returned.', 'type' => 'string', 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Enumerate open-source usernames and passwords',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"021788F6-E50C-4BD6-9F80-66B0A19A****\\",\\n  \\"Data\\": [\\n    {\\n      \\"CInstanceId\\": \\"amqp-abc***\\",\\n      \\"AliyunUserId\\": 12345678900123,\\n      \\"Name\\": \\"example\\",\\n      \\"PasswordHash\\": \\"f6af6bbb91e947d988d191bfe01c9a9b\\",\\n      \\"HashingAlgorithm\\": \\"bcrypt\\",\\n      \\"Tags\\": \\"test\\",\\n      \\"ExtraJson\\": \\"{}\\",\\n      \\"Limits\\": \\"null\\",\\n      \\"WeakPassword\\": false,\\n      \\"CreateTime\\": \\"1704067200000\\"\\n    }\\n  ],\\n  \\"Success\\": true,\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"operation success\\",\\n  \\"MaxResults\\": 10,\\n  \\"NextToken\\": \\"caeba0bbb2be03f84eb48b699f0a****\\"\\n}","type":"json"}]',
        ],
        'ListOpenSourcePermissions' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => true, 'example' => 'myName', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token for the next query.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'The request ID.', 'type' => 'string', 'example' => 'FEBA5E0C-50D0-4FA6-A794-4901E5465***'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'CInstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                                        'AliyunUserId' => ['description' => 'The Alibaba Cloud UID.', 'type' => 'integer', 'format' => 'int64', 'example' => '1234567890123456', 'title' => ''],
                                        'Name' => ['description' => 'The username.', 'type' => 'string', 'example' => 'shhtzn', 'title' => ''],
                                        'Vhost' => ['description' => 'The vhost name.', 'type' => 'string', 'example' => 'production', 'title' => ''],
                                        'Configure' => ['description' => 'The regular expression for configure permissions.', 'type' => 'string', 'example' => '^$', 'title' => ''],
                                        'Write' => ['description' => 'The regular expression for write permissions.', 'type' => 'string', 'example' => 'order_exchange', 'title' => ''],
                                        'Read' => ['description' => 'The regular expression for read permissions.', 'type' => 'string', 'example' => '^$', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'MaxResults' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'example' => '50', 'title' => ''],
                            'NextToken' => ['description' => 'The token for the next query.', 'type' => 'string', 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'List open source permissions',
            'summary' => 'Lists open source permissions.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"FEBA5E0C-50D0-4FA6-A794-4901E5465***\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\",\\n  \\"Data\\": [\\n    {\\n      \\"CInstanceId\\": \\"amqp-cn-v0h1kb9nu***\\",\\n      \\"AliyunUserId\\": 1234567890123456,\\n      \\"Name\\": \\"shhtzn\\",\\n      \\"Vhost\\": \\"production\\",\\n      \\"Configure\\": \\"^$\\",\\n      \\"Write\\": \\"order_exchange\\",\\n      \\"Read\\": \\"^$\\"\\n    }\\n  ],\\n  \\"MaxResults\\": 50,\\n  \\"NextToken\\": \\"caeba0bbb2be03f84eb48b699f0a****\\"\\n}","type":"json"}]',
        ],
        'ListQueueConsumers' => [
            'summary' => 'Queries the online consumer clients of a specified queue.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeCode' => '76240',
                'abilityTreeNodes' => ['FEATUREonsUKJAUW'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-5yd3aw******', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'Queue',
                    'in' => 'query',
                    'schema' => ['description' => 'The queue name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'queue-rabbit-springboot-advance5', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current page of results. To retrieve the next page, include this token in the next request. If this is your first request or the last page is returned, the value is an empty string.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'default' => '', 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'QueryCount',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries to return. If you do not set this parameter, the default value is 1.'."\n"
                        ."\n"
                        .'Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'docRequired' => false, 'maximum' => '100', 'minimum' => '1', 'default' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '4409B7D5-E4EC-4EB5-804A-385DCDFCD***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token to retrieve the next page of results. An empty value indicates that all results have been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Consumers' => [
                                        'description' => 'The consumer information.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'ConsumerTag' => ['description' => 'The consumer tag.', 'type' => 'string', 'example' => 'sgen-1', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListQueueConsumers',
            'description' => 'ApsaraMQ for RabbitMQ lets you query only online consumer clients. You cannot query offline consumer clients.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueueConsumers'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetQueue',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"4409B7D5-E4EC-4EB5-804A-385DCDFCD***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Consumers\\": [\\n      {\\n        \\"ConsumerTag\\": \\"sgen-1\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListQueueUpStreamBindings' => [
            'summary' => 'Queries the exchanges that are bound to a specified queue.',
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREons5ZTT5D'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-5yd3aw******', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'QueueName',
                    'in' => 'query',
                    'schema' => ['description' => 'The queue name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'QueueTest', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current query. To retrieve the next page of results, pass this token in the next request. For the first request or when the last page is returned, this parameter is an empty string.', 'type' => 'string', 'required' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '8BFB1C9D-08A2-4859-A47C-403C9EFA2***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results returned.', 'type' => 'string', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that marks the end of the current results. An empty value indicates that all results have been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Bindings' => [
                                        'description' => 'The bindings.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'SourceExchange' => ['description' => 'The name of the source exchange.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'Argument' => ['description' => 'The x-match property. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **all**: This is the default value. All key-value pairs in the message header must match.'."\n"
                                                    ."\n"
                                                    .'- **any**: At least one key-value pair in the message header must match.'."\n"
                                                    ."\n"
                                                    .'This parameter is valid only for headers exchanges. It is invalid for other types of exchanges.', 'type' => 'string', 'example' => 'all', 'title' => ''],
                                                'BindingKey' => ['description' => 'The binding key.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is not a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain only letters, digits, hyphens (-), underscores (\\_), periods (.), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.'."\n"
                                                    ."\n"
                                                    .'- If the source exchange is a topic exchange:'."\n"
                                                    ."\n"
                                                    .'  - The binding key can contain letters, digits, hyphens (-), underscores (\\_), periods (.), number signs (#), forward slashes (/), and at signs (@).'."\n"
                                                    ."\n"
                                                    .'  - The binding key cannot start or end with a period (.). If a number sign (#) or an asterisk (\\*) is at the beginning of the key, it must be followed by a period (.). If it is at the end of the key, it must be preceded by a period (.). If it is in the middle of the key, it must be enclosed by periods (.).'."\n"
                                                    ."\n"
                                                    .'  - The binding key must be 1 to 255 characters in length.', 'type' => 'string', 'example' => 'amq.test', 'title' => ''],
                                                'BindingType' => ['description' => 'The type of the destination object. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **QUEUE**'."\n"
                                                    ."\n"
                                                    .'- **EXCHANGE**', 'type' => 'string', 'example' => 'QUEUE', 'title' => ''],
                                                'DestinationName' => ['description' => 'The name of the destination.', 'type' => 'string', 'example' => 'QueueTest', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListQueueUpStreamBindings',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueueUpStreamBindings'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:GetInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:ListQueue'],
                        ['action' => 'amqp:ListExchange'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"8BFB1C9D-08A2-4859-A47C-403C9EFA2***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": \\"1\\",\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Bindings\\": [\\n      {\\n        \\"SourceExchange\\": \\"test\\",\\n        \\"Argument\\": \\"all\\",\\n        \\"BindingKey\\": \\"amq.test\\",\\n        \\"BindingType\\": \\"QUEUE\\",\\n        \\"DestinationName\\": \\"QueueTest\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListQueues' => [
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsUKJAUW'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-5yd3aw******', 'title' => ''],
                ],
                [
                    'name' => 'VirtualHost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'test', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that marks the end of the current query. Pass this token in the next call to retrieve the next page of results. The value is an empty string for the first call or when the last page is returned.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'minLength' => 1, 'default' => '', 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'CE811989-9F02-42CE-97A6-2239CB5C2***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that is used to retrieve the next page of results. If this parameter is empty, all results have been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'Queues' => [
                                        'description' => 'The queues.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'ExclusiveState' => ['description' => 'Indicates whether the queue is an exclusive queue.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                                'AutoDeleteState' => ['description' => 'The auto-delete status.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                                'CreateTime' => ['description' => 'The time when the queue was created.', 'type' => 'integer', 'format' => 'int64', 'example' => '1580887085240', 'title' => ''],
                                                'Attributes' => ['description' => 'The attributes.', 'type' => 'object', 'example' => 'test', 'title' => ''],
                                                'VHostName' => ['description' => 'The vhost name.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                                'Name' => ['description' => 'The queue name.', 'type' => 'string', 'example' => 'QueueTest', 'title' => ''],
                                                'OwnerId' => ['description' => 'The ID of the instance to which the queue belongs.', 'type' => 'string', 'example' => 'amqp-cn-5yd3aw******', 'title' => ''],
                                                'LastConsumeTime' => ['description' => 'The last time a message was consumed from the queue.', 'type' => 'integer', 'format' => 'int64', 'example' => '1680887085240', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'title' => 'ListQueues',
            'summary' => 'Queries information about all queues in a vhost on a specified ApsaraMQ for RabbitMQ instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueues'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:ListQueue',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"CE811989-9F02-42CE-97A6-2239CB5C2***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": 1,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"Queues\\": [\\n      {\\n        \\"ExclusiveState\\": false,\\n        \\"AutoDeleteState\\": false,\\n        \\"CreateTime\\": 1580887085240,\\n        \\"Attributes\\": {\\n          \\"test\\": \\"test\\",\\n          \\"test2\\": 1\\n        },\\n        \\"VHostName\\": \\"test\\",\\n        \\"Name\\": \\"QueueTest\\",\\n        \\"OwnerId\\": \\"amqp-cn-5yd3aw******\\",\\n        \\"LastConsumeTime\\": 1680887085240\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'ListVirtualHosts' => [
            'methods' => ['get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'list',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSCH7G8'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '1880770869023***', 'title' => ''],
                ],
                [
                    'name' => 'NextToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The token that is used to retrieve the next page of results. If the number of results exceeds the value of MaxResults, NextToken is returned. You can include this parameter in the next call to retrieve the next page of results. Leave this parameter empty for the first call.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => 'caeba0bbb2be03f84eb48b699f0a****', 'title' => ''],
                ],
                [
                    'name' => 'MaxResults',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of results to return. Valid values:'."\n"
                        .'**1 to 100**.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'maximum' => '100', 'minimum' => '1', 'example' => '2', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'EF4DB019-DA4A-4CE3-B220-223BBC93F***', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'MaxResults' => ['description' => 'The maximum number of results returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '2', 'title' => ''],
                                    'NextToken' => ['description' => 'The token that is used to retrieve the next page of results. If this parameter is not returned, all data has been returned.', 'type' => 'string', 'example' => 'caebacccb2be03f84eb48b699f0a****', 'title' => ''],
                                    'VirtualHosts' => [
                                        'description' => 'The list of vhosts.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'Name' => ['description' => 'The name of the vhost.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                    ['errorCode' => 'InstanceIdNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => ''],
                ],
            ],
            'title' => 'ListVirtualHosts',
            'summary' => 'Lists all vhosts in a specified ApsaraMQ for RabbitMQ instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListVirtualHosts'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'list',
                    'ramAction' => [
                        'action' => 'amqp:ListVhost',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"EF4DB019-DA4A-4CE3-B220-223BBC93F***\\",\\n  \\"Data\\": {\\n    \\"MaxResults\\": 2,\\n    \\"NextToken\\": \\"caebacccb2be03f84eb48b699f0a****\\",\\n    \\"VirtualHosts\\": [\\n      {\\n        \\"Name\\": \\"test\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
        ],
        'RemoveInstanceWhiteList' => [
            'summary' => 'Removes an IP address or a VPC from an instance\'s whitelist.',
            'path' => '',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'delete',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
                'tenantRelevance' => 'tenant',
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the instance from which to remove a whitelist entry.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'amqp-cn-5yd3aw******'],
                ],
                [
                    'name' => 'whiteListItemId',
                    'in' => 'query',
                    'schema' => ['description' => 'Call the ListInstanceWhiteList operation to obtain this ID.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'title' => '', 'example' => '420'],
                ],
                [
                    'name' => 'whiteListType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The type of the whitelist item. Specify 2 for an IP address or 1 for a VPC ID.'."\n"
                            ."\n"
                            .'A VPC whitelist only applies to instances with the anytunnel VPC endpoint type. Newer instances use PrivateLink for their VPC endpoints and do not support VPC whitelists.',
                        'type' => 'integer',
                        'format' => 'int32',
                        'required' => true,
                        'enum' => ['1', '2'],
                        'title' => '',
                        'example' => '2',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The unique ID for the request.', 'type' => 'string', 'title' => '', 'example' => '92385FD2-624A-48C9-8FB5-753F2AFA***'],
                            'Code' => ['description' => 'The status code. A value of 200 indicates the request was successful.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The error message returned if the request fails.', 'type' => 'string', 'example' => 'can not find resource: instanceId:amqp-cn-xxx, whiteListItemId:420, whiteListType:1', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => ['description' => 'The data returned for the request.', 'type' => 'any', 'example' => 'true', 'title' => ''],
                            'StatusCode' => ['description' => 'The HTTP status code. A value of 200 indicates the request was successful.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'description' => 'Schema of Response',
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'RemoveInstanceWhiteList',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"92385FD2-624A-48C9-8FB5-753F2AFA***\\",\\n  \\"Code\\": \\"200\\",\\n  \\"Message\\": \\"can not find resource: instanceId:amqp-cn-xxx, whiteListItemId:420, whiteListType:1\\",\\n  \\"Success\\": true,\\n  \\"Data\\": \\"true\\",\\n  \\"StatusCode\\": \\"200\\"\\n}","type":"json"}]',
        ],
        'UpdateInstance' => [
            'summary' => 'Upgrades or downgrades the specifications of an ApsaraMQ for RabbitMQ instance.',
            'methods' => ['post'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'high',
                'chargeType' => 'paid',
                'abilityTreeCode' => '213154',
                'abilityTreeNodes' => ['FEATUREonsQ3252I'],
            ],
            'parameters' => [
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token.', 'type' => 'string', 'example' => 'c2c5d1274axxxxxxxx', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The ID of the ApsaraMQ for RabbitMQ instance.',
                        'type' => 'string',
                        'required' => true,
                        'example' => 'amqp-cn-jtexxxxx',
                        'enum' => [],
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'ModifyType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The type of specification change. Valid values:'."\n"
                            ."\n"
                            .'- UPGRADE: Upgrade'."\n"
                            ."\n"
                            .'- DOWNGRADE: Downgrade',
                        'type' => 'string',
                        'required' => true,
                        'example' => 'UPGRADE',
                        'enum' => ['UPGRADE', 'DOWNGRADE'],
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'InstanceType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The instance type. This parameter is required for subscription instances. Valid values:'."\n"
                            ."\n"
                            .'- professional: Professional Edition'."\n"
                            ."\n"
                            .'- enterprise: Enterprise Edition'."\n"
                            ."\n"
                            .'- vip: Platinum Edition'."\n"
                            ."\n"
                            .'You do not need to specify this parameter for pay-as-you-go instances.',
                        'type' => 'string',
                        'required' => false,
                        'example' => 'professional',
                        'enum' => ['professional', 'enterprise', 'vip', 'serverless', 'provisioned'],
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'ServerlessChargeType',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The billing method of the pay-as-you-go (Serverless) instance. Valid value:'."\n"
                            ."\n"
                            .'- onDemand: Pay-as-you-go',
                        'type' => 'string',
                        'example' => 'onDemand',
                        'enum' => ['onDemand', 'provisioned'],
                        'required' => false,
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'MaxPrivateTps',
                    'in' => 'query',
                    'schema' => ['description' => 'The peak transactions per second (TPS) for private network traffic.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1000', 'title' => ''],
                ],
                [
                    'name' => 'SupportEip',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to enable Internet access.', 'type' => 'boolean', 'example' => 'false', 'default' => 'false', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'MaxEipTps',
                    'in' => 'query',
                    'schema' => ['description' => 'The peak TPS for public network traffic.', 'type' => 'integer', 'format' => 'int64', 'example' => '128', 'default' => '128', 'title' => '', 'required' => false],
                ],
                [
                    'name' => 'QueueCapacity',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of queues.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1000', 'title' => ''],
                ],
                [
                    'name' => 'MaxConnections',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum number of connections.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'required' => false, 'example' => '1000'],
                ],
                [
                    'name' => 'StorageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The message storage capacity. Unit: GB.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'required' => false, 'example' => '7'],
                ],
                [
                    'name' => 'SupportTracing',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to enable the message trace feature.', 'type' => 'boolean', 'default' => 'false', 'title' => '', 'required' => false, 'example' => 'false'],
                ],
                [
                    'name' => 'TracingStorageTime',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The retention period for message traces. Unit: days.',
                        'type' => 'integer',
                        'format' => 'int32',
                        'enum' => ['3', '7', '15'],
                        'title' => '',
                        'required' => false,
                        'example' => '3',
                    ],
                ],
                [
                    'name' => 'EncryptedInstance',
                    'in' => 'query',
                    'schema' => ['title' => '是否开通磁盘存储加密', 'description' => 'This feature is for dedicated instances only. Specifies whether to enable data encryption.'."\n"
                        ."\n"
                        .'- You cannot change the EncryptedInstance and KmsKeyId properties of a dedicated instance. This includes changing its encryption status or downgrading it to a shared instance. Do not include the EncryptedInstance and KmsKeyId parameters when you call UpdateInstance to upgrade or downgrade a dedicated instance.'."\n"
                        ."\n"
                        .'- The EncryptedInstance and KmsKeyId parameters are used only when you upgrade a shared instance to an encrypted dedicated instance.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'false'],
                ],
                [
                    'name' => 'KmsKeyId',
                    'in' => 'query',
                    'schema' => ['title' => 'kms Key Id', 'description' => 'This feature is for dedicated instances only. This parameter is required if EncryptedInstance is set to true.'."\n"
                        .'It specifies the ID of the KMS key used for data encryption.'."\n"
                        .'The key must meet the following requirements:'."\n"
                        ."\n"
                        .'- The KMS key must be in the same region as the ApsaraMQ for RabbitMQ instance.'."\n"
                        ."\n"
                        .'- The key cannot be a service key.'."\n"
                        ."\n"
                        .'- The key must be active.'."\n"
                        ."\n"
                        .'- The key must be a symmetric key.'."\n"
                        ."\n"
                        .'- The key must be used for encryption and decryption.'."\n"
                        ."\n"
                        .'- If the KMS key expires or is deleted, data reads and writes will fail, and the ApsaraMQ for RabbitMQ instance will become unavailable.', 'type' => 'string', 'required' => false, 'example' => 'key-bjj66c2a893vmhawtq5fd'],
                ],
                [
                    'name' => 'ProvisionedCapacity',
                    'in' => 'query',
                    'schema' => ['description' => 'The provisioned TPS capacity for a reserved plus elastic instance.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '2000', 'title' => ''],
                ],
                [
                    'name' => 'Edition',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The deployment architecture of the Serverless instance. Valid values:'."\n"
                            ."\n"
                            .'- shared: A shared architecture. This applies to reserved plus elastic (shared) and pay-as-you-go instances.'."\n"
                            ."\n"
                            .'- dedicated: A dedicated architecture. This applies to reserved plus elastic (dedicated) instances.',
                        'type' => 'string',
                        'enum' => ['shared', 'dedicated'],
                        'required' => false,
                        'example' => 'shared',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => 'Schema of Response',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => 'Id of the request', 'description' => 'The request ID. Each request has a unique ID. Use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '628705FD-03EE-4ABE-BB21-E1672960***'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates that the request was successful.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'InstanceNotExist', 'title' => ''],
                            'Data' => ['description' => 'The returned data. It includes the order ID and instance ID. For example:'."\n"
                                ."\n"
                                .'```json'."\n"
                                .'"Data": {'."\n"
                                .'    "instanceId": "amqp-cn-xxxxx",'."\n"
                                .'    "orderId": 22222'."\n"
                                .'  }'."\n"
                                .'```', 'type' => 'any', 'example' => '{\'instanceId\': \'rabbitmq-serverless-cn-lf63qsjlf06\', \'orderId\': 234170302080010}', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'string', 'example' => 'true', 'title' => ''],
                            'StatusCode' => ['description' => 'The status code.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'INSUFFICIENT_AVAILABLE_QUOTA', 'errorMessage' => 'Your account available limit is less than 0, please recharge before trying to purchase.', 'description' => 'Your account available limit is less than 0, please recharge before trying to purchase.'],
                    ['errorCode' => 'UpDowngradeConfigNoChange', 'errorMessage' => 'The upgrade or downgrade configuration is not changed.', 'description' => 'The upgrade or downgrade configuration is not changed, please re-select'."\n"],
                ],
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'UpdateInstance',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateInstance'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'amqp:UpdateInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [
                            ['conditionKey' => 'amqp:InstanceType', 'validationType' => 'always'],
                            ['conditionKey' => 'amqp:SupportEIP', 'validationType' => 'always'],
                            ['conditionKey' => 'amqp:ServerlessChargeType'],
                        ],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"628705FD-03EE-4ABE-BB21-E1672960***\\",\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"InstanceNotExist\\",\\n  \\"Data\\": \\"{\'instanceId\': \'rabbitmq-serverless-cn-lf63qsjlf06\', \'orderId\': 234170302080010}\\",\\n  \\"Success\\": \\"true\\",\\n  \\"StatusCode\\": \\"200\\"\\n}","type":"json"}]',
        ],
        'UpdateInstanceName' => [
            'summary' => 'An ApsaraMQ for RabbitMQ instance is named after its instance ID by default. You can change the name for easier identification.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the ApsaraMQ for RabbitMQ instance.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp-cn-zvp2ajsj****', 'title' => ''],
                ],
                [
                    'name' => 'InstanceName',
                    'in' => 'query',
                    'schema' => ['description' => 'The new name of the instance. The name can be any string of up to 64 characters.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'amqp_test', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The status code.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Message' => ['description' => 'The error message returned if the request fails.', 'type' => 'string', 'example' => 'InstanceNotExist', 'title' => ''],
                            'Data' => ['description' => 'The response data.', 'type' => 'string', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '6DC68EC9-0E76-5435-B8C0-FF9492B4****', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                404 => [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
                500 => [
                    ['errorCode' => 'InternalError', 'errorMessage' => 'The request processing has failed due to some unknown error.', 'description' => 'The request processing has failed due to some unknown error.'],
                ],
            ],
            'eventInfo' => [
                'enable' => false,
                'eventNames' => [],
            ],
            'title' => 'UpdateInstanceName',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateInstanceName'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'amqp:UpdateInstance',
                        'authLevel' => 'resource',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                        ],
                    ],
                    'additionalActions' => [
                        ['action' => 'amqp:GetInstance'],
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": 200,\\n  \\"Message\\": \\"InstanceNotExist\\",\\n  \\"Data\\": \\"true\\",\\n  \\"RequestId\\": \\"6DC68EC9-0E76-5435-B8C0-FF9492B4****\\",\\n  \\"Success\\": true\\n}","type":"json"}]',
        ],
        'UpdateInstanceServerlessSwitch' => [
            'summary' => 'Update serverless switch',
            'path' => '',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'ServerlessSwitch',
                    'in' => 'query',
                    'schema' => ['description' => 'The serverless elastic capability.'."\n"
                        ."\n"
                        .'- true (enabled): The maximum TPS of the instance is increased to the base TPS multiplied by a factor (1.5x for Professional Edition, 2x for Enterprise/Platinum Edition).'."\n"
                        ."\n"
                        .'- false (disabled): The maximum TPS of the instance is restored to the original base TPS.', 'type' => 'boolean', 'required' => false, 'example' => 'true', 'title' => ''],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request. The value of this parameter is generated by the client and must be unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.', 'type' => 'string', 'required' => false, 'example' => 'CCBB1225-C392-480E-8C7F-D09AB2CD2***', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'Id of the request', 'type' => 'string', 'example' => 'CCBB1225-C392-480E-8C7F-D09AB2CD2***'],
                            'Code' => ['description' => 'The status code.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'The result of the request.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                            'Data' => ['description' => 'The returned data.', 'type' => 'boolean', 'title' => '', 'example' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Update the elastic switch of a serverless instance',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"CCBB1225-C392-480E-8C7F-D09AB2CD2***\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\",\\n  \\"Data\\": false\\n}","type":"json"}]',
        ],
        'UpdateOpenSourceAccount' => [
            'summary' => 'Updates the username and password for open-source access.',
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSLSXRS'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-20p****04', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => true, 'example' => 'myname', 'title' => ''],
                ],
                [
                    'name' => 'Password',
                    'in' => 'query',
                    'schema' => ['description' => 'The account password.', 'type' => 'string', 'required' => false, 'example' => '123456Aa', 'title' => ''],
                ],
                [
                    'name' => 'Description',
                    'in' => 'query',
                    'schema' => ['description' => 'The remarks.', 'type' => 'string', 'required' => false, 'example' => 'project name pass the check', 'title' => ''],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request and prevent repeated submissions.', 'type' => 'string', 'required' => false, 'example' => 'f6af6bb123988d191bfe01c9a9b', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'The request ID.', 'type' => 'string', 'example' => '8BFB1C9D-08A2-4859-A47C-403C9EFA2***'],
                            'Code' => ['description' => 'The return code. A value of 200 indicates success.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the operation was successful.', 'type' => 'boolean', 'example' => 'True', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Update open-source username and password',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"8BFB1C9D-08A2-4859-A47C-403C9EFA2***\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
        ],
        'UpdateOpenSourcePermission' => [
            'methods' => ['post'],
            'schemes' => ['https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'update',
                'riskType' => 'none',
                'chargeType' => 'free',
                'abilityTreeNodes' => ['FEATUREonsSGDS5X'],
            ],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'amqp-cn-v0h1kb9nu***', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => false, 'example' => 'MyName', 'title' => ''],
                ],
                [
                    'name' => 'Vhost',
                    'in' => 'query',
                    'schema' => ['description' => 'The vhost name.', 'type' => 'string', 'required' => false, 'example' => 'production', 'title' => ''],
                ],
                [
                    'name' => 'Configure',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for configure permissions.', 'type' => 'string', 'required' => false, 'example' => '^$', 'title' => ''],
                ],
                [
                    'name' => 'Write',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for write permissions.', 'type' => 'string', 'required' => false, 'example' => 'order_exchange', 'title' => ''],
                ],
                [
                    'name' => 'Read',
                    'in' => 'query',
                    'schema' => ['description' => 'The regular expression for read permissions.', 'type' => 'string', 'required' => false, 'example' => '^$', 'title' => ''],
                ],
                [
                    'name' => 'ClientToken',
                    'in' => 'query',
                    'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.', 'type' => 'string', 'required' => false, 'example' => 'f6af6bb123988d191bfe01c9a9b', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'Id of the request', 'type' => 'string', 'example' => '021788F6-E50C-4BD6-9F80-66B0A19A****'],
                            'Code' => ['description' => 'The status code.', 'type' => 'integer', 'format' => 'int32', 'example' => '200', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Message' => ['description' => 'The returned message.', 'type' => 'string', 'example' => 'operation success', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => 'UnauthorizedOperation', 'errorMessage' => 'The request has failed due to unauthorized operation.', 'description' => 'The request has failed due to unauthorized operation.'],
                ],
                [
                    ['errorCode' => 'InstanceNotExist', 'errorMessage' => 'The instance resource does not exist.', 'description' => 'The instance resource does not exist.'],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'title' => 'Update open source permissions',
            'summary' => 'Updates open source permissions.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"021788F6-E50C-4BD6-9F80-66B0A19A****\\",\\n  \\"Code\\": 200,\\n  \\"Success\\": true,\\n  \\"Message\\": \\"operation success\\"\\n}","type":"json"}]',
        ],
    ],
    'endpoints' => [
        ['regionId' => 'cn-wulanchabu', 'regionName' => 'China (Ulanqab)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-wulanchabu.aliyuncs.com', 'endpoint' => 'amqp-open.cn-wulanchabu.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-wulanchabu.aliyuncs.com'],
        ['regionId' => 'cn-beijing', 'regionName' => 'China (Beijing)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-beijing.aliyuncs.com', 'endpoint' => 'amqp-open.cn-beijing.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-beijing.aliyuncs.com'],
        ['regionId' => 'cn-zhengzhou-jva', 'regionName' => 'Zhengzhou (China Unicom Joint Venture)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-zhengzhou-jva.aliyuncs.com', 'endpoint' => 'amqp-open.cn-zhengzhou-jva.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-zhengzhou-jva.aliyuncs.com'],
        ['regionId' => 'cn-qingdao', 'regionName' => 'China (Qingdao)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-qingdao.aliyuncs.com', 'endpoint' => 'amqp-open.cn-qingdao.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-qingdao.aliyuncs.com'],
        ['regionId' => 'cn-shanghai', 'regionName' => 'China (Shanghai)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-shanghai.aliyuncs.com', 'endpoint' => 'amqp-open.cn-shanghai.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-shanghai.aliyuncs.com'],
        ['regionId' => 'cn-hongkong', 'regionName' => 'China (Hong Kong)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-hongkong.aliyuncs.com', 'endpoint' => 'amqp-open.cn-hongkong.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-hongkong.aliyuncs.com'],
        ['regionId' => 'cn-zhangjiakou', 'regionName' => 'China (Zhangjiakou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-zhangjiakou.aliyuncs.com', 'endpoint' => 'amqp-open.cn-zhangjiakou.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-zhangjiakou.aliyuncs.com'],
        ['regionId' => 'cn-shenzhen', 'regionName' => 'China (Shenzhen)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-shenzhen.aliyuncs.com', 'endpoint' => 'amqp-open.cn-shenzhen.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-shenzhen.aliyuncs.com'],
        ['regionId' => 'ap-northeast-1', 'regionName' => 'Japan (Tokyo)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-northeast-1.aliyuncs.com', 'endpoint' => 'amqp-open.ap-northeast-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-northeast-1.aliyuncs.com'],
        ['regionId' => 'cn-chengdu', 'regionName' => 'China (Chengdu)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-chengdu.aliyuncs.com', 'endpoint' => 'amqp-open.cn-chengdu.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-chengdu.aliyuncs.com'],
        ['regionId' => 'cn-guangzhou', 'regionName' => 'China (Guangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-guangzhou.aliyuncs.com', 'endpoint' => 'amqp-open.cn-guangzhou.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-guangzhou.aliyuncs.com'],
        ['regionId' => 'ap-southeast-1', 'regionName' => 'Singapore', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-southeast-1.aliyuncs.com', 'endpoint' => 'amqp-open.ap-southeast-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-southeast-1.aliyuncs.com'],
        ['regionId' => 'ap-southeast-3', 'regionName' => 'Malaysia (Kuala Lumpur)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-southeast-3.aliyuncs.com', 'endpoint' => 'amqp-open.ap-southeast-3.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-southeast-3.aliyuncs.com'],
        ['regionId' => 'cn-huhehaote', 'regionName' => 'China (Hohhot)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-huhehaote.aliyuncs.com', 'endpoint' => 'amqp-open.cn-huhehaote.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-huhehaote.aliyuncs.com'],
        ['regionId' => 'ap-southeast-5', 'regionName' => 'Indonesia (Jakarta)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-southeast-5.aliyuncs.com', 'endpoint' => 'amqp-open.ap-southeast-5.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-southeast-5.aliyuncs.com'],
        ['regionId' => 'ap-southeast-6', 'regionName' => 'Philippines (Manila)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-southeast-6.aliyuncs.com', 'endpoint' => 'amqp-open.ap-southeast-6.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-southeast-6.aliyuncs.com'],
        ['regionId' => 'ap-southeast-7', 'regionName' => 'Thailand (Bangkok)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.ap-southeast-7.aliyuncs.com', 'endpoint' => 'amqp-open.ap-southeast-7.aliyuncs.com', 'vpc' => 'amqp-open-vpc.ap-southeast-7.aliyuncs.com'],
        ['regionId' => 'cn-hangzhou', 'regionName' => 'China (Hangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'amqp-open.cn-hangzhou.aliyuncs.com', 'endpoint' => 'amqp-open.cn-hangzhou.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-hangzhou.aliyuncs.com'],
        ['regionId' => 'us-east-1', 'regionName' => 'US (Virginia)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'amqp-open.us-east-1.aliyuncs.com', 'endpoint' => 'amqp-open.us-east-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.us-east-1.aliyuncs.com'],
        ['regionId' => 'us-west-1', 'regionName' => 'US (Silicon Valley)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'amqp-open.us-west-1.aliyuncs.com', 'endpoint' => 'amqp-open.us-west-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.us-west-1.aliyuncs.com'],
        ['regionId' => 'eu-central-1', 'regionName' => 'Germany (Frankfurt)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'amqp-open.eu-central-1.aliyuncs.com', 'endpoint' => 'amqp-open.eu-central-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.eu-central-1.aliyuncs.com'],
        ['regionId' => 'me-central-1', 'regionName' => 'Saudi Arabia (Riyadh)', 'areaId' => 'middleEast', 'areaName' => 'Middle East', 'public' => 'amqp-open.me-central-1.aliyuncs.com', 'endpoint' => 'amqp-open.me-central-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.me-central-1.aliyuncs.com'],
        ['regionId' => 'cn-beijing-finance-1', 'regionName' => 'China North 2 Finance (Preview)', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'amqp-open.cn-beijing-finance-1.aliyuncs.com', 'endpoint' => 'amqp-open.cn-beijing-finance-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-beijing-finance-1.aliyuncs.com'],
        ['regionId' => 'cn-shanghai-finance-1', 'regionName' => 'China East 2 Finance', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'amqp-open.cn-shanghai-finance-1.aliyuncs.com', 'endpoint' => 'amqp-open.cn-shanghai-finance-1.aliyuncs.com', 'vpc' => 'amqp-open-vpc.cn-shanghai-finance-1.aliyuncs.com'],
    ],
    'errorCodes' => [
        ['code' => 'InstanceNotExist', 'message' => 'The instance resource does not exist.', 'http_code' => 404, 'description' => 'The instance resource does not exist.'],
        ['code' => 'INSUFFICIENT_AVAILABLE_QUOTA', 'message' => 'Your account available limit is less than 0, please recharge before trying to purchase.', 'http_code' => 400, 'description' => 'Your account available limit is less than 0, please recharge before trying to purchase.'],
        ['code' => 'InternalError', 'message' => 'The request processing has failed due to some unknown error.', 'http_code' => 500, 'description' => 'The request processing has failed due to some unknown error.'],
        ['code' => 'InvalidParameter', 'message' => 'The specified parameter {wildCard} is invalid.', 'http_code' => 400, 'description' => 'The specified parameter {wildCard} is invalid.'],
        ['code' => 'MissingParameter', 'message' => 'You must specify the parameter {wildCard}.', 'http_code' => 400, 'description' => 'You must specify the parameter {wildCard}.'],
        ['code' => 'ResourceNotFound', 'message' => 'The resource does not exist.', 'http_code' => 404, 'description' => 'Resource does not exist'],
        ['code' => 'Throttling.Api', 'message' => 'The request was denied due to API flow control.', 'http_code' => 429, 'description' => 'The request was denied due to API flow control.'],
        ['code' => 'UnauthorizedOperation', 'message' => 'The request has failed due to unauthorized operation.', 'http_code' => 403, 'description' => 'The request has failed due to unauthorized operation.'],
        ['code' => 'UPDOWNGRADE_CONFIG_NO_CHANGE', 'message' => 'the upgrade or downgrade configuration is not changed.', 'http_code' => 400, 'description' => 'The upgrade or downgrade configuration is not changed, please re-select'],
        ['code' => 'UPDOWNGRADE_CONFIG_NO_CHANGE', 'message' => 'The upgrade or downgrade configuration is not changed.', 'http_code' => 400, 'description' => 'The upgrade or downgrade configuration is not changed, please re-select'],
        ['code' => 'UpDowngradeConfigNoChange', 'message' => 'The upgrade or downgrade configuration is not changed.', 'http_code' => 400, 'description' => 'The upgrade or downgrade configuration is not changed, please re-select'."\n"],
        ['code' => 'PARAM_ERRPR', 'message' => 'param error.', 'http_code' => 200, 'description' => 'Request parameter error'],
        ['code' => 'RemoteCallError', 'message' => 'service internal remote call failed.', 'http_code' => 400, 'description' => 'Service internal remote call failed'],
    ],
    'changeSet' => [],
    'flowControl' => [
        'flowControlList' => [
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteQueue'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateExchange'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListBindings'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDownStreamBindings'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListExchanges'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListVirtualHosts'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListAccounts'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateInstance'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteExchange'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteBinding'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueues'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListInstances'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateVirtualHost'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetMetadataAmount'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateBinding'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteAccount'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateInstance'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueueConsumers'],
            ['threshold' => '100', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateAccount'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateInstanceName'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'CreateQueue'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetInstance'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListExchangeUpStreamBindings'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteVirtualHost'],
            ['threshold' => '10', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListQueueUpStreamBindings'],
        ],
    ],
    'ram' => [
        'productCode' => 'Amqp',
        'productName' => 'ApsaraMQ',
        'ramCodes' => ['amqp'],
        'ramLevel' => 'RESOURCE',
        'ramConditions' => [
            [
                'name' => 'amqp:InstanceType',
                'schema' => [
                    'type' => 'String',
                    'description' => 'The primary edition of the instance',
                    'enums' => ['professional', 'enterprise', 'vip'],
                ],
            ],
            [
                'name' => 'amqp:SupportEIP',
                'schema' => [
                    'type' => 'String',
                    'description' => 'whether to enable the Internet access feature',
                    'enums' => ['true', 'false'],
                ],
            ],
            [
                'name' => 'amqp:ServerlessChargeType',
                'schema' => [
                    'type' => 'String',
                    'description' => 'Serverless instance billing type',
                    'enums' => ['onDemand'],
                ],
            ],
        ],
        'ramActions' => [
            [
                'apiName' => 'UpdateInstance',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'amqp:UpdateInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [
                        ['conditionKey' => 'amqp:InstanceType', 'validationType' => 'always'],
                        ['conditionKey' => 'amqp:SupportEIP', 'validationType' => 'always'],
                        ['conditionKey' => 'amqp:ServerlessChargeType'],
                    ],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetMetadataAmount',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListDownStreamBindings',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                    ['action' => 'amqp:ListQueue', 'validationType' => 'always'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteBinding',
                'description' => '',
                'operationType' => 'delete',
                'additionalActions' => [
                    ['action' => 'amqp:CreateExchange', 'validationType' => 'conditional'],
                    ['action' => 'amqp:CreateQueue'],
                    ['action' => 'amqp:GetVhost'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetExchange',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#VirtualHostName}/queues/*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListQueueUpStreamBindings',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:ListQueue'],
                    ['action' => 'amqp:ListExchange'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetInstance',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateBinding',
                'description' => '',
                'operationType' => 'create',
                'additionalActions' => [
                    ['action' => 'amqp:CreateExchange', 'validationType' => 'conditional'],
                    ['action' => 'amqp:CreateQueue'],
                    ['action' => 'amqp:GetVhost'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetExchange',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#vhostName}/queues/*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListVirtualHosts',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:ListVhost',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateQueue',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'amqp:CreateQueue',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/queues/*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteVirtualHost',
                'description' => '',
                'operationType' => 'delete',
                'additionalActions' => [
                    ['action' => 'amqp:GetVhost'],
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:DeleteVhost',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListExchangeUpStreamBindings',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                    ['action' => 'amqp:ListQueue', 'validationType' => 'always'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateAccount',
                'description' => '',
                'operationType' => 'create',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:FetchStaticAccount',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListInstanceWhiteList',
                'description' => '',
                'operationType' => 'list',
                'ramAction' => [
                    'action' => 'amqp:ListInstanceWhiteList',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateExchange',
                'description' => '',
                'operationType' => 'create',
                'additionalActions' => [
                    ['action' => 'amqp:GetVhost'],
                ],
                'ramAction' => [
                    'action' => 'amqp:CreateExchange',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/*'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateInstance',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'amqp:CreateInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [
                        ['conditionKey' => 'amqp:InstanceType', 'validationType' => 'always'],
                        ['conditionKey' => 'amqp:SupportEIP', 'validationType' => 'always'],
                        ['conditionKey' => 'amqp:ServerlessChargeType'],
                    ],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListQueueConsumers',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetQueue',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListQueues',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:ListQueue',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'UpdateInstanceName',
                'description' => '',
                'operationType' => 'update',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:UpdateInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListInstances',
                'description' => '',
                'operationType' => 'list',
                'ramAction' => [
                    'action' => 'amqp:ListInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListBindings',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:ListQueue'],
                    ['action' => 'amqp:ListExchange'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListAccounts',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:ListStaticAccounts',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteAccount',
                'description' => '',
                'operationType' => 'delete',
                'additionalActions' => [
                    ['action' => 'amqp:GetInstance'],
                ],
                'ramAction' => [
                    'action' => 'amqp:DeleteStaticAccount',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteQueue',
                'description' => '',
                'operationType' => 'delete',
                'ramAction' => [
                    'action' => 'amqp:DeleteQueue',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/queues/{#queueName}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListExchanges',
                'description' => '',
                'operationType' => 'list',
                'additionalActions' => [
                    ['action' => 'amqp:ListExchange', 'validationType' => 'always'],
                ],
                'ramAction' => [
                    'action' => 'amqp:GetInstance',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteExchange',
                'description' => '',
                'operationType' => 'delete',
                'additionalActions' => [
                    ['action' => 'amqp:GetVhost'],
                ],
                'ramAction' => [
                    'action' => 'amqp:DeleteExchange',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/{#exchangeName}'],
                    ],
                ],
            ],
            [
                'apiName' => 'CreateVirtualHost',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'amqp:CreateVhost',
                    'authLevel' => 'resource',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Amqp', 'resourceType' => 'VirtualHost', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/*'],
                    ],
                ],
            ],
        ],
        'resourceTypes' => [
            ['validationType' => 'always', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}'],
            ['validationType' => 'always', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:instances/{#InstanceId}'],
            ['validationType' => 'always', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#VirtualHostName}/queues/*'],
            ['validationType' => 'always', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#InstanceId}/vhosts/{#vhostName}/queues/*'],
            ['validationType' => 'always', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/*'],
            ['validationType' => 'always', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/*'],
            ['validationType' => 'always', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:instance/{#InstanceId}'],
            ['validationType' => 'always', 'resourceType' => 'Instance', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instance/{#InstanceId}'],
            ['validationType' => 'always', 'resourceType' => 'Queue', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/queues/{#queueName}'],
            ['validationType' => 'always', 'resourceType' => 'Exchange', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/{#vhostName}/exchanges/{#exchangeName}'],
            ['validationType' => 'always', 'resourceType' => 'VirtualHost', 'arn' => 'acs:amqp:{#regionId}:{#accountId}:/instances/{#instanceId}/vhosts/*'],
        ],
    ],
];