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
|
<?php return [
'version' => '1.0',
'info' => ['style' => 'RPC', 'product' => 'RiskManagement', 'version' => '2026-04-24'],
'directories' => ['BindAuthToMachine', 'CreateSasTrial', 'CreateServiceLinkedRole', 'CreateVirusScanOnceTask', 'DescribeCloudCenterInstances', 'DescribeServiceLinkedRoleStatus', 'DescribeSuspEvents', 'GetAlertRecordAnalysisResult', 'GetAliYunSafeCenterResult', 'GetCanTrySas', 'GetDisposalToolStatus', 'GetValidDeductInstances', 'InitSasModuleRule', 'ListVirusScanMachineEvent', 'OpenTrialPackage', 'QuerySecurityCheckReport', 'StartDisposalToolService', 'UpdatePostPaidBindRel'],
'components' => [
'schemas' => [],
],
'apis' => [
'BindAuthToMachine' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-shenzhen', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'AuthVersion' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '3', 'title' => ''],
'AutoBind' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'Bind' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'bdd3162a-fe5f-4ee3-afda-3134c7b12f29', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'BindAll' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
'Criteria' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '[{\\"name\\":\\"clientStatus\\",\\"value\\":\\"online\\"},{\\"name\\":\\"authVersion\\",\\"value\\":\\"1\\"}]', 'title' => ''],
'IsPreBind' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'LogicalExp' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AND', 'title' => ''],
'NtmVersion' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => 'level2', 'title' => ''],
'UnBind' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'b37a0c00-b479-4d59-aaef-1cdc1f71930f', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'PreBindOrderId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '263076506250432', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'BEE90F8C-EDC2-5394-953B-D07A121612B5'],
'Code' => ['type' => 'string', 'description' => '', 'example' => 'OK', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'Successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'True', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'BindCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '5', 'title' => ''],
'InsufficientCoreCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '2', 'title' => ''],
'InsufficientEcsCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'RequestId' => ['type' => 'string', 'description' => '', 'example' => 'F799C1E4-D4C6-5964-A6D1-4BA9CCF105F2', 'title' => ''],
'ResultCode' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '2', 'title' => ''],
'UnBindCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '4', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"BEE90F8C-EDC2-5394-953B-D07A121612B5\\",\\n \\"Code\\": \\"OK\\",\\n \\"Message\\": \\"Successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"BindCount\\": 5,\\n \\"InsufficientCoreCount\\": 2,\\n \\"InsufficientEcsCount\\": 1,\\n \\"RequestId\\": \\"F799C1E4-D4C6-5964-A6D1-4BA9CCF105F2\\",\\n \\"ResultCode\\": 2,\\n \\"UnBindCount\\": 4\\n }\\n }\\n}","type":"json"}]',
],
'CreateSasTrial' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-shenzhen', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'FromEcs' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
'Lang' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'en', 'title' => ''],
'RequestForm' => [
'type' => 'object',
'properties' => [
'TryReason' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'for poc', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'TryType' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'TryVersion' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '3', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '6B57D35D-9DAC-5393-AE39-07697E37C2E7'],
'Code' => ['type' => 'string', 'description' => '', 'example' => 'SUCCESS', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'OK', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'True', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => 'F7C74264-DF12-56D5-869B-C4B11DD88BA2', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"6B57D35D-9DAC-5393-AE39-07697E37C2E7\\",\\n \\"Code\\": \\"SUCCESS\\",\\n \\"Message\\": \\"OK\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"F7C74264-DF12-56D5-869B-C4B11DD88BA2\\"\\n }\\n }\\n}","type":"json"}]',
],
'CreateServiceLinkedRole' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagement11C0AL'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'ServiceLinkedRole' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AliyunServiceRoleForWebsiteBuildPublish', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '1B4C9A14-94E6-5EEB-BF39-7DACCE9AC0D6'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => 'E00516EB-A56A-5381-ACFE-E618DBC3D0EA', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"1B4C9A14-94E6-5EEB-BF39-7DACCE9AC0D6\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"E00516EB-A56A-5381-ACFE-E618DBC3D0EA\\"\\n }\\n }\\n}","type":"json"}]',
],
'CreateVirusScanOnceTask' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'cn-zhangjiakou'],
],
[
'name' => 'Ip',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '12.3*.22.11'],
],
[
'name' => 'InstanceId',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'rm-0iw73ro05vcwn6ntq'],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '739705BB-B0EF-554B-B3A8-383F4F93E067'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '1D345A09-5ABD-593C-9C26-5C2B28632CD6', 'title' => ''],
'Uuid' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '9ef1a02e1de695cb7f9fea2c6c145853eklEsP2JP0Z'],
'BusinessType' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'VIRUS_SCAN_CYCLE_CONFIG'],
'Platform' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'windows'],
'SelectionKey' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '87af4d19-38fc-408d-9549-2bf7b6c2a4b9'],
'TargetType' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'all_instance'],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'InvalidParameter', 'errorMessage' => 'Specified parameter is not valid.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"739705BB-B0EF-554B-B3A8-383F4F93E067\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"RequestId\\": \\"1D345A09-5ABD-593C-9C26-5C2B28632CD6\\",\\n \\"Uuid\\": \\"9ef1a02e1de695cb7f9fea2c6c145853eklEsP2JP0Z\\",\\n \\"BusinessType\\": \\"VIRUS_SCAN_CYCLE_CONFIG\\",\\n \\"Platform\\": \\"windows\\",\\n \\"SelectionKey\\": 0,\\n \\"TargetType\\": \\"all_instance\\"\\n }\\n}","type":"json"}]',
],
'DescribeCloudCenterInstances' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-beijing', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'Criteria' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '{\\"contactIds\\":[\\"job-658854766790086656\\",\\"job-658854801112113152\\"]}', 'title' => ''],
'CurrentPage' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'Flags' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '0,10,13', 'title' => ''],
'Importance' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '2', 'title' => ''],
'Lang' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'zh', 'title' => ''],
'LogicalExp' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AND', 'title' => ''],
'MachineTypes' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'ecs', 'title' => ''],
'NextToken' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AAAAAZak7VOTMl2OSt/xmc4J6gbg4Z5eXuWnrvKgOsGARL76TVbKERXHXKNFurqjtfDdRw==', 'title' => ''],
'NoGroupTrace' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
'PageSize' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '99', 'title' => ''],
'ResourceDirectoryAccountId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '1587359978118481', 'title' => ''],
'UseNextToken' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '1B4C9A14-94E6-5EEB-BF39-7DACCE9AC0D6'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '20EBDE7B-AA36-5D60-9DCA-151C48EDB9F8', 'title' => ''],
'Instances' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'AlarmStatus' => ['type' => 'string', 'description' => '', 'example' => 'NO', 'title' => ''],
'AppId' => ['type' => 'string', 'description' => '', 'example' => 'FC2U0JVHWS49S2OT', 'title' => ''],
'AppName' => ['type' => 'string', 'description' => '', 'example' => 'guokent', 'title' => ''],
'AssetType' => ['type' => 'string', 'description' => '', 'example' => '1', 'title' => ''],
'AssetTypeName' => ['type' => 'string', 'description' => '', 'example' => 'xxxxxx', 'title' => ''],
'AuthModifyTime' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1627974044000', 'title' => ''],
'AuthVersion' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '5', 'title' => ''],
'AuthVersionName' => ['type' => 'string', 'description' => '', 'example' => '免费版', 'title' => ''],
'Bind' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'BindFileProtectType' => ['type' => 'string', 'description' => '', 'example' => 'none', 'title' => ''],
'ClientStatus' => ['type' => 'string', 'description' => '', 'example' => 'online', 'title' => ''],
'ClientSubStatus' => ['type' => 'string', 'description' => '', 'example' => 'online', 'title' => ''],
'ClusterId' => ['type' => 'string', 'description' => '', 'example' => 'cb703cb0ba6bd40d4a6d8de5bff050fb9', 'title' => ''],
'ClusterName' => ['type' => 'string', 'description' => '', 'example' => 'auto-cn-heyuan', 'title' => ''],
'Cores' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '9', 'title' => ''],
'CpuInfo' => ['type' => 'string', 'description' => '', 'example' => 'Intel(R) Xeon(R) Platinum 8269CY CPU @ 2.50GHz', 'title' => ''],
'CreatedTime' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1607365213000', 'title' => ''],
'ExposedStatus' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '0', 'title' => ''],
'Flag' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '0,1,2', 'title' => ''],
'FlagName' => ['type' => 'string', 'description' => '', 'example' => 'ALIYUN', 'title' => ''],
'GroupId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '86d30f8b0e124aadb7ef3197f9dbd1f5', 'title' => ''],
'GroupTrace' => ['type' => 'string', 'description' => '', 'example' => 'default', 'title' => ''],
'HasContainer' => ['type' => 'string', 'description' => '', 'example' => 'YES', 'title' => ''],
'HcStatus' => ['type' => 'string', 'description' => '', 'example' => 'YES', 'title' => ''],
'HealthCheckCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'Importance' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '2', 'title' => ''],
'InstanceId' => ['type' => 'string', 'description' => '', 'example' => 'ls-cn-tl32rf**008', 'title' => ''],
'InstanceName' => ['type' => 'string', 'description' => '', 'example' => 'ra-supabase-22u1iv3hr**5v9', 'title' => ''],
'InternetIp' => ['type' => 'string', 'description' => '', 'example' => '47.1**.52.125', 'title' => ''],
'IntranetIp' => ['type' => 'string', 'description' => '', 'example' => '172.16.1**.245', 'title' => ''],
'Ip' => ['type' => 'string', 'description' => '', 'example' => '114.55.*4.*6', 'title' => ''],
'IpListString' => ['type' => 'string', 'description' => '', 'example' => '172.31.XX.XX,172.171.XX.XX', 'title' => ''],
'Kernel' => ['type' => 'string', 'description' => '', 'example' => '3.10.0-1127.19.1.el7.x86_64', 'title' => ''],
'LastLoginTimestamp' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1637592907000', 'title' => ''],
'MacListString' => ['type' => 'string', 'description' => '', 'example' => '00:13:3e:31:13:39,02:12:67:b8:**:**', 'title' => ''],
'Mem' => ['type' => 'string', 'description' => '', 'example' => '1024', 'title' => ''],
'Namespace' => ['type' => 'string', 'description' => '', 'example' => 'slsshpcorlsmetrics', 'title' => ''],
'Os' => ['type' => 'string', 'description' => '', 'example' => 'linux', 'title' => ''],
'OsName' => ['type' => 'string', 'description' => '', 'example' => 'AliOS7U2-x86-64', 'title' => ''],
'PodCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '8', 'title' => ''],
'PostPaidFlag' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'Region' => ['type' => 'string', 'description' => '', 'example' => 'cn-hangzhouxxxx', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'example' => 'cn-zhangjiakou', 'title' => ''],
'RegionName' => ['type' => 'string', 'description' => '', 'example' => 'cn-shanghai', 'title' => ''],
'RiskCount' => ['type' => 'string', 'description' => '', 'example' => '{'."\n"
.' "account": 0,'."\n"
.' "appNum": 0,'."\n"
.' "asapVulCount": 0,'."\n"
.' "baselineHigh": 0,'."\n"
.' "baselineLow": 0,'."\n"
.' "baselineMedium": 0,'."\n"
.' "baselineNum": 0,'."\n"
.' "cmsNum": 0,'."\n"
.' "containerAsap": 0,'."\n"
.' "containerLater": 0,'."\n"
.' "containerNntf": 0,'."\n"
.' "containerRemind": 0,'."\n"
.' "containerSerious": 0,'."\n"
.' "containerSuspicious": 0,'."\n"
.' "cveNum": 0,'."\n"
.' "emgNum": 0,'."\n"
.' "health": 0,'."\n"
.' "imageBaselineHigh": 0,'."\n"
.' "imageBaselineLow": 0,'."\n"
.' "imageBaselineMedium": 0,'."\n"
.' "imageBaselineNum": 0,'."\n"
.' "imageMaliciousFileRemind": 0,'."\n"
.' "imageMaliciousFileSerious": 0,'."\n"
.' "imageMaliciousFileSuspicious": 0,'."\n"
.' "imageVulAsap": 0,'."\n"
.' "imageVulLater": 0,'."\n"
.' "imageVulNntf": 0,'."\n"
.' "laterVulCount": 0,'."\n"
.' "newSuspicious": 0,'."\n"
.' "nntfVulCount": 0,'."\n"
.' "remindNum": 0,'."\n"
.' "scaNum": 0,'."\n"
.' "seriousNum": 0,'."\n"
.' "suspNum": 0,'."\n"
.' "suspicious": 0,'."\n"
.' "sysNum": 0,'."\n"
.' "trojan": 0,'."\n"
.' "uuid": "inet-37316411-37fe-4b72-b245-346a2721****",'."\n"
.' "vul": 0,'."\n"
.' "weakPWNum": 0'."\n"
.'}', 'title' => ''],
'RiskStatus' => ['type' => 'string', 'description' => '', 'example' => 'NO', 'title' => ''],
'SafeEventCount' => ['type' => 'string', 'description' => '', 'example' => '5', 'title' => ''],
'ServiceId' => ['type' => 'string', 'description' => '', 'example' => 'dsw-76jlywunsif09bp15p', 'title' => ''],
'Status' => ['type' => 'string', 'description' => '', 'example' => 'Running', 'title' => ''],
'Tag' => ['type' => 'string', 'description' => '', 'example' => 'pre_20250714_idpt_adjust', 'title' => ''],
'TagId' => ['type' => 'string', 'description' => '', 'example' => 'd8586ab8be4549e3815995858d277763', 'title' => ''],
'TagResources' => ['type' => 'string', 'description' => '', 'example' => 'app:test,type:lingjun', 'title' => ''],
'Uuid' => ['type' => 'string', 'description' => '', 'example' => '1f0459ee-ed49-6484-8958-4f10f61e6362', 'title' => ''],
'Vendor' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '0', 'title' => ''],
'VendorName' => ['type' => 'string', 'description' => '', 'example' => 'IDC', 'title' => ''],
'VendorUid' => ['type' => 'string', 'description' => '', 'example' => '123', 'title' => ''],
'VendorUserName' => ['type' => 'string', 'description' => '', 'example' => 'VendorUserName', 'title' => ''],
'VpcInstanceId' => ['type' => 'string', 'description' => '', 'example' => 'vpc-2zek7v0z4r6lbp02xckei', 'title' => ''],
'VulCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '2', 'title' => ''],
'VulStatus' => ['type' => 'string', 'description' => '', 'example' => 'YES', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'PageInfo' => [
'type' => 'object',
'properties' => [
'Count' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '7', 'title' => ''],
'CurrentPage' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'NextToken' => ['type' => 'string', 'description' => '', 'example' => 'm1NGAAAAAABzLzIwMjQwMg==', 'title' => ''],
'PageSize' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '10', 'title' => ''],
'TotalCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '0', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'True', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"1B4C9A14-94E6-5EEB-BF39-7DACCE9AC0D6\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"20EBDE7B-AA36-5D60-9DCA-151C48EDB9F8\\",\\n \\"Instances\\": [\\n {\\n \\"AlarmStatus\\": \\"NO\\",\\n \\"AppId\\": \\"FC2U0JVHWS49S2OT\\",\\n \\"AppName\\": \\"guokent\\",\\n \\"AssetType\\": \\"1\\",\\n \\"AssetTypeName\\": \\"xxxxxx\\",\\n \\"AuthModifyTime\\": 1627974044000,\\n \\"AuthVersion\\": 5,\\n \\"AuthVersionName\\": \\"免费版\\",\\n \\"Bind\\": true,\\n \\"BindFileProtectType\\": \\"none\\",\\n \\"ClientStatus\\": \\"online\\",\\n \\"ClientSubStatus\\": \\"online\\",\\n \\"ClusterId\\": \\"cb703cb0ba6bd40d4a6d8de5bff050fb9\\",\\n \\"ClusterName\\": \\"auto-cn-heyuan\\",\\n \\"Cores\\": 9,\\n \\"CpuInfo\\": \\"Intel(R) Xeon(R) Platinum 8269CY CPU @ 2.50GHz\\",\\n \\"CreatedTime\\": 1607365213000,\\n \\"ExposedStatus\\": 0,\\n \\"Flag\\": 0,\\n \\"FlagName\\": \\"ALIYUN\\",\\n \\"GroupId\\": 0,\\n \\"GroupTrace\\": \\"default\\",\\n \\"HasContainer\\": \\"YES\\",\\n \\"HcStatus\\": \\"YES\\",\\n \\"HealthCheckCount\\": 1,\\n \\"Importance\\": 2,\\n \\"InstanceId\\": \\"ls-cn-tl32rf**008\\",\\n \\"InstanceName\\": \\"ra-supabase-22u1iv3hr**5v9\\",\\n \\"InternetIp\\": \\"47.1**.52.125\\",\\n \\"IntranetIp\\": \\"172.16.1**.245\\",\\n \\"Ip\\": \\"114.55.*4.*6\\",\\n \\"IpListString\\": \\"172.31.XX.XX,172.171.XX.XX\\",\\n \\"Kernel\\": \\"3.10.0-1127.19.1.el7.x86_64\\",\\n \\"LastLoginTimestamp\\": 1637592907000,\\n \\"MacListString\\": \\"00:13:3e:31:13:39,02:12:67:b8:**:**\\",\\n \\"Mem\\": \\"1024\\",\\n \\"Namespace\\": \\"slsshpcorlsmetrics\\",\\n \\"Os\\": \\"linux\\",\\n \\"OsName\\": \\"AliOS7U2-x86-64\\",\\n \\"PodCount\\": 8,\\n \\"PostPaidFlag\\": 1,\\n \\"Region\\": \\"cn-hangzhouxxxx\\",\\n \\"RegionId\\": \\"cn-zhangjiakou\\",\\n \\"RegionName\\": \\"cn-shanghai\\",\\n \\"RiskCount\\": \\"{\\\\n \\\\\\"account\\\\\\": 0,\\\\n \\\\\\"appNum\\\\\\": 0,\\\\n \\\\\\"asapVulCount\\\\\\": 0,\\\\n \\\\\\"baselineHigh\\\\\\": 0,\\\\n \\\\\\"baselineLow\\\\\\": 0,\\\\n \\\\\\"baselineMedium\\\\\\": 0,\\\\n \\\\\\"baselineNum\\\\\\": 0,\\\\n \\\\\\"cmsNum\\\\\\": 0,\\\\n \\\\\\"containerAsap\\\\\\": 0,\\\\n \\\\\\"containerLater\\\\\\": 0,\\\\n \\\\\\"containerNntf\\\\\\": 0,\\\\n \\\\\\"containerRemind\\\\\\": 0,\\\\n \\\\\\"containerSerious\\\\\\": 0,\\\\n \\\\\\"containerSuspicious\\\\\\": 0,\\\\n \\\\\\"cveNum\\\\\\": 0,\\\\n \\\\\\"emgNum\\\\\\": 0,\\\\n \\\\\\"health\\\\\\": 0,\\\\n \\\\\\"imageBaselineHigh\\\\\\": 0,\\\\n \\\\\\"imageBaselineLow\\\\\\": 0,\\\\n \\\\\\"imageBaselineMedium\\\\\\": 0,\\\\n \\\\\\"imageBaselineNum\\\\\\": 0,\\\\n \\\\\\"imageMaliciousFileRemind\\\\\\": 0,\\\\n \\\\\\"imageMaliciousFileSerious\\\\\\": 0,\\\\n \\\\\\"imageMaliciousFileSuspicious\\\\\\": 0,\\\\n \\\\\\"imageVulAsap\\\\\\": 0,\\\\n \\\\\\"imageVulLater\\\\\\": 0,\\\\n \\\\\\"imageVulNntf\\\\\\": 0,\\\\n \\\\\\"laterVulCount\\\\\\": 0,\\\\n \\\\\\"newSuspicious\\\\\\": 0,\\\\n \\\\\\"nntfVulCount\\\\\\": 0,\\\\n \\\\\\"remindNum\\\\\\": 0,\\\\n \\\\\\"scaNum\\\\\\": 0,\\\\n \\\\\\"seriousNum\\\\\\": 0,\\\\n \\\\\\"suspNum\\\\\\": 0,\\\\n \\\\\\"suspicious\\\\\\": 0,\\\\n \\\\\\"sysNum\\\\\\": 0,\\\\n \\\\\\"trojan\\\\\\": 0,\\\\n \\\\\\"uuid\\\\\\": \\\\\\"inet-37316411-37fe-4b72-b245-346a2721****\\\\\\",\\\\n \\\\\\"vul\\\\\\": 0,\\\\n \\\\\\"weakPWNum\\\\\\": 0\\\\n}\\",\\n \\"RiskStatus\\": \\"NO\\",\\n \\"SafeEventCount\\": \\"5\\",\\n \\"ServiceId\\": \\"dsw-76jlywunsif09bp15p\\",\\n \\"Status\\": \\"Running\\",\\n \\"Tag\\": \\"pre_20250714_idpt_adjust\\",\\n \\"TagId\\": \\"d8586ab8be4549e3815995858d277763\\",\\n \\"TagResources\\": \\"app:test,type:lingjun\\",\\n \\"Uuid\\": \\"1f0459ee-ed49-6484-8958-4f10f61e6362\\",\\n \\"Vendor\\": 0,\\n \\"VendorName\\": \\"IDC\\",\\n \\"VendorUid\\": \\"123\\",\\n \\"VendorUserName\\": \\"VendorUserName\\",\\n \\"VpcInstanceId\\": \\"vpc-2zek7v0z4r6lbp02xckei\\",\\n \\"VulCount\\": 2,\\n \\"VulStatus\\": \\"YES\\"\\n }\\n ],\\n \\"PageInfo\\": {\\n \\"Count\\": 7,\\n \\"CurrentPage\\": 1,\\n \\"NextToken\\": \\"m1NGAAAAAABzLzIwMjQwMg==\\",\\n \\"PageSize\\": 10,\\n \\"TotalCount\\": 0\\n },\\n \\"Success\\": true\\n }\\n }\\n}","type":"json"}]',
],
'DescribeServiceLinkedRoleStatus' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'ServiceLinkedRole' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AliyunServiceRoleForSas', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'EF972A16-95FB-5EF2-9CED-208A74DEF040'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '7F14E3C8-A6AA-5D3C-B7E0-ABA2AC171EFC', 'title' => ''],
'RoleStatus' => [
'type' => 'object',
'properties' => [
'Status' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"EF972A16-95FB-5EF2-9CED-208A74DEF040\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"7F14E3C8-A6AA-5D3C-B7E0-ABA2AC171EFC\\",\\n \\"RoleStatus\\": {\\n \\"Status\\": true\\n }\\n }\\n }\\n}","type":"json"}]',
],
'DescribeSuspEvents' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-guangzhou', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'AlarmUniqueInfo' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '6838133766c37077d0515b0b557e6510', 'title' => ''],
'AssetsTypeList' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'K8S', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'ClusterId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'xxljob-02f023138826b', 'title' => ''],
'ContainerFieldName' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'instanceId', 'title' => ''],
'ContainerFieldValue' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'ca9b91db58356b41af2932e8048310ab7daa415701fa62d823cf4f0406d5ce02', 'title' => ''],
'CurrentPage' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'Dealed' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'Y', 'title' => ''],
'DetectSource' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '-', 'title' => ''],
'EventNames' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'WEBSHELL', 'title' => ''],
'From' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'sas', 'title' => ''],
'GroupId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '18768', 'title' => ''],
'Id' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '3165', 'title' => ''],
'Lang' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'zh', 'title' => ''],
'Levels' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'serious', 'title' => ''],
'MultiAccountActionType' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '0', 'title' => ''],
'Name' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'ecs-xxx', 'title' => ''],
'OperateErrorCodeList' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'accurate_defense_mark_miss_filehash.success', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'OperateTimeEnd' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '2022-07-06 13:50:38', 'title' => ''],
'OperateTimeStart' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '2022-07-06 13:50:38', 'title' => ''],
'PageSize' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'ParentEventTypes' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '恶意脚本', 'title' => ''],
'Remark' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '192.168.XX.XX', 'title' => ''],
'ResourceDirectoryAccountId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '5815612291408486', 'title' => ''],
'SortColumn' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'lastTime', 'title' => ''],
'SortType' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'asc', 'title' => ''],
'Source' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'default', 'title' => ''],
'SourceAliUids' => [
'type' => 'array',
'items' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '1192843048227488', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'SourceIp' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '2409:8a55:3827:cb50:5ad9:d5ff:fe87:f48c', 'title' => ''],
'StrictMode' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'N', 'title' => ''],
'SupportOperateCodeList' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'AI.false_positive', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'TacticId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'TA0003', 'title' => ''],
'TargetType' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'containerId', 'title' => ''],
'TimeEnd' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '2022-07-06 13:50:38', 'title' => ''],
'TimeStart' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '2022-07-06 13:50:38', 'title' => ''],
'UniqueInfo' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'f82680d9fdcb74a520fa385b7e9105b7', 'title' => ''],
'Uuids' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'inet-eae09bb8-32b1-413b-a8ff-23932e043209', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '67BD8435-6624-5484-A75D-170231B51615'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => 'AD2345D1-A498-58AF-97C0-88940AF87CB7', 'title' => ''],
'Count' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'CurrentPage' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'PageSize' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'SuspEvents' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Advanced' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'AlarmEventName' => ['type' => 'string', 'description' => '', 'example' => '反弹shell_拦截', 'title' => ''],
'AlarmEventNameDisplay' => ['type' => 'string', 'description' => '', 'example' => 'Login with unusual location', 'title' => ''],
'AlarmEventType' => ['type' => 'string', 'description' => '', 'example' => 'Unusual Logon', 'title' => ''],
'AlarmEventTypeDisplay' => ['type' => 'string', 'description' => '', 'example' => 'Unusual Logon', 'title' => ''],
'AlarmUniqueInfo' => ['type' => 'string', 'description' => '', 'example' => '8df914418f****', 'title' => ''],
'AppName' => ['type' => 'string', 'description' => '', 'example' => 'dfield-cloud-service-prod', 'title' => ''],
'AutoBreaking' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'CanBeDealOnLine' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'CanCancelFault' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'ContainHwMode' => ['type' => 'boolean', 'description' => '', 'example' => 'false', 'title' => ''],
'ContainerId' => ['type' => 'string', 'description' => '', 'example' => '95878ef8779fae3dd82126812edd910402fc550a72f9bce87e56a4435d018384', 'title' => ''],
'ContainerImageId' => ['type' => 'string', 'description' => '', 'example' => 'sha256:2e5a3b0ae5f452b3cb458789a9a7542ef40035a84318469a8528c5e444db1****', 'title' => ''],
'ContainerImageName' => ['type' => 'string', 'description' => '', 'example' => 'centos7_apache:v1.0.1', 'title' => ''],
'DataSource' => ['type' => 'string', 'description' => '', 'example' => 'URL', 'title' => ''],
'Desc' => ['type' => 'string', 'description' => '', 'example' => 'webshell', 'title' => ''],
'Details' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'NameDisplay' => ['type' => 'string', 'description' => '', 'example' => 'login with unusual location', 'title' => ''],
'Type' => ['type' => 'string', 'description' => '', 'example' => 'text', 'title' => ''],
'Value' => ['type' => 'string', 'description' => '', 'example' => '/etc/crontab', 'title' => ''],
'ValueDisplay' => ['type' => 'string', 'description' => '', 'example' => '/etc/crontab', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'DetectSource' => ['type' => 'string', 'description' => '', 'example' => '-', 'title' => ''],
'DisplaySandboxResult' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'EventNotes' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Note' => ['type' => 'string', 'description' => '', 'example' => 'test', 'title' => ''],
'NoteId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '2859481', 'title' => ''],
'NoteTime' => ['type' => 'string', 'description' => '', 'example' => '2018-09-26 01:51:01', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'EventStatus' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'EventSubType' => ['type' => 'string', 'description' => '', 'example' => 'login_common_location', 'title' => ''],
'HasTraceInfo' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Id' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '3178', 'title' => ''],
'ImageUuid' => ['type' => 'string', 'description' => '', 'example' => 'ccdab289-9765-47ef-af50-ba6be09aacd6', 'title' => ''],
'InstanceId' => ['type' => 'string', 'description' => '', 'example' => 'i-9dp6dwsxdl9z5u1e2f****', 'title' => ''],
'InstanceName' => ['type' => 'string', 'description' => '', 'example' => 'nginx', 'title' => ''],
'InternetIp' => ['type' => 'string', 'description' => '', 'example' => '8.137.3*.6', 'title' => ''],
'IntranetIp' => ['type' => 'string', 'description' => '', 'example' => '10.36.*6.149', 'title' => ''],
'K8sClusterId' => ['type' => 'string', 'description' => '', 'example' => 'ce3c41ed427794a7bb3d9da4554fc8039', 'title' => ''],
'K8sClusterName' => ['type' => 'string', 'description' => '', 'example' => 'testName', 'title' => ''],
'K8sNamespace' => ['type' => 'string', 'description' => '', 'example' => 'default', 'title' => ''],
'K8sNodeId' => ['type' => 'string', 'description' => '', 'example' => 'i-bp14a1ay8e0aa9t0****', 'title' => ''],
'K8sNodeName' => ['type' => 'string', 'description' => '', 'example' => 'N/A', 'title' => ''],
'K8sPodName' => ['type' => 'string', 'description' => '', 'example' => 'myapp-pod', 'title' => ''],
'LargeModel' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'LastTime' => ['type' => 'string', 'description' => '', 'example' => '2018-09-26 01:51:01', 'title' => ''],
'LastTimeStamp' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1631699497000', 'title' => ''],
'Level' => ['type' => 'string', 'description' => '', 'example' => 'remind', 'title' => ''],
'MaliciousRuleStatus' => ['type' => 'string', 'description' => '', 'example' => 'open', 'title' => ''],
'MarkList' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'example' => 'mark', 'title' => ''],
'description' => '',
'title' => '',
'example' => '',
],
'MarkMisRules' => ['type' => 'string', 'description' => '', 'example' => '<strong>1.</strong>  path  contain  232  ', 'title' => ''],
'Name' => ['type' => 'string', 'description' => '', 'example' => 'Unusual Logon-Login with unusual location', 'title' => ''],
'OccurrenceTime' => ['type' => 'string', 'description' => '', 'example' => '2018-09-26 01:51:01', 'title' => ''],
'OccurrenceTimeStamp' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1631699497000', 'title' => ''],
'OperateErrorCode' => ['type' => 'string', 'description' => '', 'example' => 'kill_and_quara.Success', 'title' => ''],
'OperateMsg' => ['type' => 'string', 'description' => '', 'example' => 'success', 'title' => ''],
'OperateTime' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1631699497000', 'title' => ''],
'SaleVersion' => ['type' => 'string', 'description' => '', 'example' => '1', 'title' => ''],
'SecurityEventIds' => ['type' => 'string', 'description' => '', 'example' => '628978308', 'title' => ''],
'SourceAliUid' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '124075**67406', 'title' => ''],
'Stages' => ['type' => 'string', 'description' => '', 'example' => '"["authority_maintenance"]"', 'title' => ''],
'SupportOperateCode' => ['type' => 'string', 'description' => '', 'example' => 'AI.false_positive', 'title' => ''],
'TacticItems' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'TacticDisplayName' => ['type' => 'string', 'description' => '', 'example' => 'Malicious scripts-Malicious script code execution', 'title' => ''],
'TacticId' => ['type' => 'string', 'description' => '', 'example' => 'TA0042', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'UniqueInfo' => ['type' => 'string', 'description' => '', 'example' => '1dfbdf56c5343b63c4854d08ec20e067', 'title' => ''],
'Uuid' => ['type' => 'string', 'description' => '', 'example' => '9A75F21D3993C0A2B094A4AB132890B2', 'title' => ''],
'ClusterId' => ['type' => 'string', 'description' => '', 'example' => 'c8c87dae64c9947269091f36cfa9adc87', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'TotalCount' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '72', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"67BD8435-6624-5484-A75D-170231B51615\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"AD2345D1-A498-58AF-97C0-88940AF87CB7\\",\\n \\"Count\\": 1,\\n \\"CurrentPage\\": 1,\\n \\"PageSize\\": 1,\\n \\"SuspEvents\\": [\\n {\\n \\"Advanced\\": true,\\n \\"AlarmEventName\\": \\"反弹shell_拦截\\",\\n \\"AlarmEventNameDisplay\\": \\"Login with unusual location\\",\\n \\"AlarmEventType\\": \\"Unusual Logon\\",\\n \\"AlarmEventTypeDisplay\\": \\"Unusual Logon\\",\\n \\"AlarmUniqueInfo\\": \\"8df914418f****\\",\\n \\"AppName\\": \\"dfield-cloud-service-prod\\",\\n \\"AutoBreaking\\": true,\\n \\"CanBeDealOnLine\\": true,\\n \\"CanCancelFault\\": true,\\n \\"ContainHwMode\\": false,\\n \\"ContainerId\\": \\"95878ef8779fae3dd82126812edd910402fc550a72f9bce87e56a4435d018384\\",\\n \\"ContainerImageId\\": \\"sha256:2e5a3b0ae5f452b3cb458789a9a7542ef40035a84318469a8528c5e444db1****\\",\\n \\"ContainerImageName\\": \\"centos7_apache:v1.0.1\\",\\n \\"DataSource\\": \\"URL\\",\\n \\"Desc\\": \\"webshell\\",\\n \\"Details\\": [\\n {\\n \\"NameDisplay\\": \\"login with unusual location\\",\\n \\"Type\\": \\"text\\",\\n \\"Value\\": \\"/etc/crontab\\",\\n \\"ValueDisplay\\": \\"/etc/crontab\\"\\n }\\n ],\\n \\"DetectSource\\": \\"-\\",\\n \\"DisplaySandboxResult\\": true,\\n \\"EventNotes\\": [\\n {\\n \\"Note\\": \\"test\\",\\n \\"NoteId\\": 2859481,\\n \\"NoteTime\\": \\"2018-09-26 01:51:01\\"\\n }\\n ],\\n \\"EventStatus\\": 1,\\n \\"EventSubType\\": \\"login_common_location\\",\\n \\"HasTraceInfo\\": true,\\n \\"Id\\": 3178,\\n \\"ImageUuid\\": \\"ccdab289-9765-47ef-af50-ba6be09aacd6\\",\\n \\"InstanceId\\": \\"i-9dp6dwsxdl9z5u1e2f****\\",\\n \\"InstanceName\\": \\"nginx\\",\\n \\"InternetIp\\": \\"8.137.3*.6\\",\\n \\"IntranetIp\\": \\"10.36.*6.149\\",\\n \\"K8sClusterId\\": \\"ce3c41ed427794a7bb3d9da4554fc8039\\",\\n \\"K8sClusterName\\": \\"testName\\",\\n \\"K8sNamespace\\": \\"default\\",\\n \\"K8sNodeId\\": \\"i-bp14a1ay8e0aa9t0****\\",\\n \\"K8sNodeName\\": \\"N/A\\",\\n \\"K8sPodName\\": \\"myapp-pod\\",\\n \\"LargeModel\\": true,\\n \\"LastTime\\": \\"2018-09-26 01:51:01\\",\\n \\"LastTimeStamp\\": 1631699497000,\\n \\"Level\\": \\"remind\\",\\n \\"MaliciousRuleStatus\\": \\"open\\",\\n \\"MarkList\\": [\\n \\"mark\\"\\n ],\\n \\"MarkMisRules\\": \\"<strong>1.</strong>  path  contain  232  \\",\\n \\"Name\\": \\"Unusual Logon-Login with unusual location\\",\\n \\"OccurrenceTime\\": \\"2018-09-26 01:51:01\\",\\n \\"OccurrenceTimeStamp\\": 1631699497000,\\n \\"OperateErrorCode\\": \\"kill_and_quara.Success\\",\\n \\"OperateMsg\\": \\"success\\",\\n \\"OperateTime\\": 1631699497000,\\n \\"SaleVersion\\": \\"1\\",\\n \\"SecurityEventIds\\": \\"628978308\\",\\n \\"SourceAliUid\\": 0,\\n \\"Stages\\": \\"\\\\\\"[\\\\\\"authority_maintenance\\\\\\"]\\\\\\"\\",\\n \\"SupportOperateCode\\": \\"AI.false_positive\\",\\n \\"TacticItems\\": [\\n {\\n \\"TacticDisplayName\\": \\"Malicious scripts-Malicious script code execution\\",\\n \\"TacticId\\": \\"TA0042\\"\\n }\\n ],\\n \\"UniqueInfo\\": \\"1dfbdf56c5343b63c4854d08ec20e067\\",\\n \\"Uuid\\": \\"9A75F21D3993C0A2B094A4AB132890B2\\",\\n \\"ClusterId\\": \\"c8c87dae64c9947269091f36cfa9adc87\\"\\n }\\n ],\\n \\"TotalCount\\": 72\\n }\\n }\\n}","type":"json"}]',
],
'GetAlertRecordAnalysisResult' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
[
'APP' => [],
],
[
'PrivateKey' => [],
],
[
'BearerToken' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementA481E8'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Uuid',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'ebde6d4e3e4aba728962eec43a69196e9J7tt7H47Pc', 'title' => ''],
],
[
'name' => 'UniqueInfo',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'fc312aa0c32ba8a6147db6221fb1c1ee', 'title' => ''],
],
[
'name' => 'AlarmUniqueInfo',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '9b57f0fcf98181df8d8487d1cc91cb8d', 'title' => ''],
],
[
'name' => 'AliyunLang',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'UniqueTagList',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Uuid' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '3309e55fcb1ed8d4bc6af098e62e0353RNabnQSO1bx', 'title' => ''],
'UniqueInfo' => ['title' => '', 'type' => 'string', 'description' => '', 'required' => false, 'example' => 'fc312aa0c32ba8a6147db6221fb1c1ee'],
'AlarmUniqueInfo' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '10a19b654e73ff079ede61ce3f4465e0'],
'ChooseLike' => ['type' => 'boolean', 'title' => '', 'description' => '', 'required' => false, 'example' => 'false'],
'Ip' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'pc-bp19up785757dz800'],
'MachineInstanceId' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'i-rj9c7d4bli38***tuym'],
'Type' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'BusinessLicense'],
'QueryTime' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '2025-06-27 00:00:00'],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '99D93ED4-D462-5FC5-8518-9BC1C49C7B6C'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'UniqueTagList' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Uuid' => ['type' => 'string', 'description' => '', 'example' => 'bb3051ca-c0dd-4da2-91be-ea5c80926132', 'title' => ''],
'UniqueInfo' => ['type' => 'string', 'description' => '', 'example' => '390317ce81d28bbbd83c05a90b39cd6c', 'title' => ''],
'AlarmUniqueInfo' => ['type' => 'string', 'description' => '', 'example' => '179deb12f25baac9b1e2909c419bcb1f', 'title' => ''],
'AnalysisResult' => ['type' => 'string', 'description' => '', 'example' => 'exception_alert', 'title' => ''],
'ChooseLike' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'AnalysisCode' => ['type' => 'string', 'description' => '', 'example' => 'test_code', 'title' => ''],
'MachineInstanceId' => ['type' => 'string', 'description' => '', 'example' => 'i-adadasd-a**', 'title' => ''],
'Ip' => ['type' => 'string', 'description' => '', 'example' => '110.22.*8.111', 'title' => ''],
'Type' => ['type' => 'string', 'description' => '', 'example' => 'auto_breaking', 'title' => ''],
'AliUid' => ['type' => 'string', 'description' => '', 'example' => '1248751055158884', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
'AnalysisCode' => ['type' => 'string', 'description' => '', 'example' => '-', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"99D93ED4-D462-5FC5-8518-9BC1C49C7B6C\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"UniqueTagList\\": [\\n {\\n \\"Uuid\\": \\"bb3051ca-c0dd-4da2-91be-ea5c80926132\\",\\n \\"UniqueInfo\\": \\"390317ce81d28bbbd83c05a90b39cd6c\\",\\n \\"AlarmUniqueInfo\\": \\"179deb12f25baac9b1e2909c419bcb1f\\",\\n \\"AnalysisResult\\": \\"exception_alert\\",\\n \\"ChooseLike\\": true,\\n \\"AnalysisCode\\": \\"test_code\\",\\n \\"MachineInstanceId\\": \\"i-adadasd-a**\\",\\n \\"Ip\\": \\"110.22.*8.111\\",\\n \\"Type\\": \\"auto_breaking\\",\\n \\"AliUid\\": \\"1248751055158884\\"\\n }\\n ],\\n \\"AnalysisCode\\": \\"-\\"\\n }\\n}","type":"json"}]',
],
'GetAliYunSafeCenterResult' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
[
'APP' => [],
],
[
'PrivateKey' => [],
],
[
'BearerToken' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'InterfaceCode',
'in' => 'query',
'schema' => ['type' => 'string', 'required' => true, 'description' => '', 'example' => 'ListInstanceStatus', 'title' => ''],
],
[
'name' => 'DescribeInstancesFullStatusRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou', 'title' => ''],
'InstanceId' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'i-bp67acfmxazb4p****', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'ListInstancesRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-wulanchabu', 'title' => ''],
'InstanceIds' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '["2ad1ae67295445f598017499dc****", "2ad1ae67295445f598017123dc****"]', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'GetAssetDetailByUuidRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'Uuid' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '9A75F21D3993C0A2B094A4AB132890B2', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-shanghai', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'DescribeSimilarSecurityEventsRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'TaskId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '1689135', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-zhangjiakou', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'CreateSimilarSecurityEventsQueryTaskRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'SecurityEventId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '629755508', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-zhangjiakou', 'title' => ''],
'SimilarEventScenarioCode' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'default', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'DescribeSecurityEventOperationStatusRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'TaskId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '0BC3B4E600002A9F000048BCDCE7E710', 'title' => ''],
'SecurityEventIds' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '581719531', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-zhangjiakou', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'HandleSimilarSecurityEventsRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'SourceIp' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '220.2*3.155.93', 'title' => ''],
'TaskId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'required' => false, 'example' => '12221', 'title' => ''],
'OperationCode' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'offline_handled', 'title' => ''],
'OperationParams' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '{\\"expireTime\\":1767687685917}', 'title' => ''],
'InstanceId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cfw_elasticity_public_cn-g4t3nkh3i00b', 'title' => ''],
'Ip' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '203.10*.44.71', 'title' => ''],
'AlertType' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'default', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-beijing', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'HandleSecurityEventsRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'OperationCode' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'block_ip'],
'OperationParams' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '{\\"expireTime\\":1719588943551,\\"subOperation\\":\\"killAndQuaraFileByMd5andPath\\"}'],
'MarkMissParam' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '[{"uuid":"part","field":"gmtModified","operate":"contains","fieldValue":"asd"},{"uuid":"part","field":"loginUser","operate":"contains","fieldValue":"vff"}]'],
'MarkBatch' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'true'],
'SecurityEventIds' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '909361', 'title' => ''],
'title' => '',
'description' => '',
'required' => false,
'example' => '',
],
'Remark' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '11', 'title' => ''],
'InstanceId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'api-shared-vpc-002', 'title' => ''],
'Ip' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '123.56.127.180', 'title' => ''],
'AlertType' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'default', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou', 'title' => ''],
'FilePath' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'flyfish-lfp-wy.release', 'title' => ''],
'FileMd5' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'fbbb90731fbb6df57c933173182d01a5', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-guangzhou', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '3C107939-59BD-5EB9-B250-39559C830A85'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'EcsInstanceStatus' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'SwasInstanceStatus' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'AgentStatus' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'InstanceIds' => [
'type' => 'array',
'items' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => 'ecd-b14xfwq0ibbdkarvi', 'title' => ''],
'description' => '',
'title' => '',
'example' => '',
],
'TaskId' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '12313123', 'title' => ''],
'TaskStatus' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '8169D779-3391-541F-936B-11F4EC09AD0D', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"3C107939-59BD-5EB9-B250-39559C830A85\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"EcsInstanceStatus\\": true,\\n \\"SwasInstanceStatus\\": true,\\n \\"AgentStatus\\": true,\\n \\"InstanceIds\\": [\\n 0\\n ],\\n \\"TaskId\\": 12313123,\\n \\"TaskStatus\\": true,\\n \\"RequestId\\": \\"8169D779-3391-541F-936B-11F4EC09AD0D\\"\\n }\\n}","type":"json"}]',
],
'GetCanTrySas' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-guangzhou', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'FromEcs' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
'Lang' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'zh', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '6B48613E-86DE-5411-BDBE-429C80B45F3F'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '0EBD97B8-65AD-52C8-94D5-A0F81E7D70D0', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'CanTry' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'CanTryVersions' => [
'type' => 'array',
'items' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '3', 'title' => ''],
'description' => '',
'title' => '',
'example' => '',
],
'TryType' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"6B48613E-86DE-5411-BDBE-429C80B45F3F\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"0EBD97B8-65AD-52C8-94D5-A0F81E7D70D0\\",\\n \\"Data\\": {\\n \\"CanTry\\": 1,\\n \\"CanTryVersions\\": [\\n 3\\n ],\\n \\"TryType\\": 1\\n }\\n }\\n }\\n}","type":"json"}]',
],
'GetDisposalToolStatus' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'AuthType',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'DisposalTool', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '6D462855-7835-5F91-835E-A62E44EC01CC'],
'Code' => ['type' => 'string', 'description' => '', 'example' => 'Success', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Status' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"6D462855-7835-5F91-835E-A62E44EC01CC\\",\\n \\"Code\\": \\"Success\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Status\\": true\\n }\\n}","type":"json"}]',
],
'GetValidDeductInstances' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-fuzhou', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'InstanceId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'sas_cspm_dp_cn-***80001', 'title' => ''],
'Modules' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'sas_vul_dp_cn', 'title' => ''],
'Status' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => 'Available', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '2FBDD713-00A5-5C98-B661-3FD31A349B6E'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'Successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => 'A6FB9AC3-4431-538F-BA8A-2A13AEA208A4', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'CanTry' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'DeductPackageList' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'CurrentPeriodUsed' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '10', 'title' => ''],
'EndTime' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1737734400000', 'title' => ''],
'InitCapacity' => ['type' => 'number', 'format' => 'double', 'description' => '', 'example' => '1000', 'title' => ''],
'InstanceId' => ['type' => 'string', 'description' => '', 'example' => 'apigateway-hz-96f6659a1490', 'title' => ''],
'Module' => ['type' => 'string', 'description' => '', 'example' => 'POST_HOST', 'title' => ''],
'PeriodCapacity' => ['type' => 'number', 'format' => 'double', 'description' => '', 'example' => '1', 'title' => ''],
'StartTime' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1737734400000', 'title' => ''],
'Status' => ['type' => 'string', 'description' => '', 'example' => 'CREATE_FAILED', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"2FBDD713-00A5-5C98-B661-3FD31A349B6E\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"Successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"RequestId\\": \\"A6FB9AC3-4431-538F-BA8A-2A13AEA208A4\\",\\n \\"Data\\": {\\n \\"CanTry\\": true,\\n \\"DeductPackageList\\": [\\n {\\n \\"CurrentPeriodUsed\\": 10,\\n \\"EndTime\\": 1737734400000,\\n \\"InitCapacity\\": 1000,\\n \\"InstanceId\\": \\"apigateway-hz-96f6659a1490\\",\\n \\"Module\\": \\"POST_HOST\\",\\n \\"PeriodCapacity\\": 1,\\n \\"StartTime\\": 1737734400000,\\n \\"Status\\": \\"CREATE_FAILED\\"\\n }\\n ]\\n }\\n }\\n }\\n}","type":"json"}]',
],
'InitSasModuleRule' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-guangzhou', 'title' => ''],
],
[
'name' => 'IsTrial',
'in' => 'query',
'schema' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'false', 'title' => ''],
],
[
'name' => 'Instances',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'InstanceId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'i-gw85zjrhsg2sgex7ovfx', 'title' => ''],
'Uuid' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '168d374e-f449-4d0b-9556-14f233fa7171', 'title' => ''],
'Cores' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '4', 'title' => ''],
'RegionId' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'AutoBind',
'in' => 'query',
'schema' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '0', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '2E130B0F-9E69-52FA-84FC-187FE1BA9489'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'Successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '14492571-0707-5130-85B4-4DDABB6BDF76', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"2E130B0F-9E69-52FA-84FC-187FE1BA9489\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"Successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"RequestId\\": \\"14492571-0707-5130-85B4-4DDABB6BDF76\\"\\n }\\n}","type":"json"}]',
],
'ListVirusScanMachineEvent' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'cn-hangzhou'],
],
[
'name' => 'CurrentPage',
'in' => 'query',
'schema' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'required' => false, 'example' => '1'],
],
[
'name' => 'PageSize',
'in' => 'query',
'schema' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'required' => false, 'example' => '30'],
],
[
'name' => 'OperateTaskId',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => '28486737'],
],
[
'name' => 'Lang',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'en'],
],
[
'name' => 'Uuid',
'in' => 'query',
'schema' => ['type' => 'string', 'title' => '', 'description' => '', 'required' => false, 'example' => 'hdm_5349d5323c649e91a41784e9e1733e1e'],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'F0AD8096-E7A2-573D-ACF0-7CE9050CDE38'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'True', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '1E222AB5-5C2B-50AD-8A96-E704AF80F2A0', 'title' => ''],
'VirusScanMachineEventList' => [
'type' => 'object',
'properties' => [
'Data' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'EventId' => ['type' => 'integer', 'format' => 'int64', 'title' => '', 'description' => '', 'example' => '123-2CcoavZnCXrJKqk2KQKxp9WGwup'],
'EventName' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '恶意脚本代码执行'],
'InstanceName' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'i-wz92q7m5hsbgfhdss***'],
'InternetIp' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '47.57.*1.65'],
'IntranetIp' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '47.57.*1.65'],
'LastTimeStamp' => ['type' => 'integer', 'format' => 'int64', 'title' => '', 'description' => '', 'example' => '1682046733628'],
'Level' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'remind'],
'Details' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'InfoType' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'download_url'],
'NameDisplay' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'Trojan Path'],
'Type' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'text'],
'ValueDisplay' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'getopt'],
],
'description' => '',
'title' => '',
'example' => '',
],
'title' => '',
'description' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
'title' => '',
'description' => '',
'example' => '',
],
'PageInfo' => [
'type' => 'object',
'properties' => [
'CurrentPage' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '1'],
'PageSize' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '10'],
'TotalCount' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '0'],
],
'title' => '',
'description' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
'VirusScanLatestTaskStatistic' => [
'type' => 'object',
'properties' => [
'CompleteMachine' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '2'],
'MachineName' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'testMahine1'],
'Progress' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '92'],
'RiskLevel' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'medium'],
'SafeMachine' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'ScanMachine' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'ScanPath' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'example' => '/www/wwwroot/www.wlws.cc/docs/tables/brand_info.php', 'title' => ''],
'title' => '',
'description' => '',
'example' => '',
],
'ScanTime' => ['type' => 'integer', 'format' => 'int64', 'title' => '', 'description' => '', 'example' => '1681145862000'],
'ScanType' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 'system'],
'Status' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '0'],
'SuspiciousCount' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '0'],
'SuspiciousMachine' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '1'],
'TaskId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => 't-0mqu9dhpi365dp5iyf'],
'UnCompleteMachine' => ['type' => 'integer', 'format' => 'int32', 'title' => '', 'description' => '', 'example' => '1'],
],
'title' => '',
'description' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"F0AD8096-E7A2-573D-ACF0-7CE9050CDE38\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"RequestId\\": \\"1E222AB5-5C2B-50AD-8A96-E704AF80F2A0\\",\\n \\"VirusScanMachineEventList\\": {\\n \\"Data\\": [\\n {\\n \\"EventId\\": 0,\\n \\"EventName\\": \\"恶意脚本代码执行\\",\\n \\"InstanceName\\": \\"i-wz92q7m5hsbgfhdss***\\",\\n \\"InternetIp\\": \\"47.57.*1.65\\",\\n \\"IntranetIp\\": \\"47.57.*1.65\\",\\n \\"LastTimeStamp\\": 1682046733628,\\n \\"Level\\": \\"remind\\",\\n \\"Details\\": [\\n {\\n \\"InfoType\\": \\"download_url\\",\\n \\"NameDisplay\\": \\"Trojan Path\\",\\n \\"Type\\": \\"text\\",\\n \\"ValueDisplay\\": \\"getopt\\"\\n }\\n ]\\n }\\n ],\\n \\"PageInfo\\": {\\n \\"CurrentPage\\": 1,\\n \\"PageSize\\": 10,\\n \\"TotalCount\\": 0\\n }\\n },\\n \\"VirusScanLatestTaskStatistic\\": {\\n \\"CompleteMachine\\": 2,\\n \\"MachineName\\": \\"testMahine1\\",\\n \\"Progress\\": \\"92\\",\\n \\"RiskLevel\\": \\"medium\\",\\n \\"SafeMachine\\": 1,\\n \\"ScanMachine\\": 1,\\n \\"ScanPath\\": [\\n \\"/www/wwwroot/www.wlws.cc/docs/tables/brand_info.php\\"\\n ],\\n \\"ScanTime\\": 1681145862000,\\n \\"ScanType\\": \\"system\\",\\n \\"Status\\": 0,\\n \\"SuspiciousCount\\": 0,\\n \\"SuspiciousMachine\\": 1,\\n \\"TaskId\\": \\"t-0mqu9dhpi365dp5iyf\\",\\n \\"UnCompleteMachine\\": 1\\n }\\n }\\n}","type":"json"}]',
],
'OpenTrialPackage' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-guangzhou', 'title' => ''],
],
[
'name' => 'AutoCloseSwitch',
'in' => 'query',
'schema' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '0', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '855FCC89-0B13-5FC0-AAD2-120878081C1C'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '5F4B631D-0358-5B7B-8B84-FB924138ED91', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"855FCC89-0B13-5FC0-AAD2-120878081C1C\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"RequestId\\": \\"5F4B631D-0358-5B7B-8B84-FB924138ED91\\"\\n }\\n}","type":"json"}]',
],
'QuerySecurityCheckReport' => [
'summary' => '',
'methods' => ['post', 'get'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => ['operationType' => 'get', 'riskType' => 'none', 'chargeType' => 'free', 'tenantRelevance' => 'tenant'],
'parameters' => [],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '2FBDD713-00A5-5C98-B661-3FD31A349B6E'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'SecurityStatus' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'RiskEventNumber' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '3', 'title' => ''],
'SasCheckNumber' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'ConfigCheckNumber' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '3', 'title' => ''],
'ContactCheckNumber' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '3', 'title' => ''],
'CloudSecurityGuide' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => '1', 'title' => ''],
'SuggestionText' => ['type' => 'string', 'description' => '', 'example' => 'exist risk event。', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'InvalidParameter', 'errorMessage' => 'Specified parameter is not valid.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"2FBDD713-00A5-5C98-B661-3FD31A349B6E\\",\\n \\"Code\\": \\"200\\",\\n \\"Success\\": true,\\n \\"Message\\": \\"successful\\",\\n \\"Data\\": {\\n \\"SecurityStatus\\": 1,\\n \\"RiskEventNumber\\": 3,\\n \\"SasCheckNumber\\": 1,\\n \\"ConfigCheckNumber\\": 3,\\n \\"ContactCheckNumber\\": 3,\\n \\"CloudSecurityGuide\\": 1,\\n \\"SuggestionText\\": \\"exist risk event。\\"\\n }\\n}","type":"json"}]',
],
'StartDisposalToolService' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'AuthType',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'DisposalTool', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '1E0869D6-A5A0-52A6-A924-14070806976C'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'successful', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"1E0869D6-A5A0-52A6-A924-14070806976C\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"successful\\",\\n \\"Success\\": true\\n}","type":"json"}]',
],
'UpdatePostPaidBindRel' => [
'summary' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREriskmanagementEV1QRW'],
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'RegionId',
'in' => 'query',
'schema' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => 'cn-huhehaote', 'title' => ''],
],
[
'name' => 'SdkRequest',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'AutoBind' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
'AutoBindVersion' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'required' => false, 'example' => '3', 'title' => ''],
'BindAction' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'BindAll' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'true', 'title' => ''],
'UuidList' => [
'type' => 'array',
'items' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '6ec42694-fe78-43b1-95e8-8e98a917d99f', 'title' => ''],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'Version' => ['type' => 'string', 'description' => '', 'required' => false, 'example' => '1', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
'UpdateIfNecessary' => ['type' => 'boolean', 'description' => '', 'required' => false, 'example' => 'false', 'title' => ''],
],
'description' => '',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['type' => 'string', 'title' => '', 'description' => '', 'example' => '6E20BFD0-AA91-594F-B5A7-32CED4777DA0'],
'Code' => ['type' => 'string', 'description' => '', 'example' => '200', 'title' => ''],
'Message' => ['type' => 'string', 'description' => '', 'example' => 'operation success.', 'title' => ''],
'Success' => ['type' => 'boolean', 'description' => '', 'example' => 'true', 'title' => ''],
'Data' => [
'type' => 'object',
'properties' => [
'Body' => [
'type' => 'object',
'properties' => [
'BindCount' => ['type' => 'integer', 'format' => 'int64', 'description' => '', 'example' => '1', 'title' => ''],
'RequestId' => ['type' => 'string', 'description' => '', 'example' => '62A7DCE2-7D9C-511B-919E-0F46A9D19AE6', 'title' => ''],
'ResultCode' => ['type' => 'integer', 'format' => 'int32', 'description' => '', 'example' => 'OK', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
'title' => '',
'description' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => '',
'changeSet' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"6E20BFD0-AA91-594F-B5A7-32CED4777DA0\\",\\n \\"Code\\": \\"200\\",\\n \\"Message\\": \\"operation success.\\",\\n \\"Success\\": true,\\n \\"Data\\": {\\n \\"Body\\": {\\n \\"BindCount\\": 1,\\n \\"RequestId\\": \\"62A7DCE2-7D9C-511B-919E-0F46A9D19AE6\\",\\n \\"ResultCode\\": 0\\n }\\n }\\n}","type":"json"}]',
],
],
'endpoints' => [],
'errorCodes' => [],
'changeSet' => [],
];
|