summaryrefslogtreecommitdiff
path: root/data/en_us/linkcard/2021-05-20/api-docs.php
blob: 01704700c2e3ec236fd8622dd0756dbab595830d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'RPC', 'product' => 'Linkcard', 'version' => '2021-05-20'],
    'directories' => [
        [
            'children' => ['Renew', 'StopSingleCard', 'ResumeSingleCard', 'RebindResumeSingleCard', 'ForceActivation', 'SetCardStopRule', 'UpdateAutoRechargeSwitch', 'GetCredentialPoolStatistics', 'GetCardFlowInfo', 'GetCardDetail', 'ListCardInfo', 'ListOrder'],
            'type' => 'directory',
            'title' => 'Card',
        ],
        [
            'children' => ['AddDirectionalCard', 'AddDirectionalGroup', 'BatchAddDirectionalAddress', 'ListDirectionalAddress', 'ListDirectionalDetail', 'VerifyIotCard'],
            'type' => 'directory',
            'title' => 'Directed service',
        ],
        [
            'children' => ['AddTagsToCard', 'GetSimCardStateDistribution', 'AddDirectionalAddress', 'DeleteDirectionalAddress', 'DeleteDirectionalGroup', 'GetCardStatusStatistics', 'GetCardRealStatus', 'GetCardLatestFlow', 'AddCardToDirectionalGroup', 'GetRealNameStatus', 'SendMessage'],
            'type' => 'directory',
            'title' => 'Other',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'AddCardToDirectionalGroup' => [
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'IccidList',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The collection of ICCID values for the cards. The maximum number of ICCIDs is 200.',
                        'type' => 'array',
                        'items' => ['description' => 'ICCID。', 'type' => 'string', 'required' => true, 'example' => '1111****6225', 'title' => ''],
                        'required' => true,
                        'maxItems' => 200,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'example' => '10000002595', 'title' => ''],
                ],
                [
                    'name' => 'SerialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The request number. Supports idempotence.', 'type' => 'string', 'required' => true, 'example' => '123123', 'title' => ''],
                ],
                [
                    'name' => 'AddType',
                    'in' => 'query',
                    'schema' => ['description' => 'The method used to add cards. Valid values:'."\n"
                        ."\n"
                        .'NEW: imports only the cards that are not assigned to any group.'."\n"
                        ."\n"
                        .'TRANSFER: imports all cards. The cards are removed from their original groups.', 'type' => 'string', 'required' => true, 'example' => 'NEW', 'title' => ''],
                ],
                [
                    'name' => 'MsgNotify',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to push a notification through MQ after successful execution. Default value: false. Valid values: '."\n"
                        ."\n"
                        .'false: does not push a notification. '."\n"
                        ."\n"
                        .'true: pushes a notification.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'ApiProduct',
                    'in' => 'formData',
                    'schema' => ['description' => 'Linkcard.', 'type' => 'string', 'required' => false, 'example' => 'Linkcard', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'AddCardToDirectionalGroupResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. The identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful. Valid values:'."\n"
                                ."\n"
                                .'true: The call was successful.'."\n"
                                ."\n"
                                .'false: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The return code. Valid values:'."\n"
                                ."\n"
                                .'200: The call was successful.'."\n"
                                ."\n"
                                .'Other values: The call failed. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language corresponding to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The request result.',
                                'type' => 'object',
                                'properties' => [
                                    'Result' => ['description' => 'Indicates whether the execution was successful. Valid values:'."\n"
                                        ."\n"
                                        .'true: The cards were added successfully.'."\n"
                                        ."\n"
                                        .'false: The cards failed to be added.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                    'SerialNo' => ['description' => 'The request number. The idempotence sequence number.', 'type' => 'string', 'example' => '123213', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"Result\\": true,\\n    \\"SerialNo\\": \\"123213\\"\\n  }\\n}","type":"json"}]',
            'title' => 'Add cards to a specified group',
            'summary' => 'Adds cards to a specified group.',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:29.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddCardToDirectionalGroup'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:AddCardToDirectionalGroup',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard:*:{#accountId}:directionalmanage/{#DirectionalManageId}'],
                        ],
                    ],
                ],
            ],
        ],
        'AddDirectionalAddress' => [
            'summary' => 'Adds a destination address to a targeted group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '10000002595', 'title' => ''],
                ],
                [
                    'name' => 'Source',
                    'in' => 'query',
                    'schema' => ['description' => 'The address type. Valid values:'."\n"
                        ."\n"
                        .'- user_defined: user-defined configuration.'."\n"
                        .'- aliyun_defined: Alibaba Cloud predefined configuration.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'user_defined', 'title' => ''],
                ],
                [
                    'name' => 'AddressType',
                    'in' => 'query',
                    'schema' => ['description' => 'The destination address type. Valid values:'."\n"
                        ."\n"
                        .'- Ip: IP address.'."\n"
                        .'- Domain: domain name.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'Domain', 'title' => ''],
                ],
                [
                    'name' => 'Address',
                    'in' => 'query',
                    'schema' => ['description' => 'The destination address.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '*.aliyun.com', 'title' => ''],
                ],
                [
                    'name' => 'SerialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The request number. This parameter supports idempotence.', 'type' => 'string', 'required' => false, 'example' => '123123', 'title' => ''],
                ],
                [
                    'name' => 'MsgNotify',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to push a notification through MQ after successful execution. Default value: false. Valid values:'."\n"
                        .'- false: does not push a notification.'."\n"
                        .'- true: pushes a notification (currently not supported).', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'UrlInsecurityForce',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to forcibly add a detected high-risk domain name. By default, the domain name is blocked and not added.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'Indicates whether the address is added. Valid values:'."\n"
                                ."\n"
                                .'- true: The address is added.'."\n"
                                .'- false: The address failed to be added.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful. Valid values:'."\n"
                                ."\n"
                                .'- true: The call is successful.'."\n"
                                .'- false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code. Valid values:'."\n"
                                ."\n"
                                .'- 200: The call is successful.'."\n"
                                .'- Other values: The call failed. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Add destination address to targeted group',
            'changeSet' => [
                ['createdAt' => '2023-05-15T08:04:50.000Z', 'description' => 'Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalAddress'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:AddDirectionalAddress',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'AddDirectionalCard' => [
            'summary' => 'Imports directional cards into a directional group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the directional group.'."\n"
                        ."\n"
                        .'You can call the [GetCardDetail](~~374328~~) operation and view the directional group ID (DirectionalGroupId) in the response parameters.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '5', 'title' => ''],
                ],
                [
                    'name' => 'UploadType',
                    'in' => 'query',
                    'schema' => ['description' => 'The import type. Valid values:'."\n"
                        ."\n"
                        .'- **NO_GROUP**: imports only directional cards that have not been assigned to a group.'."\n"
                        ."\n"
                        .'- **ALL**: imports all directional cards.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'ALL', 'title' => ''],
                ],
                [
                    'name' => 'UploadMethod',
                    'in' => 'query',
                    'schema' => ['description' => 'The import method. Valid values:'."\n"
                        ."\n"
                        .'- **TAG**: imports directional cards with the specified tags.'."\n"
                        ."\n"
                        .'- **ORDER**: imports directional cards from the specified orders.'."\n"
                        ."\n"
                        .'- **FILE**: imports directional cards from a batch file.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'TAG', 'title' => ''],
                ],
                [
                    'name' => 'TagList',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The list of tag IDs. This parameter is required when the import method is set to TAG.',
                        'type' => 'array',
                        'items' => ['description' => 'The tag ID. This parameter is required when the import method is set to TAG.'."\n"
                            ."\n"
                            .'You can view tag IDs on the **SIM Card Management** > **Tag Management** page in the IoT Wireless Connection Service console.', 'type' => 'string', 'required' => false, 'example' => '5', 'title' => ''],
                        'required' => true,
                        'docRequired' => true,
                        'maxItems' => 100,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'OrderList',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The list of order IDs. This parameter is required when the import method is set to ORDER.',
                        'type' => 'array',
                        'items' => ['description' => 'The order ID. This parameter is required when the import method is set to ORDER.'."\n"
                            ."\n"
                            .'You can view order IDs on the **Order Statistics** > **Order Management** page in the IoT Wireless Connection Service console.', 'type' => 'string', 'required' => false, 'example' => '2172***80589', 'title' => ''],
                        'required' => false,
                        'maxItems' => 50,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'FileUri',
                    'in' => 'query',
                    'schema' => ['description' => 'The OSS path of the batch file. This parameter is required when the import method is set to FILE.', 'type' => 'string', 'required' => false, 'example' => 'https://linkcard-user-online.oss-cn-zhangjiakou.aliyuncs.com/DIRECTIONAL_GROUP/20220811/xxxx.csv', 'title' => ''],
                ],
                [
                    'name' => 'GroupName',
                    'in' => 'query',
                    'schema' => ['description' => 'The name of the directional group.', 'type' => 'string', 'required' => false, 'example' => '测试分组', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'Indicates whether the import was successful. Valid values:'."\n"
                                ."\n"
                                .'- **true**: The import was successful.'."\n"
                                ."\n"
                                .'- **false**: The import failed.', 'type' => 'string', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful. Valid values:'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code. Valid values:'."\n"
                                ."\n"
                                .'- 200: The call was successful.'."\n"
                                ."\n"
                                .'- Other values: The call failed. For more information about error codes, see [Error codes](~~87387~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": \\"true\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Import directional cards into a directional group',
            'description' => '## Usage notes'."\n"
                .'Directional cards are IoT cards that can access only specified addresses. You can call the [VerifyIotCard](~~446797~~) operation to check whether an IoT card is a directional card.',
            'requestParamsDescription' => 'When you invoke this operation, you must specify the operation-specific request parameters described in this topic and the common request parameters. For more information about common request parameters, see [Common parameters](~~30561~~). For the metric description of each parameter, see the preceding parameter description.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalCard'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'linkcard:AddDirectionalCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'AddDirectionalGroup' => [
            'summary' => 'Creates a directional group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [
                [
                    'name' => 'GroupName',
                    'in' => 'query',
                    'schema' => ['description' => 'The name of the directional group.'."\n"
                        ."\n"
                        .'The group name supports Chinese characters, English letters, digits, and underscores (_), with a maximum length of 30 characters.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'maxLength' => 30, 'minLength' => 0, 'example' => '测试分组', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The directional group ID.'."\n"
                                ."\n"
                                .'Record the directional group ID. You need to specify the directional group ID when you call other API operations later. For example, when you call the [AddDirectionalCard](~~446808~~) operation to import IoT cards into the directional group, you need to specify the directional group ID.', 'type' => 'integer', 'format' => 'int64', 'example' => '6', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for this request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the API call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the API call is successful.'."\n"
                                .'- **true**: The API call is successful.'."\n"
                                .'- **false**: The API call fails.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language corresponding to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- 200: The call is successful.'."\n"
                                ."\n"
                                .'- Others: The call fails. For more information about error codes, see [Error codes](~~87387~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": 6,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'CreateDirectionalGroup',
            'description' => '## Usage notes'."\n"
                .'Only the new version of the directional service menu supports the directional group feature. If you are using the old version of the directional service menu, you cannot use this API operation. For more information, see [Directional service](~~279455~~).',
            'changeSet' => [
                ['createdAt' => '2022-08-09T11:58:12.000Z', 'description' => 'Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalGroup'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'linkcard:AddDirectionalGroup',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard::{#accountId}:directionalmanage/*'],
                        ],
                    ],
                ],
            ],
        ],
        'AddTagsToCard' => [
            'summary' => 'Add Tags to IoT Card',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the IoT SIM Service console.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'TagNameList',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The tag names.',
                        'type' => 'array',
                        'items' => ['description' => 'The tag name.'."\n"
                            ."\n"
                            .'If this parameter is empty or an empty collection, all tags are removed from the card.'."\n"
                            ."\n"
                            .'If the specified tag does not exist, the tag is automatically created and applied to the card.', 'type' => 'string', 'required' => false, 'example' => '测试标签', 'title' => ''],
                        'required' => false,
                        'maxItems' => 4,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: The request is successful. Other values: error codes. For more information about error codes, see Error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'Data' => [
                                'description' => 'The collection of existing tags on the card.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'TagName' => ['description' => 'The tag name.', 'type' => 'string', 'example' => '测试标签', 'title' => ''],
                                        'TagId' => ['description' => 'The tag ID.', 'type' => 'string', 'example' => '14', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. It is a unique identifier that Alibaba Cloud generates for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                ."\n"
                                .'true: The call is successful. false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"Data\\": [\\n    {\\n      \\"TagName\\": \\"测试标签\\",\\n      \\"TagId\\": \\"14\\"\\n    }\\n  ],\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true\\n}","type":"json"}]',
            'title' => 'AddTagsToCard',
            'changeSet' => [
                ['createdAt' => '2023-06-29T05:50:10.000Z', 'description' => 'Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddTagsToCard'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:AddTagsToCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'BatchAddDirectionalAddress' => [
            'summary' => 'Adds access addresses to a directional group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the directional group.'."\n"
                        ."\n"
                        .'You can call the [GetCardDetail](~~374328~~) operation to obtain the directional group ID (DirectionalGroupId) from the response parameters.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '5', 'title' => ''],
                ],
                [
                    'name' => 'Source',
                    'in' => 'query',
                    'schema' => ['description' => 'The address source. Valid values:'."\n"
                        ."\n"
                        .'- **user_defined**: user-defined.'."\n"
                        ."\n"
                        .'- **aliyun_defined**: Alibaba Cloud predefined.', 'type' => 'string', 'required' => true, 'example' => 'user_defined', 'title' => ''],
                ],
                [
                    'name' => 'AddressType',
                    'in' => 'query',
                    'schema' => ['description' => 'The address type. Valid values:'."\n"
                        ."\n"
                        .'- **Ip**: IP address.'."\n"
                        ."\n"
                        .'- **Domain**: domain name.', 'type' => 'string', 'required' => true, 'example' => 'Domain', 'title' => ''],
                ],
                [
                    'name' => 'ListAddress',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => 'The directional addresses.',
                        'type' => 'array',
                        'items' => ['description' => 'The specific address. A maximum of 10 addresses are supported.', 'type' => 'string', 'required' => false, 'example' => '*.aliyun.com', 'title' => ''],
                        'required' => true,
                        'maxItems' => 10,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'BatchAddDirectionalAddressResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful. Valid values:'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- 200: The call was successful.'."\n"
                                ."\n"
                                .'- Other codes: The call failed. For more information, see [Error codes](~~87387~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => ['description' => 'Indicates whether the addresses were added. Valid values:'."\n"
                                ."\n"
                                .'- true: The addresses were added.'."\n"
                                ."\n"
                                .'- false: The addresses failed to be added.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": true\\n}","type":"json"}]',
            'title' => 'Add directional addresses',
            'description' => '## Usage notes'."\n"
                .'Only the new directional service menu supports the directional group feature. If you use the legacy directional service menu, you cannot call this operation. For more information, see [Directional service](~~279455~~).',
            'requestParamsDescription' => 'When you invoke this operation, you must include common request parameters in addition to the operation-specific request parameters described in this topic. For more information about common request parameters, see [Common parameters](~~30561~~). For the metric description of each parameter, see the request parameter section.',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:28.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-08-09T12:00:23.000Z', 'description' => 'OpenAPI offline'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'BatchAddDirectionalAddress'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'linkcard:BatchAddDirectionalAddress',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'DeleteDirectionalAddress' => [
            'summary' => 'Delete a target address from a directional group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '10000002595', 'title' => ''],
                ],
                [
                    'name' => 'Address',
                    'in' => 'query',
                    'schema' => ['description' => 'The target address.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '*.aliyun.com', 'title' => ''],
                ],
                [
                    'name' => 'SerialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The serial number of the request, which supports idempotency.', 'type' => 'string', 'required' => false, 'example' => '123123', 'title' => ''],
                ],
                [
                    'name' => 'MsgNotify',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to send a notification through MQ after successful execution. Default value: false.'."\n"
                        ."\n"
                        .'false: The notification is not sent.'."\n"
                        ."\n"
                        .'true: The notification is sent.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'Indicates whether the operation was successful.'."\n"
                                ."\n"
                                .'true: The operation was successful.'."\n"
                                ."\n"
                                .'false: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned if the request fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the request was successful.'."\n"
                                ."\n"
                                .'true: The request was successful. false: The request failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: The request was successful.'."\n"
                                ."\n"
                                .'Other values: The request failed. For more information about error codes, see Error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Delete Target Address from Directional Group',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteDirectionalAddress'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:DeleteDirectionalAddress',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'DeleteDirectionalGroup' => [
            'summary' => 'Deletes a targeted group.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The group ID.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '10000002595', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'The response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'Indicates whether the operation was successful.'."\n"
                                ."\n"
                                .'Valid values:'."\n"
                                .'- true: The operation was successful.'."\n"
                                .'- false: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned if the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'Valid values:'."\n"
                                .'- true: The call was successful.'."\n"
                                .'- false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: The call was successful.'."\n"
                                ."\n"
                                .'Other values: The call failed. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Delete a targeted group',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:28.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteDirectionalGroup'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:DeleteDirectionalGroup',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ForceActivation' => [
            'summary' => 'Forcibly activates a card with the same-tier plan to expand the shared traffic pool.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'DateType',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan type. Valid values:'."\n"
                        ."\n"
                        .'- **sameflowcard**: same-tier general traffic plan.'."\n"
                        ."\n"
                        .'- **directional_sameflowcard**: same-tier directional traffic plan.', 'type' => 'string', 'required' => false, 'docRequired' => true, 'example' => 'sameflowcard', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result. Valid values:'."\n"
                                ."\n"
                                .'- **true**: Succeeded.'."\n"
                                ."\n"
                                .'- **false**: Failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful. Valid values:'."\n"
                                .'- **true**: Successful.'."\n"
                                .'- **false**: Failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code. Valid values:'."\n"
                                ."\n"
                                .'- **200**: Success.'."\n"
                                .'- Other values: Error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.ForceActivationSameFlowCard', 'errorMessage' => 'Only cards in the same flow support forced activation.', 'description' => 'Only same flow card can be force activation.'],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.check.OnlyUnusedCanForceActivation', 'errorMessage' => 'Only unused cards support forced activation.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Forcibly activate a card',
            'description' => '## Limits'."\n"
                ."\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for invoking this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'In addition to the operation-specific request parameters described in this topic, you must also specify common request parameters when you call this operation. For more information, see [Common parameters](~~375336~~).',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:27.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2023-06-29T06:51:32.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ForceActivation'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:ForceActivation',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCardDetail' => [
            'summary' => 'Query card detail information.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card, or view it on the **Card Management** page in the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'ShowPsim',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to display the detail information of sub-cards. Default value: false.'."\n"
                        ."\n"
                        .'- **true**: Yes.'."\n"
                        .'- **false**: No.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID of the IoT card.'."\n"
                        ."\n"
                        .'This parameter is required only when the queried IoT card has been canceled (i.e., **DestroyCard** is **true**).'."\n"
                        ."\n"
                        .'You can call the [ListCardInfo](~~425529~~) API and view the instance ID (VsimInstanceId) of the IoT card in the response parameters.', 'type' => 'string', 'required' => false, 'docRequired' => false, 'example' => '411****', 'title' => ''],
                ],
                [
                    'name' => 'DestroyCard',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether the queried IoT card has been canceled. Default value: false.'."\n"
                        ."\n"
                        .'- **true**: Yes.'."\n"
                        .'- **false**: No.', 'type' => 'boolean', 'required' => false, 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'Response parameters.',
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The API return code.'."\n"
                                ."\n"
                                .'- **200**: Success.'."\n"
                                .'- Others: Error codes. For details about error codes, see [Error Codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, an identifier generated by Alibaba Cloud for this request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                .'- **true**: The call is successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the corresponding language based on the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The detail information of the IoT card.',
                                'type' => 'object',
                                'properties' => [
                                    'ListPsimCards' => [
                                        'description' => 'The sub-card details of the multi-network card.',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'The sub-card details of the multi-network card.',
                                            'type' => 'object',
                                            'properties' => [
                                                'Status' => ['description' => 'The status of the IoT card.'."\n"
                                                    ."\n"
                                                    .'- **10**: Testable.'."\n"
                                                    ."\n"
                                                    .'- **20**: Unused.'."\n"
                                                    ."\n"
                                                    .'- **30**: In use.'."\n"
                                                    ."\n"
                                                    .'- **35**: Deactivated.'."\n"
                                                    ."\n"
                                                    .'- **40**: Suspended.'."\n"
                                                    ."\n"
                                                    .'- **50**: Canceled.', 'type' => 'string', 'example' => '35', 'title' => ''],
                                                'PrivateNetworkSegment' => ['description' => 'The private network segment (directional card).', 'type' => 'string', 'example' => '*.2.*.4', 'title' => ''],
                                                'OsStatus' => ['description' => 'The specific status of the IoT card.'."\n"
                                                    ."\n"
                                                    .'- **10**: Testing period.'."\n"
                                                    .'- **20**: Silent period.'."\n"
                                                    .'- **100**: In use.'."\n"
                                                    .'- **130**: Test period rebinding deactivation.'."\n"
                                                    .'- **150**: Partially in use.'."\n"
                                                    .'- **200**: Voluntarily deactivated.'."\n"
                                                    .'- **300**: Deactivated due to data cap.'."\n"
                                                    .'- **400**: Deactivated due to credit control.'."\n"
                                                    .'- **500**: Deactivated due to rebinding.'."\n"
                                                    .'- **600**: Deactivated due to real-name verification.'."\n"
                                                    .'- **700**: Deactivated due to anomaly.'."\n"
                                                    .'- **40**: Suspended.'."\n"
                                                    .'- **50**: Canceled.', 'type' => 'string', 'example' => '300', 'title' => ''],
                                                'CertifyStatus' => ['description' => 'The real-name authentication status.'."\n"
                                                    ."\n"
                                                    .'- **1**: Not authenticated.'."\n"
                                                    ."\n"
                                                    .'- **2**: Authenticated.', 'type' => 'string', 'example' => '2', 'title' => ''],
                                                'ApnName' => ['description' => 'The APN name.', 'type' => 'string', 'example' => 'cmiot', 'title' => ''],
                                                'PeriodAddFlow' => ['description' => 'The cumulative data usage in the current period.', 'type' => 'string', 'example' => '130.00MB', 'title' => ''],
                                                'Iccid' => ['description' => 'The ICCID of the sub-card.', 'type' => 'string', 'example' => '89860321******15668', 'title' => ''],
                                                'Vendor' => ['description' => 'The carrier.'."\n"
                                                    ."\n"
                                                    .'- **CMCC**: China Mobile.'."\n"
                                                    ."\n"
                                                    .'- **CUCC**: China Unicom.'."\n"
                                                    ."\n"
                                                    .'- **CTCC**: China Telecom.', 'type' => 'string', 'example' => 'CMCC', 'title' => ''],
                                                'PeriodSmsUse' => ['description' => 'The SMS usage in the current period.', 'type' => 'string', 'example' => '0', 'title' => ''],
                                                'Imsi' => [
                                                    'description' => 'The IMSI of the sub-card.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The IMSI of the sub-card.', 'type' => 'string', 'example' => '460081937******', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'Msisdn' => [
                                                    'description' => 'The MSISDN of the sub-card.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The MSISDN of the sub-card.', 'type' => 'string', 'example' => '1411111******', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'OpenSms' => ['description' => 'The SMS function activation status.'."\n"
                                                    ."\n"
                                                    .' - **true**: Enabled.'."\n"
                                                    ."\n"
                                                    .'- **false**: Disabled.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                                'Ip' => [
                                                    'description' => 'The IP address of the IoT card.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The IP address of the IoT card.', 'type' => 'string', 'example' => '1.1.*.*', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'VsimCardInfo' => [
                                        'description' => 'The details of the IoT card.'."\n"
                                            ."\n"
                                            .'When querying multi-network cards, this displays the virtual card information.',
                                        'type' => 'object',
                                        'properties' => [
                                            'Status' => ['description' => 'The status of the IoT card.'."\n"
                                                ."\n"
                                                .'- **10**: Testable.'."\n"
                                                ."\n"
                                                .'- **20**: Unused.'."\n"
                                                ."\n"
                                                .'- **30**: In use.'."\n"
                                                ."\n"
                                                .'- **35**: Deactivated.'."\n"
                                                ."\n"
                                                .'- **40**: Suspended.'."\n"
                                                ."\n"
                                                .'- **50**: Canceled.', 'type' => 'string', 'example' => '35', 'title' => ''],
                                            'DataType' => ['description' => 'The data type.'."\n"
                                                ."\n"
                                                .'- **singlecard**: Single card general data.'."\n"
                                                ."\n"
                                                .'- **directionalcard**: Single card directional data.'."\n"
                                                ."\n"
                                                .'- **sameflowcard**: Same-tier pool shared data.'."\n"
                                                ."\n"
                                                .'- **directional_sameflowcard**: Same-tier pool shared directional data.'."\n"
                                                ."\n"
                                                .'- **unityPayPool**: Unified payment pool general data.'."\n"
                                                ."\n"
                                                .'- **GREcard**: Unified payment pool directional data.', 'type' => 'string', 'example' => 'sameflowcard', 'title' => ''],
                                            'CardLimitSpeedThreshold' => ['description' => 'The data cap speed limit threshold of the IoT card, in KB. (Not supported yet)', 'type' => 'integer', 'format' => 'int32', 'example' => '1024', 'title' => ''],
                                            'PeriodRestFlow' => ['description' => 'The remaining data in the current period.', 'type' => 'string', 'example' => '130.00MB', 'title' => ''],
                                            'DirectionalGroupName' => ['description' => 'The directional group name.', 'type' => 'string', 'example' => '测试分组', 'title' => ''],
                                            'CredentialType' => ['description' => 'The plan credential type.'."\n"
                                                ."\n"
                                                .'- Single card plan example: CT-SC-M-1-30M (Carrier-Plan type-Plan cycle-Pricing version-Data package tier).'."\n"
                                                ."\n"
                                                .'- Same-tier pool plan example: CM-SF-M-3-100M (Carrier-Plan type-Plan cycle-Pricing version-Data package tier).'."\n"
                                                ."\n"
                                                .'- Unified payment pool plan example: CU-UPG-M-2-Pool ID (Carrier-Plan type-Plan cycle-Pricing version-Pool ID).', 'type' => 'string', 'example' => 'CT-SC-M-1-30M', 'title' => ''],
                                            'PeriodAddFlow' => ['description' => 'The cumulative data usage in the current period.', 'type' => 'string', 'example' => '0KB', 'title' => ''],
                                            'DirectionalGroupId' => ['description' => 'The directional group ID.', 'type' => 'string', 'example' => '22', 'title' => ''],
                                            'PeriodSmsUse' => ['description' => 'The SMS usage in the current period.', 'type' => 'string', 'example' => '0', 'title' => ''],
                                            'OsStatus' => ['description' => 'The specific status of the IoT card.'."\n"
                                                ."\n"
                                                .'- **10**: Testing period.'."\n"
                                                ."\n"
                                                .'- **20**: Silent period.'."\n"
                                                ."\n"
                                                .'- **100**: In use.'."\n"
                                                ."\n"
                                                .'- **150**: Partially in use.'."\n"
                                                ."\n"
                                                .'- **200**: Voluntarily deactivated.'."\n"
                                                ."\n"
                                                .'- **300**: Deactivated due to data cap.'."\n"
                                                ."\n"
                                                .'- **400**: Deactivated due to credit control.'."\n"
                                                ."\n"
                                                .'- **500**: Deactivated due to rebinding.'."\n"
                                                ."\n"
                                                .'- **600**: Deactivated due to real-name verification.'."\n"
                                                ."\n"
                                                .'- **700**: Deactivated due to anomaly.'."\n"
                                                ."\n"
                                                .'- **40**: Suspended.'."\n"
                                                ."\n"
                                                .'- **50**: Canceled.', 'type' => 'string', 'example' => '200', 'title' => ''],
                                            'NotifyId' => ['description' => 'The notification ID of the automation rule.', 'type' => 'string', 'example' => '11111', 'title' => ''],
                                            'DataLevel' => ['description' => 'The data package tier.', 'type' => 'string', 'example' => '30MB', 'title' => ''],
                                            'TagList' => [
                                                'description' => 'The tags of the IoT card.',
                                                'type' => 'array',
                                                'items' => [
                                                    'description' => 'The tag list.',
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'TagName' => ['description' => 'The tag name.', 'type' => 'string', 'example' => '测试标签', 'title' => ''],
                                                        'Id' => ['description' => 'The tag ID.', 'type' => 'integer', 'format' => 'int64', 'example' => '24', 'title' => ''],
                                                    ],
                                                    'example' => 'TestTag',
                                                    'title' => '',
                                                ],
                                                'example' => '测试标签',
                                                'title' => '',
                                            ],
                                            'AliyunOrderId' => ['description' => 'The order ID associated with the IoT card.', 'type' => 'string', 'example' => '211519634******', 'title' => ''],
                                            'AliFee' => ['description' => 'The pricing version.', 'type' => 'string', 'example' => 'ali_2', 'title' => ''],
                                            'ActiveType' => ['description' => 'The activation method.'."\n"
                                                ."\n"
                                                .'- **first_data_record**: First CDR activation.'."\n"
                                                ."\n"
                                                .'- **carrier_status_push**: Carrier status push activation.'."\n"
                                                ."\n"
                                                .'- **silence_expire**: Silent period expiration activation.'."\n"
                                                ."\n"
                                                .'- **manage**: Manual activation.'."\n"
                                                ."\n"
                                                .'- **test_flow_depleted**: Test data overage activation.', 'type' => 'string', 'example' => 'first_data_record', 'title' => ''],
                                            'IsAutoRecharge' => ['description' => 'Indicates whether the plan auto-renews.'."\n"
                                                ."\n"
                                                .'- **true**: Yes.'."\n"
                                                ."\n"
                                                .'- **false**: No.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                            'AutoLimitResume' => ['description' => 'Indicates whether to automatically resume the next month after data cap deactivation.'."\n"
                                                ."\n"
                                                .'- **true**: Yes.'."\n"
                                                ."\n"
                                                .'- **false**: No.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                            'CredentialInstanceId' => ['description' => 'The credential instance ID.', 'type' => 'string', 'example' => '2622***', 'title' => ''],
                                            'CredentialLimitSpeedThreshold' => ['description' => 'The credential data cap speed limit threshold, in KB. (Not supported yet).', 'type' => 'integer', 'format' => 'int32', 'example' => '1024', 'title' => ''],
                                            'ExpireTime' => ['description' => 'The plan expiration time.', 'type' => 'string', 'example' => '2022-04-30 23:59:59', 'title' => ''],
                                            'FlowThresholdUnit' => ['description' => 'The threshold data unit.', 'type' => 'string', 'example' => 'KB', 'title' => ''],
                                            'ApnName' => ['description' => 'The APN name.', 'type' => 'string', 'example' => 'cmiot', 'title' => ''],
                                            'ActiveTime' => ['description' => 'The activation time.', 'type' => 'string', 'example' => '2021-11-16 16:35:50', 'title' => ''],
                                            'CardLimitStopThreshold' => ['description' => 'The data cap deactivation threshold of the IoT card, in KB. (Not supported yet)', 'type' => 'integer', 'format' => 'int32', 'example' => '20480', 'title' => ''],
                                            'Iccid' => ['description' => 'The ICCID of the IoT card.', 'type' => 'string', 'example' => '89860321******15668', 'title' => ''],
                                            'Vendor' => ['description' => 'The carrier.'."\n"
                                                ."\n"
                                                .'- **CMCC**: China Mobile.'."\n"
                                                ."\n"
                                                .'- **CUCC**: China Unicom.'."\n"
                                                ."\n"
                                                .'- **CTCC**: China Telecom.'."\n"
                                                ."\n"
                                                .'- **VNO**: Virtual carrier.', 'type' => 'string', 'example' => 'CMCC', 'title' => ''],
                                            'Period' => ['description' => 'The plan billing cycle.'."\n"
                                                ."\n"
                                                .'- **1101**: Monthly.'."\n"
                                                ."\n"
                                                .'- **1103**: Quarterly.'."\n"
                                                ."\n"
                                                .'- **1106**: Semi-annually.'."\n"
                                                ."\n"
                                                .'- **1112**: Annually.', 'type' => 'string', 'example' => '1101', 'title' => ''],
                                            'PrivateNetworkSegment' => ['description' => 'The private network segment (directional card).', 'type' => 'string', 'example' => '1.*.3.*', 'title' => ''],
                                            'OpenAccountTime' => ['description' => 'The account opening time.', 'type' => 'string', 'example' => '2021-11-29 16:12:14', 'title' => ''],
                                            'CertifyType' => ['description' => 'The authentication method.'."\n"
                                                ."\n"
                                                .'enterprise: Enterprise authentication.', 'type' => 'string', 'example' => 'enterprise', 'title' => ''],
                                            'SimType' => ['description' => 'The SIM card type.'."\n"
                                                ."\n"
                                                .'- **nano**: Plug-in triple-cut card (consumer grade).'."\n"
                                                ."\n"
                                                .'- **micro**: Plug-in dual-cut card (consumer grade).'."\n"
                                                ."\n"
                                                .'- **normal**: Plug-in standard card (consumer grade).'."\n"
                                                ."\n"
                                                .'- **simplus56**: Embedded card 5x6 (consumer grade).'."\n"
                                                ."\n"
                                                .'- **simplus22**: Embedded card 2x2 (consumer grade).'."\n"
                                                ."\n"
                                                .'- **industry-normal**: Plug-in standard card (industrial grade).'."\n"
                                                ."\n"
                                                .'- **industry-micro**: Plug-in dual-cut card (industrial grade).'."\n"
                                                ."\n"
                                                .'- **industry-nano**: Plug-in triple-cut card (industrial grade).'."\n"
                                                ."\n"
                                                .'- **simplus**: Embedded card 5x6 (industrial grade).'."\n"
                                                ."\n"
                                                .'- **industry-simplus22**: Embedded card 2x2 (industrial grade).', 'type' => 'string', 'example' => 'nano', 'title' => ''],
                                            'CertifyStatus' => ['description' => 'The real-name authentication status.'."\n"
                                                ."\n"
                                                .'- **1**: Not authenticated.'."\n"
                                                ."\n"
                                                .'- **2**: Authenticated.', 'type' => 'string', 'example' => '2', 'title' => ''],
                                            'DeviceImei' => ['description' => 'The IMEI number of the device.', 'type' => 'string', 'example' => '11111111******', 'title' => ''],
                                            'VsimInstanceId' => ['description' => 'The InstanceId value of the IoT card.', 'type' => 'integer', 'format' => 'int32', 'example' => '123456', 'title' => ''],
                                            'AutoRebindReuse' => ['description' => 'The auto rebinding reuse status.'."\n"
                                                ."\n"
                                                .'- **true**: Enabled.'."\n"
                                                ."\n"
                                                .'- **false**: Disabled.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                                            'CredentialNo' => ['description' => 'The plan credential.', 'type' => 'string', 'example' => 'CM-***-*-2-**M', 'title' => ''],
                                            'CredentialLimitStopThreshold' => ['description' => 'The credential data cap deactivation threshold.', 'type' => 'integer', 'format' => 'int32', 'example' => '20480', 'title' => ''],
                                            'Imsi' => [
                                                'description' => 'The IMSI of the IoT card.',
                                                'type' => 'array',
                                                'items' => ['description' => 'The IMSI of the IoT card.', 'type' => 'string', 'example' => '460081937******', 'title' => ''],
                                                'title' => '',
                                                'example' => '',
                                            ],
                                            'Msisdn' => [
                                                'description' => 'The MSISDN of the IoT card.',
                                                'type' => 'array',
                                                'items' => ['description' => 'The MSISDN of the IoT card.', 'type' => 'string', 'example' => '1440993******', 'title' => ''],
                                                'title' => '',
                                                'example' => '',
                                            ],
                                            'OpenSms' => ['description' => 'The SMS function activation status.'."\n"
                                                ."\n"
                                                .'- true: Enabled.'."\n"
                                                ."\n"
                                                .'- false: Disabled.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                            'Ip' => [
                                                'description' => 'The IP address of the IoT card.',
                                                'type' => 'array',
                                                'items' => ['description' => 'The IP address of the IoT card.', 'type' => 'string', 'example' => '190.*.*.*', 'title' => ''],
                                                'title' => '',
                                                'example' => '',
                                            ],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.InstanceIdCanNotEmpty', 'errorMessage' => 'InstanceId cannot be empty.', 'description' => 'InstanceId cannot be empty.'],
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CardNotExist', 'errorMessage' => 'The card does not exist.', 'description' => ''],
                    ['errorCode' => 'CardDisabled', 'errorMessage' => 'The SIM card has been permanently disabled.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.BusinessProcessError', 'errorMessage' => 'A business processing exception occurred.', 'description' => 'linkcard.common.BusinessProcessError'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"ListPsimCards\\": [\\n      {\\n        \\"Status\\": \\"35\\",\\n        \\"PrivateNetworkSegment\\": \\"*.2.*.4\\",\\n        \\"OsStatus\\": \\"300\\",\\n        \\"CertifyStatus\\": \\"2\\",\\n        \\"ApnName\\": \\"cmiot\\",\\n        \\"PeriodAddFlow\\": \\"130.00MB\\",\\n        \\"Iccid\\": \\"89860321******15668\\",\\n        \\"Vendor\\": \\"CMCC\\",\\n        \\"PeriodSmsUse\\": \\"0\\",\\n        \\"Imsi\\": [\\n          \\"460081937******\\"\\n        ],\\n        \\"Msisdn\\": [\\n          \\"1411111******\\"\\n        ],\\n        \\"OpenSms\\": true,\\n        \\"Ip\\": [\\n          \\"1.1.*.*\\"\\n        ]\\n      }\\n    ],\\n    \\"VsimCardInfo\\": {\\n      \\"Status\\": \\"35\\",\\n      \\"DataType\\": \\"sameflowcard\\",\\n      \\"CardLimitSpeedThreshold\\": 1024,\\n      \\"PeriodRestFlow\\": \\"130.00MB\\",\\n      \\"DirectionalGroupName\\": \\"测试分组\\",\\n      \\"CredentialType\\": \\"CT-SC-M-1-30M\\",\\n      \\"PeriodAddFlow\\": \\"0KB\\",\\n      \\"DirectionalGroupId\\": \\"22\\",\\n      \\"PeriodSmsUse\\": \\"0\\",\\n      \\"OsStatus\\": \\"200\\",\\n      \\"NotifyId\\": \\"11111\\",\\n      \\"DataLevel\\": \\"30MB\\",\\n      \\"TagList\\": [\\n        {\\n          \\"TagName\\": \\"测试标签\\",\\n          \\"Id\\": 24\\n        }\\n      ],\\n      \\"AliyunOrderId\\": \\"211519634******\\",\\n      \\"AliFee\\": \\"ali_2\\",\\n      \\"ActiveType\\": \\"first_data_record\\",\\n      \\"IsAutoRecharge\\": true,\\n      \\"AutoLimitResume\\": true,\\n      \\"CredentialInstanceId\\": \\"2622***\\",\\n      \\"CredentialLimitSpeedThreshold\\": 1024,\\n      \\"ExpireTime\\": \\"2022-04-30 23:59:59\\",\\n      \\"FlowThresholdUnit\\": \\"KB\\",\\n      \\"ApnName\\": \\"cmiot\\",\\n      \\"ActiveTime\\": \\"2021-11-16 16:35:50\\",\\n      \\"CardLimitStopThreshold\\": 20480,\\n      \\"Iccid\\": \\"89860321******15668\\",\\n      \\"Vendor\\": \\"CMCC\\",\\n      \\"Period\\": \\"1101\\",\\n      \\"PrivateNetworkSegment\\": \\"1.*.3.*\\",\\n      \\"OpenAccountTime\\": \\"2021-11-29 16:12:14\\",\\n      \\"CertifyType\\": \\"enterprise\\",\\n      \\"SimType\\": \\"nano\\",\\n      \\"CertifyStatus\\": \\"2\\",\\n      \\"DeviceImei\\": \\"11111111******\\",\\n      \\"VsimInstanceId\\": 123456,\\n      \\"AutoRebindReuse\\": false,\\n      \\"CredentialNo\\": \\"CM-***-*-2-**M\\",\\n      \\"CredentialLimitStopThreshold\\": 20480,\\n      \\"Imsi\\": [\\n        \\"460081937******\\"\\n      ],\\n      \\"Msisdn\\": [\\n        \\"1440993******\\"\\n      ],\\n      \\"OpenSms\\": true,\\n      \\"Ip\\": [\\n        \\"190.*.*.*\\"\\n      ]\\n    }\\n  }\\n}","type":"json"}]',
            'title' => 'Query Card Details',
            'description' => '## Throttling'."\n"
                ."\n\n"
                .'The maximum queries per second (QPS) for a single Alibaba Cloud account calling this API is 20.'."\n"
                ."\n"
                .'> RAM users share the Alibaba Cloud account quota.',
            'requestParamsDescription' => ' When calling this API, in addition to the request parameters specific to this API described here, you also need to include common request parameters. For details about common request parameters, see [Common Parameters](~~375336~~).',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2023-03-06T05:41:12.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-12-08T06:04:15.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-01-20T05:58:48.000Z', 'description' => 'Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardDetail'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:GetCardDetail',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCardFlowInfo' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'DateList',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => 'The months to query.'."\n"
                            ."\n"
                            .'You can query up to 6 months. If this parameter is left empty, data of the most recent 2 months is returned.',
                        'type' => 'array',
                        'items' => ['description' => 'The months to query.'."\n"
                            ."\n"
                            .'You can query up to 6 months. If this parameter is left empty, data of the most recent 2 months is returned.', 'type' => 'string', 'required' => false, 'example' => '["202110","202111"]', 'title' => ''],
                        'required' => false,
                        'example' => '["202110","202111"]',
                        'maxItems' => 5,
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, which is the identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The traffic information of the IoT card.',
                                'type' => 'object',
                                'properties' => [
                                    'ListVendorDetail' => [
                                        'description' => 'The network data.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'NetWorkDelay' => ['description' => 'The network latency, in ms.', 'type' => 'string', 'example' => '20', 'title' => ''],
                                                'SignalStrength' => ['description' => 'The signal strength.', 'type' => 'string', 'example' => '20', 'title' => ''],
                                                'Vendor' => ['description' => 'The carrier of the IoT card. Valid values:'."\n"
                                                    .'- CMCC: China Mobile.'."\n"
                                                    .'- CUCC: China Unicom.'."\n"
                                                    .'- CTCC: China Telecom.', 'type' => 'string', 'example' => 'CMCC', 'title' => ''],
                                                'UsedFlow' => ['description' => 'The used traffic.', 'type' => 'string', 'example' => '100MB', 'title' => ''],
                                                'Ratio' => ['description' => 'The usage ratio.', 'type' => 'string', 'example' => '80%', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ListCardMonthFlow' => [
                                        'description' => 'The monthly usage details.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'FlowCount' => ['description' => 'The total monthly traffic.', 'type' => 'string', 'example' => '200MB', 'title' => ''],
                                                'Month' => ['description' => 'The month of the traffic.', 'type' => 'string', 'example' => '202112', 'title' => ''],
                                                'ListDayFlow' => [
                                                    'description' => 'The daily usage.',
                                                    'type' => 'array',
                                                    'items' => [
                                                        'type' => 'object',
                                                        'properties' => [
                                                            'Flow' => ['description' => 'The daily usage.', 'type' => 'string', 'example' => '100MB', 'title' => ''],
                                                            'Day' => ['description' => 'The date of the traffic.', 'type' => 'string', 'example' => '20211201', 'title' => ''],
                                                        ],
                                                        'description' => '',
                                                        'title' => '',
                                                        'example' => '',
                                                    ],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ListPackageDTO' => [
                                        'description' => 'The package information.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'EffectiveTime' => ['description' => 'The effective period of the package.', 'type' => 'string', 'example' => '2022-03-20 23:59:59', 'title' => ''],
                                                'Remark' => ['description' => 'The remarks.', 'type' => 'string', 'example' => '备注内容', 'title' => ''],
                                                'PackageName' => ['description' => 'The package name.', 'type' => 'string', 'example' => '移动-单卡通用流量-月包-30M', 'title' => ''],
                                                'ExpireTime' => ['description' => 'The time when the package expires.', 'type' => 'string', 'example' => '2022-04-30 23:59:59', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CardNotExist', 'errorMessage' => 'The card does not exist.', 'description' => ''],
                    ['errorCode' => 'CardDisabled', 'errorMessage' => 'The SIM card has been permanently disabled.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"ListVendorDetail\\": [\\n      {\\n        \\"NetWorkDelay\\": \\"20\\",\\n        \\"SignalStrength\\": \\"20\\",\\n        \\"Vendor\\": \\"CMCC\\",\\n        \\"UsedFlow\\": \\"100MB\\",\\n        \\"Ratio\\": \\"80%\\"\\n      }\\n    ],\\n    \\"ListCardMonthFlow\\": [\\n      {\\n        \\"FlowCount\\": \\"200MB\\",\\n        \\"Month\\": \\"202112\\",\\n        \\"ListDayFlow\\": [\\n          {\\n            \\"Flow\\": \\"100MB\\",\\n            \\"Day\\": \\"20211201\\"\\n          }\\n        ]\\n      }\\n    ],\\n    \\"ListPackageDTO\\": [\\n      {\\n        \\"EffectiveTime\\": \\"2022-03-20 23:59:59\\",\\n        \\"Remark\\": \\"备注内容\\",\\n        \\"PackageName\\": \\"移动-单卡通用流量-月包-30M\\",\\n        \\"ExpireTime\\": \\"2022-04-30 23:59:59\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'Query card traffic',
            'summary' => 'Queries the traffic information of a card.',
            'description' => '## Before you begin'."\n"
                ."\n\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'When you invoke this operation, in addition to the operation-specific request parameters described in this topic, you must also specify common request parameters. For the metric description of common request parameters, see [Common parameters](~~375336~~).',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2023-03-06T05:41:12.000Z', 'description' => 'Error codes changed, Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '200', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardFlowInfo'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetCardFlowInfo',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCardLatestFlow' => [
            'summary' => 'This API is used to query the real-time cycle usage of an IoT card.',
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['title' => '', 'description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card, or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/sim/card).', 'type' => 'string', 'required' => true, 'example' => '89860321******15668'],
                ],
            ],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'title' => '',
                        'description' => 'GetCardLatestFlowResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. It is a unique identifier that Alibaba Cloud generates for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'true: The call was successful.'."\n"
                                .'false: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: The call was successful.'."\n"
                                ."\n"
                                .'Other values indicate an error code. For more information about error codes, see Error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned if the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => ['description' => 'The real-time cycle usage, with the data usage unit included.', 'type' => 'string', 'example' => '1.00MB', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.InvalidAliyunPK', 'errorMessage' => 'AliyunPk is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.IccidNotExist', 'errorMessage' => 'IccId does not exist.', 'description' => 'Iccid not exist.'],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": \\"1.00MB\\"\\n}","type":"json"}]',
            'title' => 'GetCardLatestFlow',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardLatestFlow'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetCardLatestFlow',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'CardManage', 'arn' => 'acs:linkcard::{#accountId}:cardmanage/{#cardmanageId}'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCardRealStatus' => [
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card itself or on the Card Management page of the IoT SIM Service console.', 'type' => 'string', 'required' => false, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'Msisdn',
                    'in' => 'query',
                    'schema' => ['description' => 'The MSISDN of the IoT card.', 'type' => 'string', 'required' => false, 'example' => '144******1111', 'title' => ''],
                ],
                [
                    'name' => 'SerialNo',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The unique identifier for polling query results.',
                        'type' => 'array',
                        'items' => ['description' => 'The unique identifier for polling query results.'."\n"
                            ."\n"
                            .'Note:'."\n"
                            ."\n"
                            .'1. Because the carrier capability of this operation is limited and query results take time, use this operation with the polling mechanism.'."\n"
                            ."\n"
                            .'2. After the first request, if Status is not successful, this value is returned in the response parameters. Use this value to poll for results.', 'type' => 'string', 'required' => false, 'example' => '4f84******7895', 'title' => ''],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'GetCardRealStatusResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'true: The call was successful. false: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The return code of the operation.'."\n"
                                ."\n"
                                .'200: The call was successful. Other values: An error occurred. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'SerialNo' => ['description' => 'The unique identifier for polling query results.'."\n"
                                            ."\n"
                                            .'Note:'."\n"
                                            ."\n"
                                            .'1. Because the carrier capability of this operation is limited and query results take time, use this operation with the polling mechanism.'."\n"
                                            ."\n"
                                            .'2. After the first request, if Status is not successful, this value is returned in the response parameters. Use this value to poll for results.', 'type' => 'string', 'example' => '4f84******7895', 'title' => ''],
                                        'Iccid' => ['description' => 'The ICCID of the card. If the requested ICCID is the primary card of a multi-network card, the ICCID of the secondary card is returned.', 'type' => 'string', 'example' => '89860321******15668', 'title' => ''],
                                        'Gprs' => ['description' => 'The network service status.'."\n"
                                            ."\n"
                                            .'true: Enabled.'."\n"
                                            ."\n"
                                            .'false: Disabled.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'Online' => ['description' => 'The online status.'."\n"
                                            ."\n"
                                            .'true: Online.'."\n"
                                            ."\n"
                                            .'false: Offline.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'Status' => ['description' => 'The status of the query result. Valid values: '."\n"
                                            ."\n"
                                            .'SUCCESS: The query was successful.'."\n"
                                            ."\n"
                                            .'FAILURE: The query failed.'."\n"
                                            ."\n"
                                            .'PROCESSING: The query is being processed.', 'type' => 'string', 'example' => 'SUCCESS', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'linkcard.common.BusinessProcessError', 'errorMessage' => 'A business processing exception occurred.', 'description' => 'linkcard.common.BusinessProcessError'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": [\\n    {\\n      \\"SerialNo\\": \\"4f84******7895\\",\\n      \\"Iccid\\": \\"89860321******15668\\",\\n      \\"Gprs\\": true,\\n      \\"Online\\": true,\\n      \\"Status\\": \\"SUCCESS\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Intelligent diagnostics - query card status on carrier side',
            'summary' => 'Queries the status of an IoT card on the carrier side through intelligent diagnostics.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardRealStatus'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetCardRealStatus',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCardStatusStatistics' => [
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: Success.'."\n"
                                .'Other values: Error codes. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                ."\n"
                                .'true: The call is successful.'."\n"
                                .'false: The call fails.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'UnbindResumeStatisticsDTO' => [
                                        'description' => 'The statistics on cards deactivated due to rebinding.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'FlowOutStatisticsDTO' => [
                                        'description' => 'The statistics on cards deactivated due to credit-based payment control.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ErrorStopStatisticsDTO' => [
                                        'description' => 'The statistics on cards deactivated due to exceptions.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ExhaustStopStatisticsDTO' => [
                                        'description' => 'The statistics on cards deactivated due to data usage limit reached.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'UnCertifiedStopStatisticsDTO' => [
                                        'description' => 'The statistics on cards deactivated due to incomplete real-name verification.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ManageStopStatisticsDTO' => [
                                        'description' => 'The statistics on cards manually deactivated.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'ExpireStopStatisticsDTO' => [
                                        'description' => 'The statistics on cards suspended due to plan expiration.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'WeekWarnStatisticsDTO' => [
                                        'description' => 'The statistics on alerts for plans expiring within 7 days.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PoolCount' => ['description' => 'The number of pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                            'SingleCardCount' => ['description' => 'The number of single-card plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'SameFlowCardCount' => ['description' => 'The number of same-tier pooled plan cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '30', 'title' => ''],
                                            'TotalCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '60', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'RiskWaringStatisticsDTO' => [
                                        'description' => 'The risk alert statistics. The data is consistent with the risk alert section in the console.',
                                        'type' => 'object',
                                        'properties' => [
                                            'WarningCount' => ['description' => 'The number of expiration alerts. Plans expiring within 7 days.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                            'WaringTotalCount' => ['description' => 'The total number of alerts.', 'type' => 'integer', 'format' => 'int64', 'example' => '100', 'title' => ''],
                                            'StopCount' => ['description' => 'The number of suspended or deactivated cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '40', 'title' => ''],
                                            'LeftFlowPercentageWarnCount' => ['description' => 'The number of remaining data alerts. Single-card plan remaining data is less than 10%.', 'type' => 'integer', 'format' => 'int64', 'example' => '40', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                    'SingCardPeriodLeftFlowWarnDTO' => [
                                        'description' => 'The statistics on insufficient plan remaining data.',
                                        'type' => 'object',
                                        'properties' => [
                                            'LessFlowPercentage10Count' => ['description' => 'The number of alerts for single-card periodic plans with less than 10% remaining data.', 'type' => 'integer', 'format' => 'int64', 'example' => '5', 'title' => ''],
                                            'LessFlowPercentage30Count' => ['description' => 'The number of alerts for single-card periodic plans with less than 30% remaining data.', 'type' => 'integer', 'format' => 'int64', 'example' => '8', 'title' => ''],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"UnbindResumeStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"FlowOutStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"ErrorStopStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"ExhaustStopStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"UnCertifiedStopStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"ManageStopStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"ExpireStopStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"WeekWarnStatisticsDTO\\": {\\n      \\"PoolCount\\": 10,\\n      \\"SingleCardCount\\": 20,\\n      \\"SameFlowCardCount\\": 30,\\n      \\"TotalCount\\": 60\\n    },\\n    \\"RiskWaringStatisticsDTO\\": {\\n      \\"WarningCount\\": 20,\\n      \\"WaringTotalCount\\": 100,\\n      \\"StopCount\\": 40,\\n      \\"LeftFlowPercentageWarnCount\\": 40\\n    },\\n    \\"SingCardPeriodLeftFlowWarnDTO\\": {\\n      \\"LessFlowPercentage10Count\\": 5,\\n      \\"LessFlowPercentage30Count\\": 8\\n    }\\n  }\\n}","type":"json"}]',
            'title' => 'Query risk alerts on the overview page',
            'summary' => 'Queries risk alerts on the overview page.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardStatusStatistics'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetCardStatusStatistics',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetCredentialPoolStatistics' => [
            'summary' => 'Queries the pool information associated with a plan credential.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Date',
                    'in' => 'query',
                    'schema' => ['description' => 'The month for which to query the plan data usage details.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '202108', 'title' => ''],
                ],
                [
                    'name' => 'CredentialNO',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan credential. You can obtain the plan credential by using one of the following methods:'."\n"
                        ."\n"
                        .'- On the **Plan Credential** page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8), view the plan credential.'."\n"
                        ."\n"
                        .'- Call the [GetCardDetail](~~374328~~) operation and view the plan credential (CredentialNo) in the response parameters.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => 'CM-SF-M-2-12G', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'- true: The call was successful.'."\n"
                                ."\n"
                                .'- false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The plan data usage details.',
                                'type' => 'object',
                                'properties' => [
                                    'PoolUsed' => ['description' => 'The data usage for the current month.', 'type' => 'string', 'example' => '0KB', 'title' => ''],
                                    'CredentialNO' => ['description' => 'The plan credential.', 'type' => 'string', 'example' => 'CM-SF-M-2-12G', 'title' => ''],
                                    'PoolOutUsed' => ['description' => 'The out-of-plan data usage for the current month.', 'type' => 'string', 'example' => '0KB', 'title' => ''],
                                    'PoolGrandTotalUsed' => ['description' => 'The total plan data usage. This parameter is displayed only for unified payment pool plans.', 'type' => 'string', 'example' => '6.00GB', 'title' => ''],
                                    'CredentialType' => ['description' => 'The plan credential type.'."\n"
                                        ."\n"
                                        .'- Single-card plan example: CT-SC-M-1-30M (carrier-plan type-plan cycle-rate version-data package tier).'."\n"
                                        ."\n"
                                        .'- Same-tier pool plan example: CM-SF-M-3-100M (carrier-plan type-plan cycle-rate version-data package tier).'."\n"
                                        ."\n"
                                        .'- Unified payment pool plan example: CU-UPG-M-2-pool ID (carrier-plan type-plan cycle-rate version-pool ID).', 'type' => 'string', 'example' => 'CT-SC-M-1-30M', 'title' => ''],
                                    'CardTotalNum' => ['description' => 'The total number of cards in the plan.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                    'PoolGrandTotal' => ['description' => 'The total plan data allowance. This parameter is displayed only for unified payment pool plans.', 'type' => 'string', 'example' => '12.00GB', 'title' => ''],
                                    'CardActiveNum' => ['description' => 'The number of active cards in the plan (activated, not suspended, and not deregistered).', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                    'EffectiveTotalFlow' => ['description' => 'The total plan data allowance. This parameter is displayed only for same-tier pool plans.', 'type' => 'string', 'example' => '12.00GB', 'title' => ''],
                                    'EffectiveAvailableFlow' => ['description' => 'The remaining available data in the plan. This parameter is displayed only for same-tier pool plans.', 'type' => 'string', 'example' => '6.00GB', 'title' => ''],
                                    'PoolAvaiable' => ['description' => 'The remaining available data in the plan. This parameter is displayed only for unified payment pool plans.', 'type' => 'string', 'example' => '6.00GB', 'title' => ''],
                                    'MonthFeatureFee' => ['description' => 'The number of monthly feature fee units. This parameter is displayed only for unified payment pool plans.', 'type' => 'integer', 'format' => 'int64', 'example' => '100', 'title' => ''],
                                    'CredentialInstanceId' => ['description' => 'The credential instance ID.', 'type' => 'string', 'example' => '259****', 'title' => ''],
                                    'SmsUsed' => ['description' => 'The SMS usage.', 'type' => 'integer', 'format' => 'int64', 'example' => '0', 'title' => ''],
                                    'MonthUsedAmount' => ['description' => 'The total monthly data usage.', 'type' => 'integer', 'format' => 'int64', 'example' => '3.00GB', 'title' => ''],
                                    'MonthExceedFee' => ['description' => 'The number of feature fee units that exceeded the plan for the current month.'."\n"
                                        ."\n"
                                        .'A value greater than 0 indicates that the feature fee has exceeded the plan. A value of 0 or null indicates that the feature fee has not exceeded the plan.', 'type' => 'integer', 'format' => 'int64', 'example' => '200', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.TimeFormatError', 'errorMessage' => 'Time format error.', 'description' => 'Time format error.'],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.BusinessProcessError', 'errorMessage' => 'A business processing exception occurred.', 'description' => 'linkcard.common.BusinessProcessError'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"PoolUsed\\": \\"0KB\\",\\n    \\"CredentialNO\\": \\"CM-SF-M-2-12G\\",\\n    \\"PoolOutUsed\\": \\"0KB\\",\\n    \\"PoolGrandTotalUsed\\": \\"6.00GB\\",\\n    \\"CredentialType\\": \\"CT-SC-M-1-30M\\",\\n    \\"CardTotalNum\\": 20,\\n    \\"PoolGrandTotal\\": \\"12.00GB\\",\\n    \\"CardActiveNum\\": 10,\\n    \\"EffectiveTotalFlow\\": \\"12.00GB\\",\\n    \\"EffectiveAvailableFlow\\": \\"6.00GB\\",\\n    \\"PoolAvaiable\\": \\"6.00GB\\",\\n    \\"MonthFeatureFee\\": 100,\\n    \\"CredentialInstanceId\\": \\"259****\\",\\n    \\"SmsUsed\\": 0,\\n    \\"MonthUsedAmount\\": 0,\\n    \\"MonthExceedFee\\": 200\\n  }\\n}","type":"json"}]',
            'title' => 'Query plan credential information',
            'requestParamsDescription' => 'In addition to the operation-specific request parameters described in this topic, you must also specify common request parameters. For the metric description of common request parameters, see [Common parameters](~~375336~~).',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2023-06-28T06:32:07.000Z', 'description' => 'Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCredentialPoolStatistics'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetCredentialPoolStatistics',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetRealNameStatus' => [
            'summary' => 'Queries the personal real-name verification status of an IoT card.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card, or view it on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/sim/card).', 'type' => 'string', 'required' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'ListMsisdns',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The MSISDNs of sub-cards for multi-network cards.',
                        'type' => 'array',
                        'items' => ['description' => 'The MSISDN of the IoT card.', 'type' => 'string', 'required' => false, 'example' => '144******1111', 'title' => ''],
                        'required' => false,
                        'maxItems' => 10,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'GetRealNameStatusResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for this request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'true: The call was successful.'."\n"
                                .'false: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: Success.'."\n"
                                .'Other values: Error code. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language corresponding to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'RealNameStatus' => ['description' => 'The personal real-name verification status. Valid values:'."\n"
                                        .'- NOT_CERTIFIED: not verified.'."\n"
                                        .'- APPROVING: verification in progress.'."\n"
                                        .'- CERTIFIED: verified.', 'type' => 'string', 'example' => 'CERTIFIED', 'title' => ''],
                                    'Desc' => ['description' => 'The description of the verification status.', 'type' => 'string', 'example' => '已认证', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.InvalidAliyunPK', 'errorMessage' => 'AliyunPk is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.IccidFormatError', 'errorMessage' => 'Iccid format error.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.VnoCardNotSupported', 'errorMessage' => 'This function does not support vno card.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"RealNameStatus\\": \\"CERTIFIED\\",\\n    \\"Desc\\": \\"已认证\\"\\n  }\\n}","type":"json"}]',
            'title' => 'GetRealNameStatus',
            'changeSet' => [
                ['createdAt' => '2023-03-08T01:57:55.000Z', 'description' => 'Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '30', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetRealNameStatus'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => '',
                    'ramAction' => [
                        'action' => 'linkcard:GetRealNameStatus',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'GetSimCardStateDistribution' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'CredentialNO',
                    'in' => 'query',
                    'schema' => ['description' => 'The credential number of the plan. You can view this on the Credential Management page in the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/sim/license).', 'type' => 'string', 'required' => false, 'example' => 'CT-SC-M-2-100M', 'title' => ''],
                ],
                [
                    'name' => 'Date',
                    'in' => 'query',
                    'schema' => ['description' => 'The date to query.'."\n"
                        ."\n"
                        .'Format: yyyyMM.', 'type' => 'string', 'required' => true, 'example' => '202209', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: success.'."\n"
                                ."\n"
                                .'Other values: error codes. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. This is a unique identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'true: The call was successful.'."\n"
                                .'false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'CardCount' => ['description' => 'The total number of cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '100', 'title' => ''],
                                    'TestCount' => ['description' => 'The number of testable cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                                    'UnusedCount' => ['description' => 'The number of unused cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                    'StopCount' => ['description' => 'The number of deactivated cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '5', 'title' => ''],
                                    'DestoryedCount' => ['description' => 'The number of canceled cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '0', 'title' => ''],
                                    'UsingCount' => ['description' => 'The number of cards in use.', 'type' => 'integer', 'format' => 'int64', 'example' => '50', 'title' => ''],
                                    'ShutDownCount' => ['description' => 'The number of suspended cards.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.check.TimeFormatError', 'errorMessage' => 'Time format error.', 'description' => 'Time format error.'],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CredentialInstanceNotExist', 'errorMessage' => 'The credential instance does not exist.', 'description' => 'Credential instance not exist.'],
                    ['errorCode' => 'linkcard.common.CredentialNoNotExist', 'errorMessage' => 'The credentialNo does not exist', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"CardCount\\": 100,\\n    \\"TestCount\\": 20,\\n    \\"UnusedCount\\": 10,\\n    \\"StopCount\\": 5,\\n    \\"DestoryedCount\\": 0,\\n    \\"UsingCount\\": 50,\\n    \\"ShutDownCount\\": 10\\n  }\\n}","type":"json"}]',
            'title' => 'Retrieve card status distribution',
            'summary' => 'Retrieves the card status distribution.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetSimCardStateDistribution'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:GetSimCardStateDistribution',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ListCardInfo' => [
            'summary' => 'Query the card list.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'ActiveTimeEnd',
                    'in' => 'query',
                    'schema' => ['description' => 'The end time of the IoT card activation time range.'."\n"
                        ."\n"
                        .'Format: `yyyy-MM-dd HH:mm:ss`.', 'type' => 'string', 'required' => false, 'example' => '2022-05-25 23:59:59', 'title' => ''],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Valid values: 10, 15, 25, and 40.'."\n", 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'example' => '10', 'title' => ''],
                ],
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card, or on the **Card Management** page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => false, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'CredentialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan credential.'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'example' => 'CM-***-*-2-**M', 'title' => ''],
                ],
                [
                    'name' => 'Vendor',
                    'in' => 'query',
                    'schema' => ['description' => 'The carrier.'."\n"
                        ."\n"
                        .'- **CMCC**: China Mobile.'."\n"
                        ."\n"
                        .'- **CUCC**: China Unicom.'."\n"
                        ."\n"
                        .'- **CTCC**: China Telecom.'."\n"
                        ."\n"
                        .'- **VNO**: Virtual network operator.', 'type' => 'string', 'required' => false, 'example' => 'CMCC', 'title' => ''],
                ],
                [
                    'name' => 'PageNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number. This parameter must be used together with the **PageSize** parameter.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'Msisdn',
                    'in' => 'query',
                    'schema' => ['description' => 'The MSISDN of the IoT card.', 'type' => 'string', 'required' => false, 'example' => '1440993******', 'title' => ''],
                ],
                [
                    'name' => 'AliyunOrderId',
                    'in' => 'query',
                    'schema' => ['description' => 'The order ID associated with the IoT card.'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'example' => '211519634******', 'title' => ''],
                ],
                [
                    'name' => 'AliFee',
                    'in' => 'query',
                    'schema' => ['description' => 'The billing version.', 'type' => 'string', 'required' => false, 'example' => 'ali_2', 'title' => ''],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan billing cycle.'."\n"
                        ."\n"
                        .'- **1101**: Monthly.'."\n"
                        ."\n"
                        .'- **1103**: Quarterly.'."\n"
                        ."\n"
                        .'- **1106**: Semi-annually.'."\n"
                        ."\n"
                        .'- **1112**: Annually.', 'type' => 'string', 'required' => false, 'example' => '1101', 'title' => ''],
                ],
                [
                    'name' => 'DataType',
                    'in' => 'query',
                    'schema' => ['description' => 'The data type.'."\n"
                        ."\n"
                        .'- **singlecard**: Single-card general data.'."\n"
                        ."\n"
                        .'- **directionalcard**: Single-card directional data.'."\n"
                        ."\n"
                        .'- **sameflowcard**: Same-tier pool shared data.'."\n"
                        ."\n"
                        .'- **directional_sameflowcard**: Same-tier pool shared directional data.'."\n"
                        ."\n"
                        .'- **unityPayPool**: Unified payment pool general data.'."\n"
                        ."\n"
                        .'- **GREcard**: Unified payment pool directional data.', 'type' => 'string', 'required' => false, 'example' => 'sameflowcard', 'title' => ''],
                ],
                [
                    'name' => 'ActiveTimeStart',
                    'in' => 'query',
                    'schema' => ['description' => 'The start time of the IoT card activation time range.'."\n"
                        ."\n"
                        .'Format: `yyyy-MM-dd HH:mm:ss`.', 'type' => 'string', 'required' => false, 'example' => '2022-05-25 23:59:59', 'title' => ''],
                ],
                [
                    'name' => 'SimType',
                    'in' => 'query',
                    'schema' => ['description' => 'The SIM card type.'."\n"
                        ."\n"
                        .'- **nano**: Triple-cut plug-in card (consumer-grade).'."\n"
                        ."\n"
                        .'- **micro**: Dual-cut plug-in card (consumer-grade).'."\n"
                        ."\n"
                        .'- **normal**: Standard plug-in card (consumer-grade).'."\n"
                        ."\n"
                        .'- **simplus56**: Embedded card 5x6 (consumer-grade).'."\n"
                        ."\n"
                        .'- **simplus22**: Embedded card 2x2 (consumer-grade).'."\n"
                        ."\n"
                        .'- **industry-normal**: Standard plug-in card (industrial-grade).'."\n"
                        ."\n"
                        .'- **industry-micro**: Dual-cut plug-in card (industrial-grade).'."\n"
                        ."\n"
                        .'- **industry-nano**: Triple-cut plug-in card (industrial-grade).'."\n"
                        ."\n"
                        .'- **simplus**: Embedded card 5x6 (industrial-grade).'."\n"
                        ."\n"
                        .'- **industry-simplus22**: Embedded card 2x2 (industrial-grade).', 'type' => 'string', 'required' => false, 'example' => 'nano', 'title' => ''],
                ],
                [
                    'name' => 'ExpireTimeEnd',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan expiration end time of the IoT card.'."\n"
                        ."\n"
                        .'Format: `yyyy-MM-dd HH:mm:ss`', 'type' => 'string', 'required' => false, 'example' => '2022-05-25 23:59:59', 'title' => ''],
                ],
                [
                    'name' => 'IsAutoRecharge',
                    'in' => 'query',
                    'schema' => ['description' => 'Indicates whether the plan is automatically renewed.'."\n"
                        ."\n"
                        .'- **true**: Yes.'."\n"
                        ."\n"
                        .'- **false**: No.', 'type' => 'boolean', 'required' => false, 'example' => 'true', 'title' => ''],
                ],
                [
                    'name' => 'ExpireTimeStart',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan expiration start time of the IoT card.'."\n"
                        ."\n"
                        .'Format: `yyyy-MM-dd HH:mm:ss`', 'type' => 'string', 'required' => false, 'example' => '2022-05-25 23:59:59', 'title' => ''],
                ],
                [
                    'name' => 'OsStatus',
                    'in' => 'query',
                    'schema' => ['description' => 'The detailed status of the IoT card.'."\n"
                        ."\n"
                        .'- **10**: Test period.'."\n"
                        ."\n"
                        .'- **20**: Silent period.'."\n"
                        ."\n"
                        .'- **100**: In use.'."\n"
                        ."\n"
                        .'- **150**: Partially in use.'."\n"
                        ."\n"
                        .'- **200**: Manually deactivated.'."\n"
                        ."\n"
                        .'- **300**: Deactivated due to data cap.'."\n"
                        ."\n"
                        .'- **400**: Deactivated by signal control.'."\n"
                        ."\n"
                        .'- **500**: Deactivated due to rebinding.'."\n"
                        ."\n"
                        .'- **600**: Deactivated due to real-name verification.'."\n"
                        ."\n"
                        .'- **700**: Deactivated due to anomaly.'."\n"
                        ."\n"
                        .'- **40**: Suspended.'."\n"
                        ."\n"
                        .'- **50**: Canceled.', 'type' => 'string', 'required' => false, 'example' => '300', 'title' => ''],
                ],
                [
                    'name' => 'NotifyId',
                    'in' => 'query',
                    'schema' => ['description' => 'The notification ID of the automation rule.', 'type' => 'string', 'required' => false, 'example' => '11111', 'title' => ''],
                ],
                [
                    'name' => 'DataLevel',
                    'in' => 'query',
                    'schema' => ['description' => 'The data plan tier.', 'type' => 'string', 'required' => false, 'example' => '30MB', 'title' => ''],
                ],
                [
                    'name' => 'Status',
                    'in' => 'query',
                    'schema' => ['description' => 'The status of the IoT card.'."\n"
                        ."\n"
                        .'- **10**: Testable.'."\n"
                        ."\n"
                        .'- **20**: Unused.'."\n"
                        ."\n"
                        .'- **30**: In use.'."\n"
                        ."\n"
                        .'- **35**: Deactivated.'."\n"
                        ."\n"
                        .'- **40**: Suspended.'."\n"
                        ."\n"
                        .'- **50**: Canceled.', 'type' => 'string', 'required' => false, 'example' => '35', 'title' => ''],
                ],
                [
                    'name' => 'TagName',
                    'in' => 'query',
                    'schema' => ['description' => 'The tag name.'."\n", 'type' => 'string', 'required' => false, 'example' => '测试标签', 'title' => ''],
                ],
                [
                    'name' => 'CertifyType',
                    'in' => 'query',
                    'schema' => ['description' => 'The authentication method.'."\n"
                        ."\n"
                        .'Only enterprise is supported: Enterprise authentication.', 'type' => 'string', 'required' => false, 'example' => 'enterprise', 'title' => ''],
                ],
                [
                    'name' => 'DirectionalGroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The directional group ID.', 'type' => 'string', 'required' => false, 'example' => '22', 'title' => ''],
                ],
                [
                    'name' => 'ApnName',
                    'in' => 'query',
                    'schema' => ['description' => 'The APN name.'."\n"
                        ."\n", 'type' => 'string', 'required' => false, 'example' => 'cmiot', 'title' => ''],
                ],
                [
                    'name' => 'Imsi',
                    'in' => 'query',
                    'schema' => ['description' => 'The IMSI of the IoT card.', 'type' => 'string', 'required' => false, 'example' => '460081937******', 'title' => ''],
                ],
                [
                    'name' => 'PoolId',
                    'in' => 'query',
                    'schema' => ['description' => 'The pool ID.', 'type' => 'string', 'required' => false, 'example' => 'test1', 'title' => ''],
                ],
                [
                    'name' => 'MinFlow',
                    'in' => 'query',
                    'schema' => ['description' => 'The minimum usage for filtering by periodic usage range. Unit: MB.', 'type' => 'string', 'required' => false, 'example' => '20', 'title' => ''],
                ],
                [
                    'name' => 'MaxFlow',
                    'in' => 'query',
                    'schema' => ['description' => 'The maximum usage for filtering by periodic usage range. Unit: MB.', 'type' => 'string', 'required' => false, 'example' => '30', 'title' => ''],
                ],
                [
                    'name' => 'MaxRestFlowPercentage',
                    'in' => 'query',
                    'schema' => ['description' => 'The remaining data percentage for a single card in the billing cycle. Only the following three values are supported:'."\n"
                        .'0.1: 10% remaining'."\n"
                        .'0.2: 20% remaining'."\n"
                        .'0.3: 30% remaining', 'type' => 'number', 'format' => 'double', 'required' => false, 'example' => '0.2', 'title' => ''],
                ],
                [
                    'name' => 'NetworkType',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'schema' => ['description' => 'The network type: 4G or 5G.', 'type' => 'string', 'required' => false, 'example' => '4G', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: Success.'."\n"
                                .'- Other values: Error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                ."\n"
                                .'- true: The call was successful.'."\n"
                                ."\n"
                                .'- false: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned pagination information.',
                                'type' => 'object',
                                'properties' => [
                                    'PageNo' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'PageSize' => ['description' => 'The number of entries per page.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                                    'PageCount' => ['description' => 'The total number of pages.', 'type' => 'integer', 'format' => 'int32', 'example' => '20', 'title' => ''],
                                    'Total' => ['description' => 'The total number of IoT cards that match the filter conditions.', 'type' => 'integer', 'format' => 'int32', 'example' => '199', 'title' => ''],
                                    'List' => [
                                        'description' => 'The card list.',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'The card list.',
                                            'type' => 'object',
                                            'properties' => [
                                                'Status' => ['description' => 'The status of the card.'."\n"
                                                    ."\n"
                                                    .'- **10**: Testable.'."\n"
                                                    ."\n"
                                                    .'- **20**: Unused.'."\n"
                                                    ."\n"
                                                    .'- **30**: In use.'."\n"
                                                    ."\n"
                                                    .'- **35**: Deactivated.'."\n"
                                                    ."\n"
                                                    .'- **40**: Suspended.'."\n"
                                                    ."\n"
                                                    .'- **50**: Canceled.', 'type' => 'string', 'example' => '35', 'title' => ''],
                                                'DataType' => ['description' => 'The data type.'."\n"
                                                    ."\n"
                                                    .'- **singlecard**: Single-card general data.'."\n"
                                                    ."\n"
                                                    .'- **directionalcard**: Single-card directional data.'."\n"
                                                    ."\n"
                                                    .'- **sameflowcard**: Same-tier pool shared data.'."\n"
                                                    ."\n"
                                                    .'- **directional_sameflowcard**: Same-tier pool shared directional data.'."\n"
                                                    ."\n"
                                                    .'- **unityPayPool**: Unified payment pool general data.'."\n"
                                                    ."\n"
                                                    .'- **GREcard**: Unified payment pool directional data.', 'type' => 'string', 'example' => 'sameflowcard', 'title' => ''],
                                                'DirectionalGroupName' => ['description' => 'The directional group name.', 'type' => 'string', 'example' => '测试分组', 'title' => ''],
                                                'PeriodRestFlow' => ['description' => 'The remaining data in the billing cycle.', 'type' => 'string', 'example' => '130.00MB', 'title' => ''],
                                                'CredentialType' => ['description' => 'The plan credential type.', 'type' => 'string', 'example' => 'unityPayPool', 'title' => ''],
                                                'PeriodAddFlow' => ['description' => 'The accumulated data in the billing cycle.', 'type' => 'string', 'example' => '0KB', 'title' => ''],
                                                'PeriodSmsUse' => ['description' => 'The SMS usage in the billing cycle.', 'type' => 'string', 'example' => '0', 'title' => ''],
                                                'DataLevel' => ['description' => 'The data plan tier.', 'type' => 'string', 'example' => '30MB', 'title' => ''],
                                                'OsStatus' => ['description' => 'The detailed status of the IoT card.'."\n"
                                                    ."\n"
                                                    .'- **10**: Test period.'."\n"
                                                    ."\n"
                                                    .'- **20**: Silent period.'."\n"
                                                    ."\n"
                                                    .'- **100**: In use.'."\n"
                                                    ."\n"
                                                    .'- **150**: Partially in use.'."\n"
                                                    ."\n"
                                                    .'- **200**: Manually deactivated.'."\n"
                                                    ."\n"
                                                    .'- **300**: Deactivated due to data cap.'."\n"
                                                    ."\n"
                                                    .'- **400**: Deactivated by signal control.'."\n"
                                                    ."\n"
                                                    .'- **500**: Deactivated due to rebinding.'."\n"
                                                    ."\n"
                                                    .'- **600**: Deactivated due to real-name verification.'."\n"
                                                    ."\n"
                                                    .'- **700**: Deactivated due to anomaly.'."\n"
                                                    ."\n"
                                                    .'- **40**: Suspended.'."\n"
                                                    ."\n"
                                                    .'- **50**: Canceled.', 'type' => 'string', 'example' => '300', 'title' => ''],
                                                'NotifyId' => ['description' => 'The notification ID of the automation rule.', 'type' => 'string', 'example' => '11111', 'title' => ''],
                                                'AliFee' => ['description' => 'The billing version.', 'type' => 'string', 'example' => 'ali_2', 'title' => ''],
                                                'AliyunOrderId' => ['description' => 'The order ID associated with the IoT card.', 'type' => 'string', 'example' => '211519634******', 'title' => ''],
                                                'ActiveType' => ['description' => 'The activation method of the IoT card.'."\n"
                                                    ."\n"
                                                    .'- **firstdatarecord**: Activated by the first data record.'."\n"
                                                    ."\n"
                                                    .'- **carrierstatuspush**: Activated by carrier status push.'."\n"
                                                    ."\n"
                                                    .'- **silence_expire**: Activated after the silent period expires.'."\n"
                                                    ."\n"
                                                    .'- **manage**: Manually activated.'."\n"
                                                    ."\n"
                                                    .'- **testflowdepleted**: Activated after the test period data is depleted.', 'type' => 'string', 'example' => 'first_data_record', 'title' => ''],
                                                'IsAutoRecharge' => ['description' => 'Indicates whether the plan is automatically renewed.'."\n"
                                                    ."\n"
                                                    .'- true: Yes.'."\n"
                                                    ."\n"
                                                    .'- false: No.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                                'CredentialInstanceId' => ['description' => 'The credential instance ID.', 'type' => 'string', 'example' => '2622***', 'title' => ''],
                                                'ExpireTime' => ['description' => 'The plan expiration time.', 'type' => 'string', 'example' => '2022-04-30 23:59:59', 'title' => ''],
                                                'ApnName' => ['description' => 'The APN name.', 'type' => 'string', 'example' => 'cmiot', 'title' => ''],
                                                'ActiveTime' => ['description' => 'The activation time.', 'type' => 'string', 'example' => '2021-11-16 16:35:50', 'title' => ''],
                                                'Iccid' => ['description' => 'The ICCID of the IoT card.', 'type' => 'string', 'example' => '89860321******15668', 'title' => ''],
                                                'Vendor' => ['description' => 'The carrier.'."\n"
                                                    ."\n"
                                                    .'- **CMCC**: China Mobile.'."\n"
                                                    ."\n"
                                                    .'- **CUCC**: China Unicom.'."\n"
                                                    ."\n"
                                                    .'- **CTCC**: China Telecom.'."\n"
                                                    ."\n"
                                                    .'- **VNO**: Virtual network operator.', 'type' => 'string', 'example' => 'CMCC', 'title' => ''],
                                                'Period' => ['description' => 'The plan billing cycle.'."\n"
                                                    ."\n"
                                                    .'- **1101**: Monthly.'."\n"
                                                    ."\n"
                                                    .'- **1103**: Quarterly.'."\n"
                                                    ."\n"
                                                    .'- **1106**: Semi-annually.'."\n"
                                                    ."\n"
                                                    .'- **1112**: Annually.', 'type' => 'string', 'example' => '1101', 'title' => ''],
                                                'CertifyType' => ['description' => 'The authentication method.'."\n"
                                                    ."\n"
                                                    .'enterprise: Enterprise authentication.', 'type' => 'string', 'example' => 'enterprise', 'title' => ''],
                                                'PrivateNetworkSegment' => ['description' => 'The private network segment (for directional cards).', 'type' => 'string', 'example' => '1.*.3.*', 'title' => ''],
                                                'OpenAccountTime' => ['description' => 'The account opening time.', 'type' => 'string', 'example' => '2021-11-29 16:12:14', 'title' => ''],
                                                'SimType' => ['description' => 'The SIM card type.'."\n"
                                                    ."\n"
                                                    .'- **nano**: Triple-cut plug-in card (consumer-grade).'."\n"
                                                    ."\n"
                                                    .'- **micro**: Dual-cut plug-in card (consumer-grade).'."\n"
                                                    ."\n"
                                                    .'- **normal**: Standard plug-in card (consumer-grade).'."\n"
                                                    ."\n"
                                                    .'- **simplus56**: Embedded card 5x6 (consumer-grade).'."\n"
                                                    ."\n"
                                                    .'- **simplus22**: Embedded card 2x2 (consumer-grade).'."\n"
                                                    ."\n"
                                                    .'- **industry-normal**: Standard plug-in card (industrial-grade).'."\n"
                                                    ."\n"
                                                    .'- **industry-micro**: Dual-cut plug-in card (industrial-grade).'."\n"
                                                    ."\n"
                                                    .'- **industry-nano**: Triple-cut plug-in card (industrial-grade).'."\n"
                                                    ."\n"
                                                    .'- **simplus**: Embedded card 5x6 (industrial-grade).'."\n"
                                                    ."\n"
                                                    .'- **industry-simplus22**: Embedded card 2x2 (industrial-grade).', 'type' => 'string', 'example' => 'nano', 'title' => ''],
                                                'VsimInstanceId' => ['description' => 'The InstanceId of the IoT card.', 'type' => 'integer', 'format' => 'int64', 'example' => '123456', 'title' => ''],
                                                'CredentialNo' => ['description' => 'The plan credential.', 'type' => 'string', 'example' => 'CM-***-*-2-**M', 'title' => ''],
                                                'TagList' => [
                                                    'description' => 'The tags of the IoT card.',
                                                    'type' => 'array',
                                                    'items' => [
                                                        'description' => 'The tag list.',
                                                        'type' => 'object',
                                                        'properties' => [
                                                            'TagName' => ['description' => 'The tag name.', 'type' => 'string', 'example' => '测试标签', 'title' => ''],
                                                            'Id' => ['description' => 'The tag ID.', 'type' => 'integer', 'format' => 'int64', 'example' => '24', 'title' => ''],
                                                        ],
                                                        'title' => '',
                                                        'example' => '',
                                                    ],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'Imsi' => [
                                                    'description' => 'The IMSI of the IoT card.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The IMSI of the IoT card.', 'type' => 'string', 'example' => '460081937******', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'Msisdn' => [
                                                    'description' => 'The MSISDN of the IoT card.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The MSISDN of the IoT card.', 'type' => 'string', 'example' => '1440993******', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'Remark' => ['description' => 'The remarks.', 'type' => 'string', 'example' => '备注信息', 'title' => ''],
                                                'DirectionalGroupId' => ['description' => 'The directional group ID.', 'type' => 'integer', 'format' => 'int64', 'example' => '55', 'title' => ''],
                                                'NetworkType' => ['description' => 'The network type: 4G or 5G.', 'type' => 'string', 'example' => '4G', 'title' => ''],
                                                'FlowLatestModifiedTime' => ['description' => 'The time when the usage was last updated.', 'type' => 'string', 'example' => '2023-08-15 18:20:11', 'title' => ''],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.common.InvalidAliyunPK', 'errorMessage' => 'AliyunPk is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.BusinessProcessError', 'errorMessage' => 'A business processing exception occurred.', 'description' => 'linkcard.common.BusinessProcessError'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"PageNo\\": 1,\\n    \\"PageSize\\": 10,\\n    \\"PageCount\\": 20,\\n    \\"Total\\": 199,\\n    \\"List\\": [\\n      {\\n        \\"Status\\": \\"35\\",\\n        \\"DataType\\": \\"sameflowcard\\",\\n        \\"DirectionalGroupName\\": \\"测试分组\\",\\n        \\"PeriodRestFlow\\": \\"130.00MB\\",\\n        \\"CredentialType\\": \\"unityPayPool\\",\\n        \\"PeriodAddFlow\\": \\"0KB\\",\\n        \\"PeriodSmsUse\\": \\"0\\",\\n        \\"DataLevel\\": \\"30MB\\",\\n        \\"OsStatus\\": \\"300\\",\\n        \\"NotifyId\\": \\"11111\\",\\n        \\"AliFee\\": \\"ali_2\\",\\n        \\"AliyunOrderId\\": \\"211519634******\\",\\n        \\"ActiveType\\": \\"first_data_record\\",\\n        \\"IsAutoRecharge\\": true,\\n        \\"CredentialInstanceId\\": \\"2622***\\",\\n        \\"ExpireTime\\": \\"2022-04-30 23:59:59\\",\\n        \\"ApnName\\": \\"cmiot\\",\\n        \\"ActiveTime\\": \\"2021-11-16 16:35:50\\",\\n        \\"Iccid\\": \\"89860321******15668\\",\\n        \\"Vendor\\": \\"CMCC\\",\\n        \\"Period\\": \\"1101\\",\\n        \\"CertifyType\\": \\"enterprise\\",\\n        \\"PrivateNetworkSegment\\": \\"1.*.3.*\\",\\n        \\"OpenAccountTime\\": \\"2021-11-29 16:12:14\\",\\n        \\"SimType\\": \\"nano\\",\\n        \\"VsimInstanceId\\": 123456,\\n        \\"CredentialNo\\": \\"CM-***-*-2-**M\\",\\n        \\"TagList\\": [\\n          {\\n            \\"TagName\\": \\"测试标签\\",\\n            \\"Id\\": 24\\n          }\\n        ],\\n        \\"Imsi\\": [\\n          \\"460081937******\\"\\n        ],\\n        \\"Msisdn\\": [\\n          \\"1440993******\\"\\n        ],\\n        \\"Remark\\": \\"备注信息\\",\\n        \\"DirectionalGroupId\\": 55,\\n        \\"NetworkType\\": \\"4G\\",\\n        \\"FlowLatestModifiedTime\\": \\"2023-08-15 18:20:11\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'ListCardInfo',
            'description' => '### Usage Notes'."\n"
                .'You can view and obtain the request parameters of this API on the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8), or by calling the [GetCardDetail](~~374328~~) API and viewing the response parameters (the latter is recommended).'."\n",
            'requestParamsDescription' => 'When calling this API, in addition to the request parameters described in this topic, you must also include common request parameters. For more information about common request parameters, see [Common parameters](~~375336~~).',
            'changeSet' => [
                ['createdAt' => '2023-08-03T02:45:22.000Z', 'description' => 'Request parameters changed, Response parameters changed'],
                ['createdAt' => '2022-09-29T01:48:11.000Z', 'description' => 'Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListCardInfo'],
                ],
            ],
            'ramActions' => [],
        ],
        'ListDirectionalAddress' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Valid values: 10, 15, 25, and 40.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'maximum' => '200', 'minimum' => '1', 'example' => '10', 'title' => ''],
                ],
                [
                    'name' => 'PageNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number. Use this parameter together with the PageSize parameter.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'minimum' => '1', 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'GroupId',
                    'in' => 'query',
                    'schema' => ['description' => 'The directional group ID.'."\n"
                        ."\n"
                        .'You can call the [GetCardDetail](~~374328~~) operation to obtain the directional group ID (DirectionalGroupId) from the response parameters.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '5', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- 200: success.'."\n"
                                ."\n"
                                .'- Other codes: failure. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, which is the unique identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned access addresses.',
                                'type' => 'object',
                                'properties' => [
                                    'PageNo' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'PageSize' => ['description' => 'The number of entries per page.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                                    'PageCount' => ['description' => 'The total number of pages.', 'type' => 'integer', 'format' => 'int32', 'example' => '9', 'title' => ''],
                                    'Total' => ['description' => 'The total number of entries.', 'type' => 'integer', 'format' => 'int32', 'example' => '90', 'title' => ''],
                                    'List' => [
                                        'description' => 'The access addresses.',
                                        'type' => 'array',
                                        'items' => [
                                            'type' => 'object',
                                            'properties' => [
                                                'Address' => ['description' => 'The directional access address.', 'type' => 'string', 'example' => '*.aliyun.com', 'title' => ''],
                                                'AddressType' => ['description' => 'The address type. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **Ip**: IP address.'."\n"
                                                    ."\n"
                                                    .'- **Domain**: domain name.', 'type' => 'string', 'example' => 'Domain', 'title' => ''],
                                                'Source' => ['description' => 'The address source. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **user_defined**: user-configured.'."\n"
                                                    ."\n"
                                                    .'- **aliyun_defined**: Alibaba Cloud pre-configured.', 'type' => 'string', 'example' => 'user_defined', 'title' => ''],
                                                'GroupId' => ['description' => 'The directional group ID.', 'type' => 'string', 'example' => '5', 'title' => ''],
                                                'State' => ['description' => 'The address status. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **100**: addition in progress.'."\n"
                                                    ."\n"
                                                    .'- **200**: deletion in progress.'."\n"
                                                    ."\n"
                                                    .'- **300**: addition failed.'."\n"
                                                    ."\n"
                                                    .'- **400**: deletion failed.'."\n"
                                                    ."\n"
                                                    .'- **500**: addition succeeded.', 'type' => 'integer', 'format' => 'int32', 'example' => '500', 'title' => ''],
                                            ],
                                            'description' => '',
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"PageNo\\": 1,\\n    \\"PageSize\\": 10,\\n    \\"PageCount\\": 9,\\n    \\"Total\\": 90,\\n    \\"List\\": [\\n      {\\n        \\"Address\\": \\"*.aliyun.com\\",\\n        \\"AddressType\\": \\"Domain\\",\\n        \\"Source\\": \\"user_defined\\",\\n        \\"GroupId\\": \\"5\\",\\n        \\"State\\": 500\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'Query directional group information',
            'summary' => 'Queries the list of access addresses for a directional group.',
            'description' => '## Usage notes'."\n"
                .'Only the new directional service menu supports the directional group feature. If you are using the legacy directional service menu, you cannot call this operation. For more information, see [Directional service](~~279455~~).',
            'changeSet' => [
                ['createdAt' => '2023-01-09T08:10:53.000Z', 'description' => 'Request parameters changed, Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDirectionalAddress'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:ListDirectionalAddress',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ListDirectionalDetail' => [
            'summary' => 'Queries the directional group and access address list of an IoT card.',
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the IoT SIM Service console.', 'type' => 'string', 'required' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'PageNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number to query. The value cannot be 0.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Valid values: 10, 15, 25, and 40.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '10', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'ListDirectionalDetailResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- 200: The call was successful.'."\n"
                                ."\n"
                                .'- Other codes: The call failed. For more information, see [Error codes](~~87387~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The directional group information and the list of access addresses in the group.',
                                'type' => 'object',
                                'properties' => [
                                    'DirectionalGroupId' => ['description' => 'The ID of the directional group.', 'type' => 'integer', 'format' => 'int64', 'example' => '5', 'title' => ''],
                                    'DirectionalName' => ['description' => 'The name of the directional group.', 'type' => 'string', 'example' => '测试分组', 'title' => ''],
                                    'PaginationResult' => [
                                        'description' => 'The list of access addresses in the directional group.',
                                        'type' => 'object',
                                        'properties' => [
                                            'PageNo' => ['description' => 'The current page number.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                            'PageSize' => ['description' => 'The number of entries per page.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                                            'Total' => ['description' => 'The total number of entries.', 'type' => 'integer', 'format' => 'int32', 'example' => '90', 'title' => ''],
                                            'PageCount' => ['description' => 'The total number of pages.', 'type' => 'integer', 'format' => 'int32', 'example' => '9', 'title' => ''],
                                            'List' => [
                                                'description' => 'The list of directional addresses.',
                                                'type' => 'array',
                                                'items' => [
                                                    'description' => 'The list of directional addresses.',
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'GroupId' => ['description' => 'The ID of the directional group.', 'type' => 'string', 'example' => '5', 'title' => ''],
                                                        'Address' => ['description' => 'The directional access address.', 'type' => 'string', 'example' => '*.aliyun.com', 'title' => ''],
                                                        'Source' => ['description' => 'The source of the address. Valid values:'."\n"
                                                            ."\n"
                                                            .'- **user_defined**: configured by the user.'."\n"
                                                            ."\n"
                                                            .'- **aliyun_defined**: preconfigured by Alibaba Cloud.', 'type' => 'string', 'example' => 'user_defined', 'title' => ''],
                                                        'AddressType' => ['description' => 'The type of the address. Valid values:'."\n"
                                                            ."\n"
                                                            .'- **Ip**: IP address.'."\n"
                                                            ."\n"
                                                            .'- **Domain**: domain name.', 'type' => 'string', 'example' => 'Domain', 'title' => ''],
                                                        'State' => ['description' => 'The status of the address. Valid values:'."\n"
                                                            ."\n"
                                                            .'- **100**: being added.'."\n"
                                                            ."\n"
                                                            .'- **200**: being deleted.'."\n"
                                                            ."\n"
                                                            .'- **300**: failed to add.'."\n"
                                                            ."\n"
                                                            .'- **400**: failed to delete.'."\n"
                                                            ."\n"
                                                            .'- **500**: added.', 'type' => 'string', 'example' => '500', 'title' => ''],
                                                    ],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'title' => '',
                                                'example' => '',
                                            ],
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.directional.notExist', 'errorMessage' => 'Can not find direction group.', 'description' => ''],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CardNotExist', 'errorMessage' => 'The card does not exist.', 'description' => ''],
                    ['errorCode' => 'CardDisabled', 'errorMessage' => 'The SIM card has been permanently disabled.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"DirectionalGroupId\\": 5,\\n    \\"DirectionalName\\": \\"测试分组\\",\\n    \\"PaginationResult\\": {\\n      \\"PageNo\\": 1,\\n      \\"PageSize\\": 10,\\n      \\"Total\\": 90,\\n      \\"PageCount\\": 9,\\n      \\"List\\": [\\n        {\\n          \\"GroupId\\": \\"5\\",\\n          \\"Address\\": \\"*.aliyun.com\\",\\n          \\"Source\\": \\"user_defined\\",\\n          \\"AddressType\\": \\"Domain\\",\\n          \\"State\\": \\"500\\"\\n        }\\n      ]\\n    }\\n  }\\n}","type":"json"}]',
            'title' => 'Query directional information of a card',
            'description' => '## Operation description'."\n"
                .'Only the new directional service menu supports directional groups. If you use the legacy directional service menu, you cannot call this operation. For more information, see [Directional service](~~279455~~).',
            'requestParamsDescription' => 'When you invoke this operation, in addition to the operation-specific request parameters described in this topic, you must also specify common request parameters. For the metric description of common request parameters, see [Common parameters](~~30561~~).',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:27.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2023-03-21T11:00:37.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-08-09T12:00:23.000Z', 'description' => 'OpenAPI offline'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDirectionalDetail'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:ListDirectionalDetail',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ListOrder' => [
            'summary' => 'Queries a list of orders.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'OrderId',
                    'in' => 'query',
                    'schema' => ['description' => 'The order ID.', 'type' => 'string', 'required' => false, 'example' => '21450******0275', 'title' => ''],
                ],
                [
                    'name' => 'StartDate',
                    'in' => 'query',
                    'schema' => ['description' => 'The start date of the order purchase time range.'."\n"
                        ."\n"
                        .'Format: `YYYY-MM-dd`.', 'type' => 'string', 'required' => false, 'example' => '2022-04-05', 'title' => ''],
                ],
                [
                    'name' => 'EndDate',
                    'in' => 'query',
                    'schema' => ['description' => 'The end date of the order purchase time range.'."\n"
                        ."\n"
                        .'Format: `YYYY-MM-dd`.', 'type' => 'string', 'required' => false, 'example' => '2022-04-05', 'title' => ''],
                ],
                [
                    'name' => 'OrderType',
                    'in' => 'query',
                    'schema' => ['description' => 'The order type. Valid values:'."\n"
                        ."\n"
                        .'- **NEW**: new purchase.'."\n"
                        ."\n"
                        .'- **ADD_FLOW**: pool expansion.'."\n"
                        ."\n"
                        .'- **ADD_CARD**: card replacement.'."\n"
                        ."\n"
                        .'- **FUNCTION**: monthly feature fee purchase.'."\n"
                        ."\n"
                        .'- **FLOW_PLUS**: add-on package purchase.'."\n"
                        ."\n"
                        .'- **RENEW**: plan renewal.'."\n"
                        ."\n"
                        .'- **AUTO_RENEW**: automatic plan renewal.', 'type' => 'string', 'required' => false, 'example' => 'NEW', 'title' => ''],
                ],
                [
                    'name' => 'OrderStatus',
                    'in' => 'query',
                    'schema' => ['description' => 'The order status. Valid values:'."\n"
                        ."\n"
                        .'- **processing**: being processed.'."\n"
                        ."\n"
                        .'- **failure**: failed.'."\n"
                        ."\n"
                        .'- **completed**: completed.'."\n"
                        ."\n"
                        .'- **unpaid**: pending payment.'."\n"
                        ."\n"
                        .'- **refunded**: refunded.', 'type' => 'string', 'required' => false, 'example' => 'processing', 'title' => ''],
                ],
                [
                    'name' => 'PageNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number. Use this parameter together with the `PageSize` parameter.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of entries per page. Valid values: 10, 15, 25, and 40.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'docRequired' => true, 'example' => '10', 'title' => ''],
                ],
                [
                    'name' => 'CredentialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The plan credential.', 'type' => 'string', 'required' => false, 'example' => 'CT-SF-M-2-100M', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                ."\n"
                                .'- **true**: The call is successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => [
                                'description' => 'The returned data.',
                                'type' => 'object',
                                'properties' => [
                                    'PageNo' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
                                    'PageSize' => ['description' => 'The number of entries per page.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
                                    'PageCount' => ['description' => 'The total number of pages.', 'type' => 'integer', 'format' => 'int32', 'example' => '5', 'title' => ''],
                                    'Total' => ['description' => 'The total number of orders that meet the conditions.', 'type' => 'integer', 'format' => 'int32', 'example' => '48', 'title' => ''],
                                    'List' => [
                                        'description' => 'The order list.',
                                        'type' => 'array',
                                        'items' => [
                                            'description' => 'The order list.',
                                            'type' => 'object',
                                            'properties' => [
                                                'BillingCycle' => ['description' => 'The plan billing cycle. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **1101**: monthly.'."\n"
                                                    ."\n"
                                                    .'- **1103**: quarterly.'."\n"
                                                    ."\n"
                                                    .'- **1106**: semi-annually.'."\n"
                                                    ."\n"
                                                    .'- **1112**: annually.', 'type' => 'string', 'example' => '1101', 'title' => ''],
                                                'BuyNum' => ['description' => 'The number of cards purchased.', 'type' => 'integer', 'format' => 'int32', 'example' => '100', 'title' => ''],
                                                'PoolCapacityUnit' => ['description' => 'The unit of the pool capacity.', 'type' => 'string', 'example' => 'GB', 'title' => ''],
                                                'CardPayCount' => ['description' => 'The payment time.', 'type' => 'integer', 'format' => 'int32', 'example' => '2022-04-11 16:43:00', 'title' => ''],
                                                'CredentialPackage' => ['description' => 'The plan credential.', 'type' => 'string', 'example' => 'AL-UPG-******3_beika4', 'title' => ''],
                                                'Vendor' => ['description' => 'The carrier. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **CMCC**: China Mobile.'."\n"
                                                    ."\n"
                                                    .'- **CUCC**: China Unicom.'."\n"
                                                    ."\n"
                                                    .'- **CTCC**: China Telecom.'."\n"
                                                    ."\n"
                                                    .'- **VNO**: virtual network operator.', 'type' => 'string', 'example' => 'CMCC', 'title' => ''],
                                                'DataLevel' => ['description' => 'The data package tier.', 'type' => 'string', 'example' => '30MB', 'title' => ''],
                                                'PayDuration' => ['description' => 'The purchase duration.', 'type' => 'string', 'example' => '12月', 'title' => ''],
                                                'AliFee' => ['description' => 'The rate plan version.', 'type' => 'string', 'example' => 'ali_2', 'title' => ''],
                                                'OrderStatus' => ['description' => 'The order status. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **processing**: being processed.'."\n"
                                                    ."\n"
                                                    .'- **failure**: failed.'."\n"
                                                    ."\n"
                                                    .'- **completed**: completed.'."\n"
                                                    ."\n"
                                                    .'- **unpaid**: pending payment.'."\n"
                                                    ."\n"
                                                    .'- **refunded**: refunded.', 'type' => 'string', 'example' => 'processing', 'title' => ''],
                                                'PoolNo' => ['description' => 'The pool number.', 'type' => 'string', 'example' => 'beika4', 'title' => ''],
                                                'FunctionFee' => ['description' => 'The number of monthly feature fee shares. This parameter is specific to unified payment pools.', 'type' => 'integer', 'format' => 'int32', 'example' => '90', 'title' => ''],
                                                'PayTime' => ['description' => 'The purchase time.', 'type' => 'string', 'example' => '2022-04-11 16:43:00', 'title' => ''],
                                                'FlowType' => ['description' => 'The traffic type. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **singlecard**: single-card general traffic.'."\n"
                                                    ."\n"
                                                    .'- **directionalcard**: single-card directional traffic.'."\n"
                                                    ."\n"
                                                    .'- **sameflowcard**: same-tier pool shared traffic.'."\n"
                                                    ."\n"
                                                    .'- **directional_sameflowcard**: same-tier pool shared directional traffic.'."\n"
                                                    ."\n"
                                                    .'- **unityPayPool**: unified payment pool general traffic.'."\n"
                                                    ."\n"
                                                    .'- **GREcard**: unified payment pool directional traffic.', 'type' => 'string', 'example' => 'singlecard', 'title' => ''],
                                                'PoolCapacity' => ['description' => 'The pool capacity. For the unit, see the **PoolCapacityUnit** field.', 'type' => 'string', 'example' => '200', 'title' => ''],
                                                'OrderInfo' => ['description' => 'The order information.', 'type' => 'string', 'example' => '123123', 'title' => ''],
                                                'OrderType' => ['description' => 'The order type. Valid values:'."\n"
                                                    ."\n"
                                                    .'- **NEW**: new purchase.'."\n"
                                                    ."\n"
                                                    .'- **ADD_FLOW**: pool expansion.'."\n"
                                                    ."\n"
                                                    .'- **ADD_CARD**: card replacement.'."\n"
                                                    ."\n"
                                                    .'- **FUNCTION**: monthly feature fee purchase.'."\n"
                                                    ."\n"
                                                    .'- **FLOW_PLUS**: add-on package purchase.'."\n"
                                                    ."\n"
                                                    .'- **RENEW**: plan renewal.'."\n"
                                                    ."\n"
                                                    .'- **AUTO_RENEW**: automatic plan renewal.', 'type' => 'string', 'example' => 'NEW', 'title' => ''],
                                                'OrderId' => ['description' => 'The order ID.', 'type' => 'string', 'example' => '21450******0275', 'title' => ''],
                                                'CredentialNo' => ['description' => 'The plan credential.', 'type' => 'string', 'example' => 'CM-***-*-2-**M', 'title' => ''],
                                                'ExpressNoList' => [
                                                    'description' => 'The logistics information.',
                                                    'type' => 'array',
                                                    'items' => ['description' => 'The logistics tracking number.', 'type' => 'string', 'example' => '123123123', 'title' => ''],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'DeliveryInfo' => [
                                                    'description' => 'The delivery information.',
                                                    'type' => 'object',
                                                    'properties' => [
                                                        'ZipCode' => ['description' => 'The zip code in the delivery information.', 'type' => 'string', 'example' => '100000', 'title' => ''],
                                                        'Address' => ['description' => 'The address in the delivery information.', 'type' => 'string', 'example' => '收货地址', 'title' => ''],
                                                        'Mail' => ['description' => 'The email address in the delivery information.', 'type' => 'string', 'example' => 'xxx@xxx.com', 'title' => ''],
                                                        'Receiver' => ['description' => 'The recipient in the delivery information.', 'type' => 'string', 'example' => '收件人', 'title' => ''],
                                                        'BuyerMessage' => ['description' => 'The phone number in the delivery information.', 'type' => 'string', 'example' => '收件电话', 'title' => ''],
                                                    ],
                                                    'title' => '',
                                                    'example' => '',
                                                ],
                                                'OrderDetailUrl' => ['description' => 'The URL of the order details.', 'type' => 'string', 'example' => 'https://us******60589', 'title' => ''],
                                                'ApnName' => ['description' => 'The APN name.', 'type' => 'string', 'example' => 'CMIOTCZHZA.JS', 'title' => ''],
                                                'ApnRegion' => ['description' => 'The APN region.', 'type' => 'string', 'example' => 'cn-hangzhou', 'title' => ''],
                                                'ResourceQuantity' => ['description' => 'The quantity of IP addresses purchased.', 'type' => 'integer', 'format' => 'int64', 'example' => '10000', 'title' => ''],
                                                'NetworkType' => ['description' => 'The network type. Valid values: 4G and 5G.', 'type' => 'string', 'example' => '4G', 'title' => ''],
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                        'title' => '',
                                        'example' => '',
                                    ],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.InvalidAliyunPK', 'errorMessage' => 'AliyunPk is invalid.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.BusinessProcessError', 'errorMessage' => 'A business processing exception occurred.', 'description' => 'linkcard.common.BusinessProcessError'],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": {\\n    \\"PageNo\\": 1,\\n    \\"PageSize\\": 10,\\n    \\"PageCount\\": 5,\\n    \\"Total\\": 48,\\n    \\"List\\": [\\n      {\\n        \\"BillingCycle\\": \\"1101\\",\\n        \\"BuyNum\\": 100,\\n        \\"PoolCapacityUnit\\": \\"GB\\",\\n        \\"CardPayCount\\": 0,\\n        \\"CredentialPackage\\": \\"AL-UPG-******3_beika4\\",\\n        \\"Vendor\\": \\"CMCC\\",\\n        \\"DataLevel\\": \\"30MB\\",\\n        \\"PayDuration\\": \\"12月\\",\\n        \\"AliFee\\": \\"ali_2\\",\\n        \\"OrderStatus\\": \\"processing\\",\\n        \\"PoolNo\\": \\"beika4\\",\\n        \\"FunctionFee\\": 90,\\n        \\"PayTime\\": \\"2022-04-11 16:43:00\\",\\n        \\"FlowType\\": \\"singlecard\\",\\n        \\"PoolCapacity\\": \\"200\\",\\n        \\"OrderInfo\\": \\"123123\\",\\n        \\"OrderType\\": \\"NEW\\",\\n        \\"OrderId\\": \\"21450******0275\\",\\n        \\"CredentialNo\\": \\"CM-***-*-2-**M\\",\\n        \\"ExpressNoList\\": [\\n          \\"123123123\\"\\n        ],\\n        \\"DeliveryInfo\\": {\\n          \\"ZipCode\\": \\"100000\\",\\n          \\"Address\\": \\"收货地址\\",\\n          \\"Mail\\": \\"xxx@xxx.com\\",\\n          \\"Receiver\\": \\"收件人\\",\\n          \\"BuyerMessage\\": \\"收件电话\\"\\n        },\\n        \\"OrderDetailUrl\\": \\"https://us******60589\\",\\n        \\"ApnName\\": \\"CMIOTCZHZA.JS\\",\\n        \\"ApnRegion\\": \\"cn-hangzhou\\",\\n        \\"ResourceQuantity\\": 10000,\\n        \\"NetworkType\\": \\"4G\\"\\n      }\\n    ]\\n  }\\n}","type":"json"}]',
            'title' => 'Query order list',
            'description' => '## Limits'."\n"
                ."\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'In addition to the operation-specific request parameters described in this topic, you must also specify common request parameters when you invoke this operation. For more information, see [Common parameters](~~375336~~).',
            'changeSet' => [
                ['createdAt' => '2023-08-03T02:45:20.000Z', 'description' => 'Response parameters changed'],
                ['createdAt' => '2023-04-12T04:59:35.000Z', 'description' => 'Request parameters changed'],
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed, Response parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListOrder'],
                ],
            ],
            'ramActions' => [],
        ],
        'RebindResumeSingleCard' => [
            'summary' => 'Changes the status of a card from "rebind deactivated" to "rebind reactivated".',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card, or view it on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'OptMsisdns',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Specifies whether to perform the operation on a sub-card. Set this parameter to the MSISDN of the sub-card.'."\n"
                            ."\n"
                            .'- This parameter is not required for a standard single-network card.'."\n"
                            .'- For a virtual network operator:'."\n"
                            .'    - If you specify this parameter, the operation is performed on the specified sub-card.'."\n"
                            .'    - If you do not specify this parameter, the operation is performed on all sub-cards.',
                        'type' => 'array',
                        'items' => ['description' => 'The MSISDN of the sub-card.', 'type' => 'string', 'required' => false, 'example' => '141******1111', 'title' => ''],
                        'required' => false,
                        'example' => ' ["1112******826","1112******827"] ',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result.'."\n"
                                ."\n"
                                .'- **true**: The operation is successful.'."\n"
                                ."\n"
                                .'- **false**: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, which is the identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                .'- **true**: The call is successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'Iccid cannot be empty.	', 'title' => ''],
                            'Code' => ['description' => 'The return code of the operation.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"Iccid cannot be empty.\\\\t\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Rebind and reactivate a card',
            'description' => '## Operation description'."\n"
                ."\n\n"
                .'An IoT card has a one-to-one relationship with a device. When an IoT card is first inserted into a device and generates traffic after being powered on, it is bound to that device. If the card is moved to a different device, the card is locked. You can call this operation to unlock the card.',
            'requestParamsDescription' => ' When you invoke this operation, you must specify the request parameters described in this topic and the common request parameters. For more information about common request metric description, see [Common parameters](~~375336~~).',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed, Request parameters changed'],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:RebindResumeSingleCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'RebindResumeSingleCard'],
                ],
            ],
        ],
        'Renew' => [
            'summary' => 'Renews plan subscriptions and purchases add-on packages for IoT cards. This operation applies only to single-card plans and same-tier pool plans. For unified-payment pool plans, use the pool expansion and feature fee purchase functions in the console.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [
                [
                    'name' => 'ApiProduct',
                    'in' => 'formData',
                    'schema' => ['description' => 'The API code.', 'type' => 'string', 'required' => false, 'example' => 'linkcard', 'title' => ''],
                ],
                [
                    'name' => 'ApiRevision',
                    'in' => 'formData',
                    'schema' => ['description' => 'The API version.', 'type' => 'string', 'required' => false, 'example' => '2021-05-20', 'title' => ''],
                ],
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'allowEmptyValue' => false,
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card itself, or on the Card Management page of the IoT SIM Service console.', 'type' => 'string', 'docRequired' => true, 'required' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'RechargeType',
                    'in' => 'query',
                    'schema' => ['description' => 'The recharge type. Valid values:'."\n"
                        ."\n"
                        .'- STANDARD: renews a plan subscription.'."\n"
                        .'- OVERLAY: purchases an add-on package.', 'type' => 'string', 'docRequired' => true, 'required' => true, 'example' => 'STANDARD', 'title' => ''],
                ],
                [
                    'name' => 'SerialNo',
                    'in' => 'query',
                    'schema' => ['description' => 'The custom order number. The number must be unique and idempotent.'."\n"
                        ."\n"
                        .'If your recharge involves order management on your own platform, such as recharging for downstream customers, you can enter an external order number generated by your platform. After this operation is called successfully, an order number (OrderNo) is generated. This parameter helps you associate the generated order number with the external order number. If this scenario does not apply, enter any positive integer, such as 0.', 'type' => 'string', 'docRequired' => true, 'required' => true, 'example' => '12345678', 'title' => ''],
                ],
                [
                    'name' => 'OfferCode',
                    'in' => 'query',
                    'schema' => ['description' => 'This parameter is required when the recharge type is set to add-on package purchase.'."\n"
                        ."\n"
                        .'Contact your technical support representative for the specific code.', 'type' => 'string', 'docRequired' => false, 'required' => false, 'example' => 'COM***0203', 'title' => ''],
                ],
                [
                    'name' => 'BuyNum',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of units to purchase. Select the number based on the plan type of the IoT card. Valid values:'."\n"
                        .'- Renew a monthly plan: 1, 2, 3, 6, 9, or 12.'."\n"
                        .'- Renew an annual plan: 1, 2, or 3.'."\n"
                        .'- Purchase an add-on package: 1, 2, or 3.', 'type' => 'integer', 'format' => 'int32', 'docRequired' => true, 'required' => true, 'example' => '12', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'Schema of Response',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['title' => '', 'description' => 'The request ID generated by Alibaba Cloud for this request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                .'- **true**: The call is successful.'."\n"
                                .'- **false**: The call fails.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'Data' => [
                                'description' => 'The order number data returned.',
                                'type' => 'object',
                                'properties' => [
                                    'OrderNo' => ['description' => 'The order number generated after the operation is called successfully.', 'type' => 'string', 'example' => '21450******0275', 'title' => ''],
                                    'SerialNo' => ['description' => 'The custom order number (SerialNo).', 'type' => 'string', 'example' => '12345678', 'title' => ''],
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Success\\": true,\\n  \\"Data\\": {\\n    \\"OrderNo\\": \\"21450******0275\\",\\n    \\"SerialNo\\": \\"12345678\\"\\n  }\\n}","type":"json"}]',
            'title' => 'Recharge',
            'description' => '## Limits'."\n"
                ."\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'When you invoke this operation, you must specify the operation-specific request parameters described in this topic and the common request parameters. For the metric description of common request parameters, see [Common parameters](~~375336~~).',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:27.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-11-07T06:18:54.000Z', 'description' => 'Error codes changed'],
                ['createdAt' => '2022-04-19T01:49:12.000Z', 'description' => 'OpenAPI offline'],
                ['createdAt' => '2022-04-19T01:49:12.000Z', 'description' => 'Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'Renew'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'linkcard:Renew',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'ResumeSingleCard' => [
            'summary' => 'Resume a single card that is in the "Voluntarily Deactivated" or "Mass Deactivated" status to the "Reuse" state.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can find the ICCID on the IoT card, or view the ICCID on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'OptMsisdns',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Specifies whether to perform the operation on sub-cards by entering the MSISDN of the sub-cards.'."\n"
                            ."\n"
                            .'- This parameter is not required for regular single network cards.'."\n"
                            .'- For virtual operators:'."\n"
                            .'    - If this parameter is specified, the operation is performed on the specified sub-cards.'."\n"
                            .'    - If this parameter is not specified, the operation is performed on all sub-cards.',
                        'type' => 'array',
                        'items' => ['description' => 'The MSISDN of the sub-card.', 'type' => 'string', 'required' => false, 'example' => '141******1111', 'title' => ''],
                        'required' => false,
                        'example' => '["111******6826","11*******6827"]',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result.'."\n"
                                ."\n"
                                .'- **true**: The execution was successful.'."\n"
                                ."\n"
                                .'- **false**: The execution failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, which is the identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.	', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: Success.'."\n"
                                .'- Others: Error code. For more information about error codes, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\\\t\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Proactively resume a card',
            'description' => '## Usage Notes'."\n"
                ."\n\n"
                .'The maximum number of queries per second (QPS) for a single Alibaba Cloud account to call this API operation is 20.'."\n"
                ."\n"
                .'> RAM users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'When you call this API operation, in addition to the request parameters described in this topic, you must also include common request parameters. For more information about common request parameters, see [Common parameters](~~375336~~).'."\n",
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed, Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ResumeSingleCard'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:ResumeSingleCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'SendMessage' => [
            'summary' => 'Sends an SMS message from the platform.',
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create', 'riskType' => 'none', 'chargeType' => 'free'],
            'parameters' => [
                [
                    'name' => 'TaskName',
                    'in' => 'formData',
                    'schema' => ['description' => 'The custom task name. The name cannot contain special characters and can be up to 40 characters in length.', 'type' => 'string', 'required' => true, 'example' => '任务0912', 'title' => ''],
                ],
                [
                    'name' => 'MessageTemplateId',
                    'in' => 'formData',
                    'schema' => ['title' => '', 'description' => 'The ID of the SMS template. You can view the template ID in the console.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '14'],
                ],
                [
                    'name' => 'MessageVariableParam',
                    'in' => 'formData',
                    'schema' => ['title' => '', 'description' => 'The replacement dynamic parameter for an SMS message, in the format {1}{2}.', 'type' => 'string', 'required' => false, 'example' => '{参数1}{参数2}{参数3}'],
                ],
                [
                    'name' => 'MessageSendTime',
                    'in' => 'formData',
                    'schema' => ['title' => '', 'description' => 'The timestamp, in seconds.'."\n"
                        ."\n"
                        .'If the specified time is earlier than the current time, the message is sent immediately. If the specified time is later than the current time, the message is sent at the scheduled time.'."\n"
                        ."\n"
                        .'The scheduled time cannot be more than one month from the current time.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1694401634'],
                ],
                [
                    'name' => 'Msisdns',
                    'in' => 'formData',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'The list of destination MSISDNs to which the SMS message is sent.',
                        'type' => 'array',
                        'items' => ['description' => 'The destination MSISDN to which the SMS message is sent.', 'type' => 'string', 'required' => false, 'example' => '1411234123412', 'title' => ''],
                        'required' => false,
                        'title' => '',
                        'example' => '',
                    ],
                ],
                [
                    'name' => 'ApiProduct',
                    'in' => 'formData',
                    'schema' => ['description' => 'Linkcard.', 'type' => 'string', 'required' => false, 'example' => 'Linkcard', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'title' => '',
                        'description' => 'SendMessageResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. An identifier that Alibaba Cloud generates for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful. Valid values:'."\n"
                                ."\n"
                                .'- true: The call was successful.'."\n"
                                .'- false: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'200: The call was successful.'."\n"
                                ."\n"
                                .'Other codes: The call failed. For more information, see error codes.', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language of the current region.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'DynamicCode' => ['description' => 'The error code.', 'type' => 'string', 'example' => 'InvokeError', 'title' => ''],
                            'DynamicMessage' => ['description' => 'The error code message.', 'type' => 'string', 'example' => '入参不能为空,或不能包含空格', 'title' => ''],
                            'Data' => ['description' => 'Indicates whether the address was added. Valid values:'."\n"
                                ."\n"
                                .'- true: The address was added.'."\n"
                                .'- false: The address failed to be added.', 'type' => 'integer', 'format' => 'int64', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.common.InvalidAliyunPK', 'errorMessage' => 'AliyunPk is invalid.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                ],
            ],
            'staticInfo' => ['returnType' => 'synchronous'],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"DynamicCode\\": \\"InvokeError\\",\\n  \\"DynamicMessage\\": \\"入参不能为空,或不能包含空格\\",\\n  \\"Data\\": 0\\n}","type":"json"}]',
            'title' => 'SendMessage',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:27.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [],
            ],
            'ramActions' => [
                [
                    'operationType' => 'create',
                    'ramAction' => [
                        'action' => 'linkcard:SendMessage',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'SetCardStopRule' => [
            'summary' => 'Sets the data cap suspension rule for a card. Only same-tier pool plans and unified payment pool plans are supported.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'FlowLimit',
                    'in' => 'query',
                    'schema' => ['description' => 'The data cap threshold for suspension. Only positive integers are supported. Unit: MB.'."\n"
                        ."\n"
                        .'When the monthly data usage reaches this value, the card is automatically suspended. You can manually resume the card.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'docRequired' => true, 'example' => '100', 'title' => ''],
                ],
                [
                    'name' => 'AutoRestore',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to automatically resume the card in the following month after it is suspended due to reaching the data cap.'."\n"
                        ."\n"
                        .'- true (default): Automatically resume in the following month.'."\n"
                        ."\n"
                        .'- false: Do not automatically resume in the following month.', 'type' => 'boolean', 'required' => true, 'docRequired' => true, 'example' => 'true', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result.'."\n"
                                ."\n"
                                .'- **true**: The operation was successful.'."\n"
                                ."\n"
                                .'- **false**: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: The operation was successful.'."\n"
                                .'- Other values: An error occurred. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.RuleMaxValueLimit', 'errorMessage' => 'The maximum value of Rule must be less than 9007199254740991.', 'description' => 'Rule max value must less than 9007199254740991.'],
                    ['errorCode' => 'linkcard.check.RuleMustBePositiveInteger', 'errorMessage' => 'The valid values of Rule are positive integers and zero.', 'description' => 'Rule must be positive integer and zero.'],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => '%s..', 'errorMessage' => '%s..', 'description' => ''],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Set data cap suspension rule for a card',
            'description' => '## Limits'."\n"
                ."\n"
                .'The maximum number of times that a single Alibaba Cloud account can invoke this operation per second (QPS) is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'In addition to the operation-specific request parameters described in this topic, you must also specify common request parameters when you call this operation. For more information, see [Common parameters](~~375336~~).',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'SetCardStopRule'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:SetCardStopRule',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'StopSingleCard' => [
            'summary' => 'Proactively deactivates a single card that is in the "In Use" state.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card, or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'OptMsisdns',
                    'in' => 'query',
                    'style' => 'json',
                    'schema' => [
                        'description' => 'Specifies whether to perform the operation on a sub-card. Set this parameter to the MSISDN of the sub-card.'."\n"
                            ."\n"
                            .'- This parameter is not required for a standard single-network card.'."\n"
                            .'- For a virtual network operator:'."\n"
                            .'    - If you specify this parameter, the operation is performed on the specified sub-card.'."\n"
                            .'    - If you do not specify this parameter, the operation is performed on all sub-cards.',
                        'type' => 'array',
                        'items' => ['description' => 'The MSISDN of the sub-card.', 'type' => 'string', 'required' => false, 'example' => '141******1111', 'title' => ''],
                        'required' => false,
                        'example' => '["1112******826","1112******827"] ',
                        'title' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result.'."\n"
                                ."\n"
                                .'- **true**: The operation was successful.'."\n"
                                ."\n"
                                .'- **false**: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID, which is the identifier generated by Alibaba Cloud for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.	', 'title' => ''],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- **200**: success.'."\n"
                                .'- Other values: error codes. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\\\t\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'Proactively deactivate a card',
            'description' => '## Before you begin'."\n"
                ."\n\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'When you invoke this operation, you must specify the operation-specific request parameters described in this topic and the common request parameters. For the metric description of common request parameters, see [Common parameters](~~375336~~).',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed, Request parameters changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'StopSingleCard'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:StopSingleCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'UpdateAutoRechargeSwitch' => [
            'summary' => 'Enables or disables the auto-renewal feature for a card. This operation applies only to single-card plans and same-tier pool plans.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'readAndWrite',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card or on the Card Management page of the [IoT SIM Service console](https://dyiotnext.console.aliyun.com/?spm=a2c4g.11186623.0.0.6a072d25p4pUg8).', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
                [
                    'name' => 'Open',
                    'in' => 'query',
                    'schema' => ['description' => 'The auto-renewal switch.'."\n"
                        ."\n"
                        .'- **true**: Enables auto-renewal.'."\n"
                        ."\n"
                        .'- **false**: Disables auto-renewal.', 'type' => 'boolean', 'required' => true, 'docRequired' => true, 'example' => 'true', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'Data' => ['description' => 'The execution result.'."\n"
                                ."\n"
                                .'- **true**: The operation is successful.'."\n"
                                ."\n"
                                .'- **false**: The operation failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for the request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call fails.', 'type' => 'string', 'example' => '系统异常', 'title' => ''],
                            'Success' => ['description' => 'Indicates whether the call is successful.'."\n"
                                .'- **true**: The call is successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Code' => ['description' => 'The return code of the operation.'."\n"
                                ."\n"
                                .'- **200**: The operation is successful.'."\n"
                                .'- Other values: An error code is returned. For more information, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => '%s.', 'errorMessage' => '%s.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                ],
                500 => [
                    ['errorCode' => 'linkcard.system.RPCInvokeError', 'errorMessage' => 'An RPC invoking error occurred', 'description' => 'An RPC invoking error occurred'],
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"Data\\": true,\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"ErrorMessage\\": \\"系统异常\\",\\n  \\"Success\\": true,\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Code\\": \\"200\\"\\n}","type":"json"}]',
            'title' => 'UpdateAutoRechargeSwitch',
            'description' => '## Limits'."\n"
                ."\n"
                .'The maximum number of queries per second (QPS) per Alibaba Cloud account for invoking this operation is 20.'."\n"
                ."\n"
                .'> Resource Access Management (RAM) users share the quota of the Alibaba Cloud account.',
            'requestParamsDescription' => 'In addition to the operation-specific request parameters described in this topic, you must also specify common request parameters when you call this operation. For more information, see [Common parameters](~~375336~~).',
            'changeSet' => [
                ['createdAt' => '2022-10-28T11:23:14.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateAutoRechargeSwitch'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'update',
                    'ramAction' => [
                        'action' => 'linkcard:UpdateAutoRechargeSwitch',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
        'VerifyIotCard' => [
            'summary' => 'Queries whether an IoT card is a directional card.',
            'methods' => ['post', 'get'],
            'schemes' => ['https', 'http'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'Iccid',
                    'in' => 'query',
                    'schema' => ['description' => 'The ICCID of the IoT card.'."\n"
                        ."\n"
                        .'You can view the ICCID on the IoT card, or on the Card Management page of the IoT SIM Service console.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'example' => '89860321******15668', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'headers' => [],
                    'schema' => [
                        'title' => '',
                        'description' => 'VerifyIotCardResponse',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID. Alibaba Cloud generates a unique identifier for each API request.', 'type' => 'string', 'example' => 'E4F94B97-1D64-4080-BFD2-67461667AA43', 'title' => ''],
                            'Success' => ['title' => '', 'description' => 'Indicates whether the call was successful.'."\n"
                                .'- **true**: The call was successful.'."\n"
                                .'- **false**: The call failed.', 'type' => 'boolean', 'example' => 'true'],
                            'Code' => ['description' => 'The response code.'."\n"
                                ."\n"
                                .'- 200: The call was successful.'."\n"
                                ."\n"
                                .'- Other codes: The call failed. For more information about error codes, see [Error codes](~~375339~~).', 'type' => 'string', 'example' => '200', 'title' => ''],
                            'ErrorMessage' => ['description' => 'The error message returned when the call failed.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'LocalizedMessage' => ['description' => 'The error message displayed in the language that corresponds to the current location.', 'type' => 'string', 'example' => 'InstanceId cannot be empty.', 'title' => ''],
                            'Data' => ['description' => 'Indicates whether the card is a directional card.'."\n"
                                ."\n"
                                .'- **true**: The card is a directional card.'."\n"
                                ."\n"
                                .'- **false**: The card is not a directional card.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                        ],
                        'example' => '',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    ['errorCode' => 'linkcard.check.IccidCanNotEmpty', 'errorMessage' => 'Iccid cannot be empty.', 'description' => 'Iccid cannot be empty.'],
                    ['errorCode' => 'linkcard.system.IllegalRequest', 'errorMessage' => 'The request parameter is invalid.', 'description' => 'The request parameter is invalid.'],
                    ['errorCode' => 'linkcard.common.CardDestroy', 'errorMessage' => 'The card do not exist or destroy.', 'description' => ''],
                    ['errorCode' => 'CardDisabled', 'errorMessage' => 'The SIM card has been permanently disabled.', 'description' => ''],
                    ['errorCode' => 'linkcard.common.CardNotExist', 'errorMessage' => 'The card does not exist.', 'description' => ''],
                    ['errorCode' => 'IllegalParameter', 'errorMessage' => 'The request parameter %s is invalid.', 'description' => ''],
                ],
                403 => [
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny', 'errorMessage' => 'You do not have the RAM permission.', 'description' => 'You do not have the RAM permission.'],
                    ['errorCode' => 'linkcard.common.RamActionPermissionDeny ', 'errorMessage' => 'You do not have the RAM permission.  ', 'description' => ''],
                ],
                500 => [
                    ['errorCode' => 'Service.InternalError', 'errorMessage' => 'An internal error occurred.', 'description' => ''],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"E4F94B97-1D64-4080-BFD2-67461667AA43\\",\\n  \\"Success\\": true,\\n  \\"Code\\": \\"200\\",\\n  \\"ErrorMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"LocalizedMessage\\": \\"InstanceId cannot be empty.\\",\\n  \\"Data\\": true\\n}","type":"json"}]',
            'title' => 'Query directional card',
            'requestParamsDescription' => 'In addition to the request parameters described in this topic, you must also specify common request parameters when you call this API operation. For more information, see [Common parameters](~~30561~~).',
            'changeSet' => [
                ['createdAt' => '2025-11-27T07:56:26.000Z', 'description' => 'Error codes changed'],
            ],
            'flowControl' => [
                'flowControlList' => [
                    ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'VerifyIotCard'],
                ],
            ],
            'ramActions' => [
                [
                    'operationType' => 'get',
                    'ramAction' => [
                        'action' => 'linkcard:VerifyIotCard',
                        'authLevel' => 'operate',
                        'actionConditions' => [],
                        'resources' => [
                            ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                        ],
                    ],
                ],
            ],
        ],
    ],
    'endpoints' => [
        ['regionId' => 'ap-northeast-1', 'regionName' => 'Japan (Tokyo)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-1', 'regionName' => 'Singapore', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-2', 'regionName' => 'Australia (Sydney) Closed', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-3', 'regionName' => 'Malaysia (Kuala Lumpur)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-southeast-5', 'regionName' => 'Indonesia (Jakarta)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-beijing', 'regionName' => 'China (Beijing)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-chengdu', 'regionName' => 'China (Chengdu)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-hangzhou', 'regionName' => 'China (Hangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-hongkong', 'regionName' => 'China (Hong Kong)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-huhehaote', 'regionName' => 'China (Hohhot)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-qingdao', 'regionName' => 'China (Qingdao)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shanghai', 'regionName' => 'China (Shanghai)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shenzhen', 'regionName' => 'China (Shenzhen)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-wulanchabu', 'regionName' => 'China (Ulanqab)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-zhangjiakou', 'regionName' => 'China (Zhangjiakou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'us-west-1', 'regionName' => 'US (Silicon Valley)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'us-east-1', 'regionName' => 'US (Virginia)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'eu-west-1', 'regionName' => 'UK (London)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'eu-central-1', 'regionName' => 'Germany (Frankfurt)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'me-east-1', 'regionName' => 'UAE (Dubai)', 'areaId' => 'middleEast', 'areaName' => 'Middle East', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'ap-south-1', 'regionName' => 'India (Mumbai) Closed', 'areaId' => 'middleEast', 'areaName' => 'Middle East', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shenzhen-finance-1', 'regionName' => 'China South 1 Finance', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-shanghai-finance-1', 'regionName' => 'China East 2 Finance', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-north-2-gov-1', 'regionName' => 'Beijing Government Cloud', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-hangzhou-finance', 'regionName' => 'China East 1 Finance', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
        ['regionId' => 'cn-beijing-finance-1', 'regionName' => 'China North 2 Finance (Preview)', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'linkcard.aliyuncs.com', 'endpoint' => 'linkcard.aliyuncs.com', 'vpc' => ''],
    ],
    'errorCodes' => [
        ['code' => '%s.', 'message' => '%s.', 'http_code' => 403, 'description' => ''],
        ['code' => '%s..', 'message' => '%s..', 'http_code' => 500, 'description' => ''],
        ['code' => 'BBC.FAIL', 'message' => 'A business processing exception occurred.', 'http_code' => 400, 'description' => ''],
        ['code' => 'CardDisabled', 'message' => 'The SIM card has been permanently disabled.', 'http_code' => 400, 'description' => ''],
        ['code' => 'IdempotentParameterMismatch', 'message' => 'The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.', 'http_code' => 400, 'description' => ''],
        ['code' => 'IllegalParameter', 'message' => 'The request parameter %s is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.cha.PolicyAlreadyBound', 'message' => 'Cha policy has already been bound', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.cha.ResourceNotExist', 'message' => 'Cha resource does not exist.', 'http_code' => 404, 'description' => ''],
        ['code' => 'linkcard.check.DataLevelCanNotEmpty', 'message' => 'Data level cannot be empty.', 'http_code' => 400, 'description' => 'Data level cannot be empty.'],
        ['code' => 'linkcard.check.DataTypeCanNotEmpty', 'message' => 'Data type cannot be empty.', 'http_code' => 400, 'description' => 'Data type cannot be empty.'],
        ['code' => 'linkcard.check.ForceActivationSameFlowCard', 'message' => 'Only cards in the same flow support forced activation.', 'http_code' => 400, 'description' => 'Only same flow card can be force activation.'],
        ['code' => 'linkcard.check.IccidCanNotEmpty', 'message' => 'Iccid cannot be empty.', 'http_code' => 400, 'description' => 'Iccid cannot be empty.'],
        ['code' => 'linkcard.check.InstanceIdCanNotEmpty', 'message' => 'InstanceId cannot be empty.', 'http_code' => 400, 'description' => 'InstanceId cannot be empty.'],
        ['code' => 'linkcard.check.NonCard', 'message' => 'The number of cards triggered by the condition is zero.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.OnlyUnusedCanForceActivation', 'message' => 'Only unused cards support forced activation.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.OssFileFormatError', 'message' => 'The file format is invalid.', 'http_code' => 400, 'description' => 'The format of file is invalid'],
        ['code' => 'linkcard.check.OverCardCount', 'message' => 'The number of cards triggered by the condition  exceeds the limit.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.OverExportCount', 'message' => 'The number of cards owned by the user exceeds the limit.', 'http_code' => 400, 'description' => 'The number of cards owned by the user exceeds the limit.'],
        ['code' => 'linkcard.check.OverExportCount', 'message' => 'OverExportCount', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.OverRuleCount', 'message' => 'The number of rules owned by the user exceeds the limit.', 'http_code' => 400, 'description' => 'The number of rules owned by the user exceeds the limit.'],
        ['code' => 'linkcard.check.OverThreshold', 'message' => 'The number of Trigger Condition Usage setting exceeds the limit.', 'http_code' => 400, 'description' => 'The number of Trigger Condition Usage setting exceeds the limit.'],
        ['code' => 'linkcard.check.RuleMaxValueLimit', 'message' => 'The maximum value of Rule must be less than 9007199254740991.', 'http_code' => 400, 'description' => 'Rule max value must less than 9007199254740991.'],
        ['code' => 'linkcard.check.RuleMustBePositiveInteger', 'message' => 'The valid values of Rule are positive integers and zero.', 'http_code' => 400, 'description' => 'Rule must be positive integer and zero.'],
        ['code' => 'linkcard.check.SerialNoCanNotEmpty', 'message' => 'Serial Number cannot be empty.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.SerialNoNotExist', 'message' => 'Serial Number not exist.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.check.StartTimeLessEndTime', 'message' => 'The StartTime must be earlier than the EndTime.', 'http_code' => 400, 'description' => 'StartTime must small than endTime'],
        ['code' => 'linkcard.check.TagIdCanNotEmpty', 'message' => 'The TagId must not be empty.', 'http_code' => 400, 'description' => 'The TagId must not be empty.'],
        ['code' => 'linkcard.check.TimeFormatError', 'message' => 'Time format error.', 'http_code' => 400, 'description' => 'Time format error.'],
        ['code' => 'linkcard.check.UploadFileBeyondLimit', 'message' => 'The uploaded file exceeds the limit.', 'http_code' => 400, 'description' => 'Upload file beyond limit.'],
        ['code' => 'linkcard.check.UploadFileDuplicateCard', 'message' => 'Iccid is duplicated.', 'http_code' => 400, 'description' => 'Iccid is duplicate'],
        ['code' => 'linkcard.check.UploadFileInvalidCard', 'message' => 'Iccid is invalid.', 'http_code' => 400, 'description' => 'Iccid is invalid'],
        ['code' => 'linkcard.common.Ambiguous', 'message' => 'The input value is ambiguous.', 'http_code' => 400, 'description' => 'The input value is ambiguous.'],
        ['code' => 'linkcard.common.BusinessProcessError', 'message' => 'A business processing exception occurred.', 'http_code' => 500, 'description' => 'linkcard.common.BusinessProcessError'],
        ['code' => 'linkcard.common.CardDestroy', 'message' => 'The card do not exist or destroy.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.CardNotExist', 'message' => 'The card does not exist.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.CredentialInstanceNotExist', 'message' => 'The credential instance does not exist.', 'http_code' => 400, 'description' => 'Credential instance not exist.'],
        ['code' => 'linkcard.common.CredentialNoNotExist', 'message' => 'The credentialNo does not exist', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.IccidFormatError', 'message' => 'Iccid format error.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.IccidNotExist', 'message' => 'IccId does not exist.', 'http_code' => 400, 'description' => 'Iccid not exist.'],
        ['code' => 'linkcard.common.InvalidAliyunPK', 'message' => 'AliyunPk is invalid.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.InvalidCallerTypeError', 'message' => 'This access mode is not supported.', 'http_code' => 400, 'description' => 'This access mode is not supported.'],
        ['code' => 'linkcard.common.RamActionPermissionDeny', 'message' => 'You do not have the RAM permission.', 'http_code' => 403, 'description' => 'You do not have the RAM permission.'],
        ['code' => 'linkcard.common.Retry', 'message' => 'Please try again later', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.common.SignVerificationFailed', 'message' => 'Sign verification failed.', 'http_code' => 400, 'description' => 'Sign verification failed'],
        ['code' => 'linkcard.common.VnoCardNotSupported', 'message' => 'This function does not support vno card.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.directional.notExist', 'message' => 'Can not find direction group.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.service.forbidden', 'message' => 'Please cancel agree write to RocketMq before delete', 'http_code' => 403, 'description' => ''],
        ['code' => 'linkcard.system.BatchOperationFailed', 'message' => 'An internal error occurred. Try again later.', 'http_code' => 500, 'description' => 'An internal error occurred. Try again later.'],
        ['code' => 'linkcard.system.CarrierNotSupport', 'message' => 'The carrier of the card does not support.', 'http_code' => 400, 'description' => ''],
        ['code' => 'linkcard.system.IllegalRequest', 'message' => 'The request parameter is invalid.', 'http_code' => 400, 'description' => 'The request parameter is invalid.'],
        ['code' => 'linkcard.system.RPCInvokeError', 'message' => 'An RPC invoking error occurred', 'http_code' => 500, 'description' => 'An RPC invoking error occurred'],
        ['code' => 'RamActionPermissionDeny', 'message' => 'You do not have the RAM permission.', 'http_code' => 403, 'description' => 'You do not have RAM permissions.'],
        ['code' => 'Service.InternalError', 'message' => 'An internal error occurred.', 'http_code' => 500, 'description' => ''],
        ['code' => 'YX.BusinessError', 'message' => 'A business processing exception occurred.', 'http_code' => 500, 'description' => ''],
        ['code' => 'YX.RpcError', 'message' => 'An RPC invoking error occurred.', 'http_code' => 500, 'description' => ''],
        ['code' => 'YX.SystemInvokeError', 'message' => '%s.', 'http_code' => 500, 'description' => ''],
    ],
    'changeSet' => [
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'AddCardToDirectionalGroup'],
                ['description' => 'Error codes changed', 'api' => 'BatchAddDirectionalAddress'],
                ['description' => 'Error codes changed', 'api' => 'DeleteDirectionalGroup'],
                ['description' => 'Error codes changed', 'api' => 'ForceActivation'],
            ],
            'createdAt' => '2025-11-27T07:56:50.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed, Response parameters changed', 'api' => 'ListCardInfo'],
                ['description' => 'Response parameters changed', 'api' => 'ListOrder'],
            ],
            'createdAt' => '2023-08-03T02:46:41.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'ForceActivation'],
            ],
            'createdAt' => '2023-06-29T06:52:29.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed', 'api' => 'AddTagsToCard'],
            ],
            'createdAt' => '2023-06-29T05:50:58.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Response parameters changed', 'api' => 'GetCredentialPoolStatistics'],
            ],
            'createdAt' => '2023-06-28T06:33:04.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed', 'api' => 'AddDirectionalAddress'],
            ],
            'createdAt' => '2023-05-15T08:05:05.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed', 'api' => 'ListOrder'],
            ],
            'createdAt' => '2023-04-12T04:59:49.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'GetCardDetail'],
                ['description' => 'Error codes changed, Response parameters changed', 'api' => 'GetCardFlowInfo'],
            ],
            'createdAt' => '2023-03-24T08:24:58.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Response parameters changed', 'api' => 'GetRealNameStatus'],
            ],
            'createdAt' => '2023-03-24T08:24:17.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'ListDirectionalDetail'],
            ],
            'createdAt' => '2023-03-24T08:20:41.000Z',
            'description' => '',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed, Response parameters changed', 'api' => 'ListDirectionalAddress'],
            ],
            'createdAt' => '2023-01-09T08:11:33.000Z',
            'description' => '定向组中地址列表增加限制条件',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'GetCardDetail'],
            ],
            'createdAt' => '2022-12-08T06:04:54.000Z',
            'description' => '卡详情增加销户提示错误码',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'Renew'],
            ],
            'createdAt' => '2022-11-07T06:20:21.000Z',
            'description' => '充值接口增加错误码',
        ],
        [
            'apis' => [
                ['description' => 'Error codes changed', 'api' => 'ForceActivation'],
                ['description' => 'Error codes changed', 'api' => 'ListDirectionalDetail'],
                ['description' => 'Error codes changed, Response parameters changed', 'api' => 'ListOrder'],
                ['description' => 'Error codes changed, Request parameters changed', 'api' => 'RebindResumeSingleCard'],
                ['description' => 'Error codes changed, Request parameters changed', 'api' => 'ResumeSingleCard'],
                ['description' => 'Error codes changed, Request parameters changed', 'api' => 'StopSingleCard'],
                ['description' => 'Error codes changed', 'api' => 'UpdateAutoRechargeSwitch'],
            ],
            'createdAt' => '2022-10-28T11:23:46.000Z',
            'description' => '变更对外开放接口的格式',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed', 'api' => 'ListCardInfo'],
            ],
            'createdAt' => '2022-09-29T01:48:49.000Z',
            'description' => '八月份迭代上线',
        ],
        [
            'apis' => [
                ['description' => 'Response parameters changed', 'api' => 'AddDirectionalGroup'],
                ['description' => 'OpenAPI offline', 'api' => 'BatchAddDirectionalAddress'],
                ['description' => 'OpenAPI offline', 'api' => 'ListDirectionalDetail'],
            ],
            'createdAt' => '2022-08-09T12:00:42.000Z',
            'description' => '定向网相关的api发布',
        ],
        [
            'apis' => [
                ['description' => 'OpenAPI offline', 'api' => 'GetMqConfig'],
                ['description' => 'OpenAPI offline', 'api' => 'ListMqService'],
                ['description' => 'OpenAPI offline', 'api' => 'UpdateMqConfig'],
            ],
            'createdAt' => '2022-06-16T08:05:03.000Z',
            'description' => 'MQ业务新增接口',
        ],
        [
            'apis' => [
                ['description' => 'Request parameters changed', 'api' => 'Renew'],
            ],
            'createdAt' => '2022-04-20T06:14:10.000Z',
            'description' => '变更充值接口offerCode参数文档非必填',
        ],
        [
            'apis' => [
                ['description' => 'OpenAPI offline', 'api' => 'Renew'],
            ],
            'createdAt' => '2022-04-19T03:32:17.000Z',
            'description' => '增加充值接口',
        ],
        [
            'apis' => [
                ['description' => 'Response parameters changed', 'api' => 'GetCardDetail'],
            ],
            'createdAt' => '2022-01-20T06:00:57.000Z',
            'description' => '发布接口,向上兼容, 开放平台SDK在本次迭代发布后才会上传',
        ],
    ],
    'flowControl' => [
        'flowControlList' => [
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'UpdateAutoRechargeSwitch'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalGroup'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardLatestFlow'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'RebindResumeSingleCard'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalAddress'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ResumeSingleCard'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteDirectionalGroup'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardRealStatus'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'SetCardStopRule'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddDirectionalCard'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddTagsToCard'],
            ['threshold' => '200', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardFlowInfo'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListCardInfo'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'Renew'],
            ['threshold' => '-1', 'countWindow' => 1, 'regionId' => '*'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'DeleteDirectionalAddress'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'StopSingleCard'],
            ['threshold' => '30', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetRealNameStatus'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListOrder'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetSimCardStateDistribution'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ForceActivation'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDirectionalDetail'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardDetail'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCardStatusStatistics'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'VerifyIotCard'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'AddCardToDirectionalGroup'],
            ['threshold' => '20', 'countWindow' => 1, 'regionId' => '*', 'api' => 'GetCredentialPoolStatistics'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'ListDirectionalAddress'],
            ['threshold' => '50', 'countWindow' => 1, 'regionId' => '*', 'api' => 'BatchAddDirectionalAddress'],
        ],
    ],
    'ram' => [
        'productCode' => 'Dyiot',
        'productName' => 'IoT Mobile Connection Package',
        'ramCodes' => ['linkcard', 'dyiot'],
        'ramLevel' => 'OPERATION',
        'ramConditions' => [],
        'ramActions' => [
            [
                'apiName' => 'GetCardDetail',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:GetCardDetail',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetCardLatestFlow',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetCardLatestFlow',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'CardManage', 'arn' => 'acs:linkcard::{#accountId}:cardmanage/{#cardmanageId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'ForceActivation',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:ForceActivation',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'SendMessage',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'linkcard:SendMessage',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'RebindResumeSingleCard',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:RebindResumeSingleCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListDirectionalDetail',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:ListDirectionalDetail',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ResumeSingleCard',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:ResumeSingleCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'VerifyIotCard',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:VerifyIotCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'ListDirectionalAddress',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:ListDirectionalAddress',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteDirectionalGroup',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:DeleteDirectionalGroup',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'DeleteDirectionalAddress',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:DeleteDirectionalAddress',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'BatchAddDirectionalAddress',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'linkcard:BatchAddDirectionalAddress',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'StopSingleCard',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:StopSingleCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddDirectionalAddress',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:AddDirectionalAddress',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'Renew',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'linkcard:Renew',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetCardStatusStatistics',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetCardStatusStatistics',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetCredentialPoolStatistics',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetCredentialPoolStatistics',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetCardRealStatus',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetCardRealStatus',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddTagsToCard',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:AddTagsToCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetSimCardStateDistribution',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetSimCardStateDistribution',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'SetCardStopRule',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:SetCardStopRule',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'UpdateAutoRechargeSwitch',
                'description' => '',
                'operationType' => 'update',
                'ramAction' => [
                    'action' => 'linkcard:UpdateAutoRechargeSwitch',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddCardToDirectionalGroup',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:AddCardToDirectionalGroup',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard:*:{#accountId}:directionalmanage/{#DirectionalManageId}'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetRealNameStatus',
                'description' => '',
                'operationType' => '',
                'ramAction' => [
                    'action' => 'linkcard:GetRealNameStatus',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddDirectionalCard',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'linkcard:AddDirectionalCard',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
            [
                'apiName' => 'AddDirectionalGroup',
                'description' => '',
                'operationType' => 'create',
                'ramAction' => [
                    'action' => 'linkcard:AddDirectionalGroup',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard::{#accountId}:directionalmanage/*'],
                    ],
                ],
            ],
            [
                'apiName' => 'GetCardFlowInfo',
                'description' => '',
                'operationType' => 'get',
                'ramAction' => [
                    'action' => 'linkcard:GetCardFlowInfo',
                    'authLevel' => 'operate',
                    'actionConditions' => [],
                    'resources' => [
                        ['validationType' => 'always', 'product' => 'Dyiot', 'resourceType' => 'All Resource', 'arn' => '*'],
                    ],
                ],
            ],
        ],
        'resourceTypes' => [
            ['validationType' => 'always', 'resourceType' => 'CardManage', 'arn' => 'acs:linkcard::{#accountId}:*'],
            ['validationType' => 'always', 'resourceType' => 'CardManage', 'arn' => 'acs:linkcard::{#accountId}:cardmanage/{#cardmanageId}'],
            ['validationType' => 'always', 'resourceType' => 'CardManage', 'arn' => 'acs:linkcard::{#accountId}:cardmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'SmsManage', 'arn' => 'acs:linkcard:{#regionId}:{#accountId}:smsmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard::{#accountId}:directionalmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'DashboardManage', 'arn' => 'acs:linkcard::{#accountId}:dashboardmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'CredentialManage', 'arn' => 'acs:linkcard::{#accountId}:credentialmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'TagManage', 'arn' => 'acs:linkcard::{#accountId}:tagmanage/*'],
            ['validationType' => 'always', 'resourceType' => 'DirectionalManage', 'arn' => 'acs:linkcard:*:{#accountId}:directionalmanage/{#DirectionalManageId}'],
        ],
    ],
];