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
|
<?php return [
'version' => '1.0',
'info' => ['style' => 'RPC', 'product' => 'sophonsoar', 'version' => '2025-09-03'],
'directories' => [
[
'children' => ['CreateComponentAsset', 'DeleteComponentAsset', 'UpdateComponentAsset', 'ListComponentAssets', 'GetPlaybook', 'ListPlaybooks', 'CreatePlaybook', 'DeletePlaybook', 'UpdatePlaybook', 'ExecuteComponent'],
'type' => 'directory',
'title' => 'Response orchestration',
],
[
'children' => ['AbortPlaybookExecution', 'ListComponents'],
'title' => 'Others',
'type' => 'directory',
],
],
'components' => [
'schemas' => [
'FieldInputConfig' => [
'description' => 'Configuration of input parameters.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'Field name.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldType' => [
'description' => 'The field type. The value is as follows:'."\n"
."\n"
.'- **String**: String.'."\n"
.'- **Long**: Long integer.'."\n"
.'- **Integer**: Integer.'."\n"
.'- **Double**: Floating-point type.'."\n"
.'- **Boolean**: Boolean.'."\n"
.'- **ip**: The IP entity.'."\n"
.'- **file**: file entity.'."\n"
.'- **process**: process entity.'."\n"
.'- **incident**: event entity.'."\n"
.'- **alert**: alert entity.'."\n"
.'- **host**: host entity.'."\n"
.'- **domain**: The domain name entity.'."\n"
.'- **container**: container entity.',
'type' => 'string',
'enumValueTitles' => [],
'title' => '',
'example' => '',
],
'DefaultValue' => ['description' => 'Field default value.', 'type' => 'string', 'title' => '', 'example' => ''],
'Required' => ['description' => 'Is the field mandatory? Possible values are:'."\n"
."\n"
.'- **true**: Required.'."\n"
.'- **false**: Optional.', 'type' => 'boolean', 'title' => '', 'example' => ''],
'Arrayed' => ['description' => 'Is the field arrayed? Possible values are:'."\n"
."\n"
.'- true: Arrayed.'."\n"
.'- false: Not Arrayed.', 'type' => 'boolean', 'title' => '', 'example' => ''],
'FieldPath' => ['description' => 'Field path.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldCheckRegex' => ['description' => 'Field check regex.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldExample' => ['description' => 'Field example.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldClass' => ['description' => 'Field types, with the following values:'."\n"
."\n"
.'- **normal**: Normal type.'."\n"
.'- **custom**: Complex type; in this mode, FieldConfigs can be configured.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldDescription' => ['description' => 'Field description.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldConfigs' => [
'description' => 'Supports configuring nested input parameters in complex-type scenarios.',
'type' => 'array',
'items' => ['description' => 'Configuration of input parameters.', '$ref' => '#/components/schemas/FieldInputConfig', 'title' => '', 'example' => ''],
'title' => '',
'example' => '',
],
],
'title' => '',
'example' => '',
],
'FieldOutputConfig' => [
'description' => 'Configuration of output parameters.',
'type' => 'object',
'properties' => [
'FieldName' => [
'description' => 'Field name.',
'type' => 'string',
'required' => false,
'enumValueTitles' => [],
'title' => '',
'example' => '',
],
'FieldType' => [
'description' => 'Field type, with the following values:'."\n"
."\n"
.'- **String**: String.'."\n"
.'- **Long**: Long integer.'."\n"
.'- **Integer**: Integer.'."\n"
.'- **Double**: Double.'."\n"
.'- **Boolean**: Boolean.',
'type' => 'string',
'enumValueTitles' => [],
'title' => '',
'example' => '',
],
'FieldDescription' => ['description' => 'Field description information.', 'type' => 'string', 'title' => '', 'example' => ''],
'DefaultValue' => ['description' => 'Field default value.', 'type' => 'string', 'title' => '', 'example' => ''],
'FieldExample' => ['description' => 'Field example.', 'type' => 'string', 'title' => '', 'example' => ''],
],
'title' => '',
'example' => '',
],
],
],
'apis' => [
'AbortPlaybookExecution' => [
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for receiving messages. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The User ID of a member whose perspective an administrator switches to.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'RoleType',
'in' => 'formData',
'schema' => ['description' => 'The view type. Valid values:'."\n"
."\n"
.'- **0**: View of the current Alibaba Cloud account.'."\n"
.'- **1**: View of all accounts under the enterprise.', 'type' => 'string', 'required' => false, 'example' => '0', 'title' => ''],
],
[
'name' => 'PlaybookExecutionUuid',
'in' => 'formData',
'schema' => ['description' => 'The playbook execution ID.', 'type' => 'string', 'required' => true, 'example' => 'e776dab31-499b-4307-9248-xxxxxx', 'title' => ''],
],
[
'name' => 'PlaybookUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'required' => true, 'example' => 'e99dab31-499b-4307-9248-xxxxxx', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'Response information.',
'title' => '',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The ID of this request, which is a Unique Identifier (UUID) generated by Alibaba Cloud for the request. You can use it to troubleshoot and locate issues.', 'title' => '', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'."\n"],
'Success' => ['description' => 'Indicates whether the job was stopped successfully. Valid values:'."\n"
."\n"
.'- *true*: The job was stopped successfully.'."\n"
.'- *false*: The job was not stopped successfully.', 'type' => 'string', 'example' => 'true', 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Stop Playbook Execution',
'summary' => 'Stop the execution of a playbook and its sub-playbooks.',
'description' => 'Before using this API, make sure you fully understand the billing method of Response Orchestration and its [pricing](https://www.aliyun.com/price/product#/sas/detail/sas).',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\\\n\\",\\n \\"Success\\": \\"true\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'CreateComponentAsset' => [
'path' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'ComponentName',
'in' => 'formData',
'schema' => ['description' => 'The name of the component.', 'type' => 'string', 'required' => true, 'example' => 'SLS', 'title' => ''],
],
[
'name' => 'ComponentAssetName',
'in' => 'formData',
'schema' => ['description' => 'The asset name.', 'type' => 'string', 'required' => true, 'example' => 'shanghai-log-config', 'title' => ''],
],
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language of the response. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'ComponentAssetValues',
'in' => 'formData',
'style' => 'flat',
'schema' => [
'description' => 'The configuration information of the asset.',
'type' => 'array',
'items' => [
'description' => 'The asset field information.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'required' => true, 'example' => 'endpoint', 'title' => ''],
'FieldValue' => ['description' => 'The field value.', 'type' => 'string', 'required' => true, 'example' => 'http://logs.aliyuncs.com', 'title' => ''],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => true,
'title' => '',
'example' => '',
],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The ID of the member account in the resource directory.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'The response.',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for the request. You can use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'],
'ComponentAssetUuid' => ['description' => 'The UUID of the asset.', 'type' => 'string', 'example' => '1C5F11E9-****-51F0-****-43BB312A0557'."\n", 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Create an asset',
'summary' => 'Creates an asset for a component.',
'description' => 'Make sure that you are familiar with the billing method and [pricing](https://www.aliyun.com/price/product#/sas/detail/sas) of Cloud Threat Detection and Response (CTDR) log ingestion before you call this operation.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\",\\n \\"ComponentAssetUuid\\": \\"1C5F11E9-****-51F0-****-43BB312A0557\\\\n\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'CreatePlaybook' => [
'summary' => 'Create a playbook.',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for receiving messages. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The member account ID in the resource directory.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '170*********3093', 'title' => ''],
],
[
'name' => 'PlaybookName',
'in' => 'formData',
'schema' => ['description' => 'The name of the playbook. Special characters are not allowed.', 'type' => 'string', 'required' => true, 'maxLength' => 128, 'minLength' => 2, 'example' => 'waftest', 'title' => ''],
],
[
'name' => 'PlaybookDescription',
'in' => 'formData',
'schema' => ['description' => 'The description of the playbook.', 'type' => 'string', 'maxLength' => 512, 'minLength' => 0, 'required' => false, 'example' => 'waf ip block', 'title' => ''],
],
[
'name' => 'PlaybookInputConfigs',
'in' => 'formData',
'style' => 'flat',
'schema' => [
'description' => 'The input parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The input parameter configuration.', '$ref' => '#/components/schemas/FieldInputConfig', 'required' => false, 'title' => '', 'example' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'PlaybookOutputConfigs',
'in' => 'formData',
'style' => 'flat',
'schema' => [
'description' => 'The output parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The output parameter configuration.', '$ref' => '#/components/schemas/FieldOutputConfig', 'required' => false, 'title' => '', 'example' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'SrcPlaybookUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the source playbook to be specified in the copy scenario. When this parameter has a value, all other parameters except the playbook name and playbook description are ignored.', 'type' => 'string', 'required' => false, 'example' => '1B5A9144-****-****-A466-****9D64AA99', 'title' => ''],
],
[
'name' => 'PlaybookTaskFlow',
'in' => 'formData',
'schema' => ['description' => 'The workflow of the playbook.', 'type' => 'string', 'required' => false, 'example' => '[{"id":"58d87b7d-28d9-4f0e-b135-4adc4f1a70e4","zIndex":1,"data":{"nodeType":"startEvent","appType":"basic","nodeName":"start","icon":"icon-circle","description":"start"},"position":{"x":-440,"y":-170}},{"id":"5293c3f9-e1c9-4a49-b0eb-635067dc67e8","zIndex":1,"data":{"nodeType":"sequenceFlow","appType":"basic","icon":"icon-upper-right-arrow","isRequired":true},"source":{"cell":"58d87b7d-28d9-4f0e-b135-4adc4f1a70e4"},"target":{"cell":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2"},"vertices":[]},{"id":"317dd1be-2d20-460e-977e-1fc936ffb583","zIndex":1,"data":{"nodeType":"endEvent","appType":"basic","nodeName":"end","icon":"icon-radio-off-full","description":"end"},"position":{"x":-140,"y":-170}},{"id":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2","zIndex":1,"data":{"isDebug":false,"nodeType":"action","appType":"component","nodeName":"data","valueData":{"outputFields":"[{\\"fieldName\\":\\"ip\\",\\"fieldValue\\":\\"${event.ip}\\"}]"},"icon":"https://img.alicdn.com/imgextra/i2/O1CN01NCKmL026m1z8o0DeN_!!6000000007703-2-tps-248-248.png","description":"","advance":{"inputParamMode":false,"onError":"stop_cur_flow","rspStatusType":3,"rspStatusThreshold":0},"componentName":"DataFormat","actionName":"formatdata"},"position":{"x":-340,"y":-185}},{"id":"1c7f0021-fb93-4478-b10f-af78dd5a69d6","zIndex":1,"data":{"nodeType":"sequenceFlow","appType":"basic","icon":"icon-upper-right-arrow","isRequired":true},"source":{"cell":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2"},"target":{"cell":"317dd1be-2d20-460e-977e-1fc936ffb583"},"vertices":[]}]', 'title' => ''],
],
[
'name' => 'PlaybookParamType',
'in' => 'formData',
'schema' => ['title' => '', 'description' => 'The parameter type of the playbook. Valid values:'."\n"
."\n"
.'- **template-ip**: IP entity.'."\n"
.'- **template-file**: File entity.'."\n"
.'- **template-process**: Process entity.'."\n"
.'- **template-host**: Host entity.'."\n"
.'- **template-domain**: Domain entity.'."\n"
.'- **template-container**: Container entity.'."\n"
.'- **template-incident**: Security incident.'."\n"
.'- **template-alert**: Security alert.'."\n"
.'- **custom**: Custom.', 'type' => 'string', 'example' => 'custom', 'required' => false],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The ID of this request, which is a unique identifier generated by Alibaba Cloud for this request. It can be used for troubleshooting and problem locating.', 'type' => 'string', 'example' => '007BC211-709E-549B-9534-4C8EA0922828'],
'PlaybookUuid' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'example' => 'e99dab31-499b-4307-9248-xxxxxx', 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Create a playbook',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"007BC211-709E-549B-9534-4C8EA0922828\\",\\n \\"PlaybookUuid\\": \\"e99dab31-499b-4307-9248-xxxxxx\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'DeleteComponentAsset' => [
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'delete',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language of the request and response. Default value: **zh**. Valid values:'."\n"
."\n"
.'- **zh**: Chinese'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The ID of the member account in the resource directory.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'ComponentAssetUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the asset.', 'type' => 'string', 'required' => true, 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for the request. You can use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Delete a component asset',
'summary' => 'Deletes a component asset.',
'description' => 'Make sure that you are fully aware of the billing method and [pricing](https://www.aliyun.com/price/product#/sas/detail/sas) of Cloud Threat Detection and Response (CTDR) log traffic before you call this operation.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'DeletePlaybook' => [
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'delete',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language of the request and response. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The ID of the user to whom the administrator switches the view.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'PlaybookUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'required' => true, 'example' => 'e99dab31-499b-4307-9248-xxxxxx', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID. It is a unique identifier generated by Alibaba Cloud for the request and can be used for troubleshooting.', 'type' => 'string', 'example' => '6F3CA8A9-B5BB-506A-9182-FFE80A6E0584'],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Delete a playbook',
'summary' => 'Deletes a specified custom playbook.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"6F3CA8A9-B5BB-506A-9182-FFE80A6E0584\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'ExecuteComponent' => [
'summary' => 'Runs a component in a playbook and returns the execution result of the component.',
'path' => '',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'PlaybookUuid',
'in' => 'formData',
'schema' => ['title' => '', 'description' => 'The UUID of the playbook.'."\n"
.'>You can call the [DescribePlaybooks](~~DescribePlaybooks~~) operation to obtain this parameter.', 'type' => 'string', 'example' => 'ac343acc-1a61-4084-9a1cxxxxx', 'required' => false],
],
[
'name' => 'PlayBookNodeName',
'in' => 'formData',
'schema' => ['description' => 'The node name of the current component in the playbook.', 'type' => 'string', 'required' => false, 'example' => 'node1', 'title' => ''],
],
[
'name' => 'ComponentName',
'in' => 'formData',
'schema' => ['title' => '', 'description' => 'The name of the component.', 'type' => 'string', 'example' => 'SLS', 'required' => false],
],
[
'name' => 'ComponentActionName',
'in' => 'formData',
'schema' => ['title' => '', 'description' => 'The action name of the component.', 'type' => 'string', 'required' => false, 'example' => 'doRequest'],
],
[
'name' => 'ComponentAssetUuid',
'in' => 'formData',
'schema' => ['title' => '', 'description' => 'The UUID of the asset.', 'type' => 'string', 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'required' => false],
],
[
'name' => 'ComponentInput',
'in' => 'formData',
'schema' => ['description' => 'The input parameters of the component.', 'type' => 'string', 'required' => false, 'example' => '{}', 'title' => ''],
],
[
'name' => 'Lang',
'in' => 'formData',
'schema' => [
'title' => '',
'description' => 'The language of the request and response. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.',
'enumValueTitles' => [],
'type' => 'string',
'example' => 'zh',
'required' => false,
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RunResult' => ['description' => 'The execution result of the component.', 'type' => 'string', 'example' => '{'."\n"
.' "requestUuid": "fe240b98-27b1-4a36-aec1-550b894318d9",'."\n"
.' "content": {'."\n"
.' "resultData": [],'."\n"
.' "success": true'."\n"
.' }'."\n"
.'}', 'title' => ''],
'RequestId' => ['description' => 'The request ID. It is a unique identifier generated by Alibaba Cloud for the request and can be used for troubleshooting.', 'type' => 'string', 'example' => '10B92EE1-4597-593B-A131-7A17D25EF5C9', 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Run a component',
'description' => 'Make sure that you are familiar with the billing method and [pricing](https://www.aliyun.com/price/product#/sas/detail/sas) of Cloud Threat Detection and Response (CTDR) before you call this operation.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RunResult\\": \\"{\\\\n \\\\\\"requestUuid\\\\\\": \\\\\\"fe240b98-27b1-4a36-aec1-550b894318d9\\\\\\",\\\\n \\\\\\"content\\\\\\": {\\\\n \\\\\\"resultData\\\\\\": [],\\\\n \\\\\\"success\\\\\\": true\\\\n }\\\\n}\\",\\n \\"RequestId\\": \\"10B92EE1-4597-593B-A131-7A17D25EF5C9\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'GetPlaybook' => [
'summary' => 'Get playbook details.',
'methods' => ['get', 'post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for requesting and receiving messages.'."\n"
.'- **zh** (default): Chinese.'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The user ID used by an administrator to switch to the perspective of another member.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'PlaybookUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'required' => true, 'example' => 'e99dab31-499b-4307-9248-xxxxxx', 'title' => ''],
],
[
'name' => 'PlaybookVersionType',
'in' => 'formData',
'schema' => ['description' => 'The version type of the playbook. Valid values:'."\n"
."\n"
.'- **Draft**: Draft version.'."\n"
.'- **Online**: Online version.'."\n"
.'- **History**: Historical version.', 'type' => 'string', 'required' => false, 'example' => 'History', 'title' => ''],
],
[
'name' => 'PlaybookVersion',
'in' => 'formData',
'schema' => ['description' => 'The version ID of the playbook. This parameter takes effect only when **PlaybookVersionType** is set to **History**.', 'type' => 'string', 'required' => false, 'example' => '36c9dcd6-****-4262-****-d508464ebd21', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for this request. It can be used for troubleshooting.', 'type' => 'string', 'example' => 'BFEFB76D-DD0E-5529-BD57-0DAC10B9B30F', 'title' => ''],
'Playbook' => [
'description' => 'The configuration information of the playbook.',
'type' => 'object',
'properties' => [
'PlaybookUuid' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'example' => '8db257d3-e2b2-44fd-b2cc-xxxxx', 'title' => ''],
'PlaybookName' => ['description' => 'The name of the playbook, which does not contain special characters.', 'type' => 'string', 'example' => 'waftest', 'title' => ''],
'PlaybookDescription' => ['description' => 'The description of the playbook.', 'type' => 'string', 'example' => 'waf ip blocked', 'title' => ''],
'PlaybookParamType' => ['description' => 'The parameter type of the playbook. Valid values:'."\n"
."\n"
.'- **template-ip**: IP entity.'."\n"
.'- **template-file**: File entity.'."\n"
.'- **template-process**: Process entity.'."\n"
.'- **template-host**: Host entity.'."\n"
.'- **template-domain**: Domain entity.'."\n"
.'- **template-container**: Container entity.'."\n"
.'- **template-incident**: Security incident.'."\n"
.'- **template-alert**: Security alert.'."\n"
.'- **custom**: Custom.', 'type' => 'string', 'example' => 'template-ip', 'title' => ''],
'PlaybookExtension' => ['description' => 'The extension information of the playbook.', 'type' => 'string', 'example' => '{"opCode":1}', 'title' => ''],
'PlaybookStatus' => ['description' => 'The publishing status of the playbook. Valid values:'."\n"
."\n"
.'- **0**: Unpublished.'."\n"
.'- **1**: Published.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
'PlaybookTaskFlow' => ['description' => 'The workflow of the playbook.', 'type' => 'string', 'example' => '[]', 'title' => ''],
'PlaybookVersion' => ['description' => 'The version number of the playbook.', 'type' => 'string', 'example' => '36c9dcd6-****-4262-****-d508464ebd21', 'title' => ''],
'PlaybookTaskFlowUuid' => ['description' => 'The UUID of the playbook workflow.', 'type' => 'string', 'example' => '8ea81047-****-4481-****-fcd8557bf242', 'title' => ''],
'PlaybookParamsExample' => ['description' => 'The input example of the playbook.', 'type' => 'string', 'example' => '{"ip":"1.*.*.1"}', 'title' => ''],
'CreateTime' => ['description' => 'The creation time, in millisecond-level timestamp.', 'type' => 'integer', 'format' => 'int64', 'example' => '1731378251000', 'title' => ''],
'UpdateTime' => ['description' => 'The update time, in millisecond-level timestamp.', 'type' => 'integer', 'format' => 'int64', 'example' => '1731378251000', 'title' => ''],
'PlaybookInputConfigs' => [
'description' => 'The list of input parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The input parameter configuration of the playbook.', '$ref' => '#/components/schemas/FieldInputConfig', 'title' => '', 'example' => ''],
'title' => '',
'example' => '',
],
'PlaybookOutputConfigs' => [
'description' => 'The list of output parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The output parameter configuration of the playbook.', '$ref' => '#/components/schemas/FieldOutputConfig', 'title' => '', 'example' => ''],
'title' => '',
'example' => '',
],
'PlaybookType' => ['title' => '', 'description' => 'The type of the playbook. Valid values:'."\n"
."\n"
.'- **preset**: Predefined playbook.'."\n"
.'- **user**: Custom playbook.'."\n"
.'- **component**: Security disposition component.', 'type' => 'string', 'example' => 'x6'],
],
'title' => '',
'example' => '',
],
],
'example' => '',
],
],
],
'errorCodes' => [],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Get playbook details',
'changeSet' => [],
'ramActions' => [],
'translator' => 'machine',
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"BFEFB76D-DD0E-5529-BD57-0DAC10B9B30F\\",\\n \\"Playbook\\": {\\n \\"PlaybookUuid\\": \\"8db257d3-e2b2-44fd-b2cc-xxxxx\\",\\n \\"PlaybookName\\": \\"waftest\\",\\n \\"PlaybookDescription\\": \\"waf ip blocked\\",\\n \\"PlaybookParamType\\": \\"template-ip\\",\\n \\"PlaybookExtension\\": \\"{\\\\\\"opCode\\\\\\":1}\\",\\n \\"PlaybookStatus\\": 1,\\n \\"PlaybookTaskFlow\\": \\"[]\\",\\n \\"PlaybookVersion\\": \\"36c9dcd6-****-4262-****-d508464ebd21\\",\\n \\"PlaybookTaskFlowUuid\\": \\"8ea81047-****-4481-****-fcd8557bf242\\",\\n \\"PlaybookParamsExample\\": \\"{\\\\\\"ip\\\\\\":\\\\\\"1.*.*.1\\\\\\"}\\",\\n \\"CreateTime\\": 1731378251000,\\n \\"UpdateTime\\": 1731378251000,\\n \\"PlaybookInputConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": []\\n }\\n ]\\n }\\n ]\\n }\\n ],\\n \\"PlaybookOutputConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"FieldExample\\": \\"\\"\\n }\\n ],\\n \\"PlaybookType\\": \\"x6\\"\\n }\\n}","type":"json"}]',
],
'ListComponentAssets' => [
'methods' => ['get', 'post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'list',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for the request and response messages. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The ID of the member account in the resource directory.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'ComponentName',
'in' => 'formData',
'schema' => ['description' => 'The name of the component.', 'type' => 'string', 'required' => false, 'example' => 'SLS', 'title' => ''],
],
[
'name' => 'ComponentAssetUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the asset.', 'type' => 'string', 'required' => false, 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'title' => ''],
],
[
'name' => 'PageNumber',
'in' => 'formData',
'schema' => ['description' => 'The page number for paging query. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
],
[
'name' => 'PageSize',
'in' => 'formData',
'schema' => ['description' => 'The number of entries per page for paging query. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
],
[
'name' => 'MaxResults',
'in' => 'formData',
'schema' => ['description' => 'The maximum number of results to return. Valid values: 0 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '100', 'title' => ''],
],
[
'name' => 'NextToken',
'in' => 'formData',
'schema' => ['description' => 'The pagination token for the next query. You do not need to specify this parameter for the first query or if no more results exist. If more results exist, set this parameter to the NextToken value returned by the previous API call.', 'type' => 'string', 'required' => false, 'example' => 'kt0BLbenY2XCyRfsmoEcVg==', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The ID of the request. Alibaba Cloud generates a unique identifier for each request. You can use the ID to troubleshoot issues.', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'."\n", 'title' => ''],
'ComponentAssets' => [
'description' => 'The list of assets.',
'type' => 'array',
'items' => [
'description' => 'The asset information.',
'type' => 'object',
'properties' => [
'ComponentName' => ['description' => 'The name of the component.', 'type' => 'string', 'example' => 'SLS', 'title' => ''],
'ComponentAssetName' => ['description' => 'The name of the asset.', 'type' => 'string', 'example' => 'test', 'title' => ''],
'ComponentAssetUuid' => ['description' => 'The UUID of the asset.', 'type' => 'string', 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'title' => ''],
'ComponentAssetValues' => [
'description' => 'The configuration information of the asset.',
'type' => 'array',
'items' => [
'description' => 'The configuration information of the asset.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'example' => 'lh_source', 'title' => ''],
'FieldValue' => ['description' => 'The field value.', 'type' => 'string', 'example' => 'device', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'CreateTime' => ['description' => 'The creation time.', 'type' => 'integer', 'format' => 'int64', 'example' => '1744078554000', 'title' => ''],
'UpdateTime' => ['description' => 'The update time.', 'type' => 'integer', 'format' => 'int64', 'example' => '1744078554000', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'TotalCount' => ['description' => 'The total number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '824', 'title' => ''],
'PageNumber' => ['description' => 'The page number for paging query. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
'PageSize' => ['description' => 'The number of entries per page for paging query. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
'MaxResults' => ['description' => 'The maximum number of results to return. Valid values: 0 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '100', 'title' => ''],
'NextToken' => ['description' => 'The token for the next page of results.', 'type' => 'string', 'example' => 'eyJxdW90YUFjdGlvbkNvZGUiOiJmX2hoODNybiJ9', 'title' => ''],
],
'example' => '',
],
],
],
'errorCodes' => [],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Retrieve asset list of a component',
'summary' => 'Retrieves the list of assets associated with a component.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\\\n\\",\\n \\"ComponentAssets\\": [\\n {\\n \\"ComponentName\\": \\"SLS\\",\\n \\"ComponentAssetName\\": \\"test\\",\\n \\"ComponentAssetUuid\\": \\"1C5F11E9-****-51F0-****-43BB312A0557\\",\\n \\"ComponentAssetValues\\": [\\n {\\n \\"FieldName\\": \\"lh_source\\",\\n \\"FieldValue\\": \\"device\\"\\n }\\n ],\\n \\"CreateTime\\": 1744078554000,\\n \\"UpdateTime\\": 1744078554000\\n }\\n ],\\n \\"TotalCount\\": 824,\\n \\"PageNumber\\": 1,\\n \\"PageSize\\": 10,\\n \\"MaxResults\\": 100,\\n \\"NextToken\\": \\"eyJxdW90YUFjdGlvbkNvZGUiOiJmX2hoODNybiJ9\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'ListComponents' => [
'path' => '',
'methods' => ['get', 'post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'list',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for the request and response messages. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The ID of the resource directory member accounts.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'ComponentName',
'in' => 'formData',
'schema' => ['description' => 'The name of the component.', 'type' => 'string', 'required' => false, 'example' => 'SLS', 'title' => ''],
],
[
'name' => 'PageNumber',
'in' => 'formData',
'schema' => ['description' => 'The page number for paging query. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
],
[
'name' => 'PageSize',
'in' => 'formData',
'schema' => ['description' => 'The number of entries per page in the paging query. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
],
[
'name' => 'MaxResults',
'in' => 'formData',
'schema' => ['description' => 'The maximum number of entries per page. Valid values: 1 to 100. Default value: 10.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10', 'title' => ''],
],
[
'name' => 'NextToken',
'in' => 'formData',
'schema' => ['description' => 'The token for the next page query.', 'type' => 'string', 'required' => false, 'example' => 'kt0BLbenY2XCyRfsmoEcVg=='."\n", 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'TotalCount' => ['description' => 'The total number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '52', 'title' => ''],
'RequestId' => ['description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for the request. You can use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'."\n", 'title' => ''],
'Components' => [
'description' => 'The list of components.',
'type' => 'array',
'items' => [
'description' => 'The component information.',
'type' => 'object',
'properties' => [
'ComponentName' => ['description' => 'The name of the component.', 'type' => 'string', 'example' => 'SLS', 'title' => ''],
'ComponentAlias' => ['description' => 'The alias of the component.', 'type' => 'string', 'example' => 'Log', 'title' => ''],
'ComponentDescription' => ['description' => 'The description of the component.', 'type' => 'string', 'example' => 'Log query', 'title' => ''],
'ComponentLogo' => ['description' => 'The icon URL of the component.', 'type' => 'string', 'example' => 'https://img.alicdn.com/imgextra/i1/O1CN01qBUIqk22YyEBQDsha_!!6000000007133-55-tps-200-200.svg', 'title' => ''],
'ComponentExtension' => ['description' => 'The extension information of the component.', 'type' => 'string', 'example' => '{"type":"common"}', 'title' => ''],
'ComponentActions' => [
'description' => 'The list of component actions.',
'type' => 'array',
'items' => [
'description' => 'The component action.',
'type' => 'object',
'properties' => [
'ComponentActionName' => ['description' => 'The name of the component action.', 'type' => 'string', 'example' => 'QueryLogs', 'title' => ''],
'ComponentActionDescription' => ['description' => 'The description of the component action name.', 'type' => 'string', 'example' => 'Query logs from SLS', 'title' => ''],
'InputConfigs' => [
'description' => 'The input parameter settings of the action.',
'type' => 'array',
'items' => [
'description' => 'The input parameter of the action.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'example' => 'Project', 'title' => ''],
'FieldType' => ['description' => 'The field type. Valid values:'."\n"
."\n"
.'- **String**: string.'."\n"
.'- **Long**: long integer.'."\n"
.'- **Integer**: integer.'."\n"
.'- **Double**: floating-point.'."\n"
.'- **Boolean**: Boolean.'."\n"
.'- **Complex**: key-value pair.', 'type' => 'string', 'example' => 'String', 'title' => ''],
'FieldDescription' => ['description' => 'The description of the field.', 'type' => 'string', 'example' => 'Project Name', 'title' => ''],
'FieldDisplayConfig' => ['description' => 'The display configuration of the field.', 'type' => 'string', 'example' => '{'."\n"
.' "height": 200,'."\n"
.' "theme": "vs-light",'."\n"
.' "language": "markdown",'."\n"
.' "editorOptions": {}'."\n"
.'}', 'title' => ''],
'DefaultValue' => ['description' => 'The default value.', 'type' => 'string', 'example' => '1', 'title' => ''],
'Required' => ['description' => 'Indicates whether the parameter is required.'."\n"
."\n"
.'- **true**: required.'."\n"
.'- **false**: not required.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'OutputConfigs' => [
'description' => 'The output parameter settings of the action.',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'example' => 'lh_source', 'title' => ''],
'FieldType' => ['description' => 'The field type. Valid values:'."\n"
."\n"
.'- **String**: string.'."\n"
.'- **Long**: long integer.'."\n"
.'- **Integer**: integer.'."\n"
.'- **Double**: floating-point.'."\n"
.'- **Boolean**: Boolean.'."\n"
.'- **Complex**: key-value pair.', 'type' => 'string', 'example' => 'String', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'ComponentAssetConfigs' => [
'description' => 'The list of asset field configurations.',
'type' => 'array',
'items' => [
'description' => 'The asset field configuration.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'example' => 'project', 'title' => ''],
'FieldType' => ['description' => 'The field type. Valid values:'."\n"
."\n"
.'- **String**: string.'."\n"
.'- **Long**: long integer.'."\n"
.'- **Integer**: integer.'."\n"
.'- **Double**: floating-point.'."\n"
.'- **Boolean**: Boolean.'."\n"
.'- **Complex**: key-value pair.', 'type' => 'string', 'example' => 'String', 'title' => ''],
'FieldDescription' => ['description' => 'The description of the field.', 'type' => 'string', 'example' => 'project name', 'title' => ''],
'Required' => ['description' => 'Indicates whether the parameter is required.'."\n"
."\n"
.'- **true**: required.'."\n"
.'- **false**: not required.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
'Encrypted' => ['description' => 'Specifies whether the field value needs to be encrypted. Valid values:'."\n"
."\n"
.'- true: encrypted.'."\n"
.'- false: not encrypted.'."\n"
."\n"
.'Default value: false.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
'DefaultValue' => ['description' => 'The default value.', 'type' => 'string', 'example' => '1', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'CreateTime' => ['description' => 'The creation time.', 'type' => 'integer', 'format' => 'int64', 'example' => '1757902337000', 'title' => ''],
'UpdateTime' => ['description' => 'The update time.', 'type' => 'integer', 'format' => 'int64', 'example' => '1757902337000', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'PageNumber' => ['description' => 'The page number for paging query. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
'PageSize' => ['description' => 'The number of entries per page in the paging query. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
'MaxResults' => ['description' => 'The maximum number of entries returned per request. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
'NextToken' => ['description' => 'The token for the next page query.', 'type' => 'string', 'example' => '7fbb1c66d607c1f79a740f039a8dcfda', 'title' => ''],
],
'example' => '',
],
],
],
'errorCodes' => [],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Retrieve component list',
'summary' => 'Retrieves a list of components.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"TotalCount\\": 52,\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\\\n\\",\\n \\"Components\\": [\\n {\\n \\"ComponentName\\": \\"SLS\\",\\n \\"ComponentAlias\\": \\"Log\\",\\n \\"ComponentDescription\\": \\"Log query\\",\\n \\"ComponentLogo\\": \\"https://img.alicdn.com/imgextra/i1/O1CN01qBUIqk22YyEBQDsha_!!6000000007133-55-tps-200-200.svg\\",\\n \\"ComponentExtension\\": \\"{\\\\\\"type\\\\\\":\\\\\\"common\\\\\\"}\\",\\n \\"ComponentActions\\": [\\n {\\n \\"ComponentActionName\\": \\"QueryLogs\\",\\n \\"ComponentActionDescription\\": \\"Query logs from SLS\\",\\n \\"InputConfigs\\": [\\n {\\n \\"FieldName\\": \\"Project\\",\\n \\"FieldType\\": \\"String\\",\\n \\"FieldDescription\\": \\"Project Name\\",\\n \\"FieldDisplayConfig\\": \\"{\\\\n \\\\\\"height\\\\\\": 200,\\\\n \\\\\\"theme\\\\\\": \\\\\\"vs-light\\\\\\",\\\\n \\\\\\"language\\\\\\": \\\\\\"markdown\\\\\\",\\\\n \\\\\\"editorOptions\\\\\\": {}\\\\n}\\",\\n \\"DefaultValue\\": \\"1\\",\\n \\"Required\\": false\\n }\\n ],\\n \\"OutputConfigs\\": [\\n {\\n \\"FieldName\\": \\"lh_source\\",\\n \\"FieldType\\": \\"String\\"\\n }\\n ]\\n }\\n ],\\n \\"ComponentAssetConfigs\\": [\\n {\\n \\"FieldName\\": \\"project\\",\\n \\"FieldType\\": \\"String\\",\\n \\"FieldDescription\\": \\"project name\\",\\n \\"Required\\": false,\\n \\"Encrypted\\": false,\\n \\"DefaultValue\\": \\"1\\"\\n }\\n ],\\n \\"CreateTime\\": 1757902337000,\\n \\"UpdateTime\\": 1757902337000\\n }\\n ],\\n \\"PageNumber\\": 1,\\n \\"PageSize\\": 10,\\n \\"MaxResults\\": 10,\\n \\"NextToken\\": \\"7fbb1c66d607c1f79a740f039a8dcfda\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'ListPlaybooks' => [
'methods' => ['get', 'post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'list',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type for the request and response messages.'."\n"
.'- **zh** (default): Chinese.'."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The user ID that the administrator wants to use to switch to the perspective of another member.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'PageNumber',
'in' => 'formData',
'schema' => ['description' => 'The page number for a paginated query. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
],
[
'name' => 'PageSize',
'in' => 'formData',
'schema' => ['description' => 'The number of entries per page for a paginated query. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'maximum' => '100', 'minimum' => '1', 'required' => false, 'example' => '10', 'title' => ''],
],
[
'name' => 'MaxResults',
'in' => 'formData',
'schema' => ['description' => 'The maximum number of entries to return per request. Valid values: 1 to 100.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '100', 'title' => ''],
],
[
'name' => 'NextToken',
'in' => 'formData',
'schema' => ['description' => 'The token for the next query.', 'type' => 'string', 'required' => false, 'example' => '7fbb1c****07c1f79a740f039a8dcfda', 'title' => ''],
],
[
'name' => 'PlaybookStatus',
'in' => 'formData',
'schema' => ['description' => 'The publishing status of the playbook. Valid values:'."\n"
."\n"
.'- **0**: Unpublished.'."\n"
.'- **1**: Published.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
],
[
'name' => 'PlaybookUuids',
'in' => 'formData',
'style' => 'simple',
'schema' => [
'description' => 'The collection of playbook UUIDs.',
'type' => 'array',
'items' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'required' => false, 'example' => '8baa6cff-319e-4ede-97bc-1xxxxxx', 'title' => ''],
'deprecated' => false,
'required' => false,
'maxItems' => 1,
'minItems' => 0,
'title' => '',
'example' => '',
],
],
[
'name' => 'PlaybookName',
'in' => 'formData',
'schema' => ['description' => 'The name of the playbook. Fuzzy search is supported.', 'type' => 'string', 'required' => false, 'example' => 'demo_test', 'title' => ''],
],
[
'name' => 'PlaybookParamTypes',
'in' => 'formData',
'style' => 'simple',
'schema' => [
'description' => 'The collection of playbook input parameter types.',
'type' => 'array',
'items' => ['description' => 'The parameter type of the playbook. Valid values:'."\n"
."\n"
.'- **template-ip**: IP entity.'."\n"
.'- **template-file**: File entity.'."\n"
.'- **template-process**: Process entity.'."\n"
.'- **template-host**: Host entity.'."\n"
.'- **template-domain**: Domain entity.'."\n"
.'- **template-container**: Container entity.'."\n"
.'- **template-incident**: Security incident.'."\n"
.'- **template-alert**: Security alert.'."\n"
.'- **custom**: Custom.', 'type' => 'string', 'required' => false, 'example' => 'template-ip', 'title' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'PlaybookExecutionStartTime',
'in' => 'formData',
'schema' => ['description' => 'The start time of the latest playbook execution.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1731378251000', 'title' => ''],
],
[
'name' => 'PlaybookExecutionEndTime',
'in' => 'formData',
'schema' => ['description' => 'The end time of the latest playbook execution.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1731379251000', 'title' => ''],
],
[
'name' => 'OrderField',
'in' => 'formData',
'schema' => ['description' => 'The sort field. Valid values:'."\n"
."\n"
.'- **UpdateTime**: Sort by update time.'."\n"
.'- **ExecutionTime**: Sort by the latest execution time.', 'type' => 'string', 'required' => false, 'example' => 'UpdateTime', 'title' => ''],
],
[
'name' => 'Order',
'in' => 'formData',
'schema' => ['description' => 'The sort order. Default value: **desc**. Valid values:'."\n"
.'- **desc**: Descending order.'."\n"
.'- **asc**: Ascending order.', 'type' => 'string', 'required' => false, 'example' => 'desc', 'title' => ''],
],
[
'name' => 'PlaybookType',
'in' => 'formData',
'schema' => ['description' => 'The playbook type. Valid values:'."\n"
."\n"
.'- **preset**: Predefined playbook.'."\n"
.'- **user**: Custom playbook.'."\n"
.'- **component**: Security disposition component.', 'type' => 'string', 'required' => false, 'example' => 'preset', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for the request. It can be used to troubleshoot issues.', 'type' => 'string', 'example' => '567D3D0B-2153-5860-BF9A-F9DEED55FB73', 'title' => ''],
'Playbooks' => [
'description' => 'The list of playbooks.',
'type' => 'array',
'items' => [
'description' => 'The information about the playbook.',
'type' => 'object',
'properties' => [
'PlaybookUuid' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'example' => 'bb5a8640-a14f-44ef-8376-cxxxxx', 'title' => ''],
'PlaybookName' => ['description' => 'The name of the playbook.', 'type' => 'string', 'example' => 'system_aliyun_alb_process_book', 'title' => ''],
'PlaybookDescription' => ['description' => 'The description of the playbook.', 'type' => 'string', 'example' => 'alb block', 'title' => ''],
'PlaybookType' => ['description' => 'The playbook type. Valid values:'."\n"
."\n"
.'- **preset**: Predefined playbook.'."\n"
.'- **user**: Custom playbook.'."\n"
.'- **component**: Security disposition component.', 'type' => 'string', 'example' => 'user', 'title' => ''],
'PlaybookParamType' => ['description' => 'The parameter type of the playbook. Valid values:'."\n"
."\n"
.'- **template-ip**: IP entity.'."\n"
.'- **template-file**: File entity.'."\n"
.'- **template-process**: Process entity.'."\n"
.'- **template-host**: Host entity.'."\n"
.'- **template-domain**: Domain entity.'."\n"
.'- **template-container**: Container entity.'."\n"
.'- **template-incident**: Security incident.'."\n"
.'- **template-alert**: Security alert.'."\n"
.'- **custom**: Custom.', 'type' => 'string', 'example' => 'template-ip', 'title' => ''],
'PlaybookExtension' => ['description' => 'The extension information of the playbook.', 'type' => 'string', 'example' => '{}', 'title' => ''],
'PlaybookStatus' => ['description' => 'The publishing status of the playbook. Valid values:'."\n"
."\n"
.'- **0**: Unpublished.'."\n"
.'- **1**: Published.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
'PlaybookInputConfigs' => [
'description' => 'The list of input parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The input parameter configuration of the playbook.', '$ref' => '#/components/schemas/FieldInputConfig', 'title' => '', 'example' => ''],
'title' => '',
'example' => '',
],
'PlaybookOutputConfigs' => [
'description' => 'The list of output parameter configurations of the playbook.',
'type' => 'array',
'items' => ['description' => 'The output parameter configuration of the playbook.', '$ref' => '#/components/schemas/FieldOutputConfig', 'title' => '', 'example' => ''],
'title' => '',
'example' => '',
],
'CreateTime' => ['description' => 'The creation time, in milliseconds timestamp.', 'type' => 'integer', 'format' => 'int64', 'example' => '1667792399000', 'title' => ''],
'UpdateTime' => ['description' => 'The update time, in milliseconds timestamp.', 'type' => 'integer', 'format' => 'int64', 'example' => '1731378251000', 'title' => ''],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'TotalCount' => ['description' => 'The total number of entries returned.', 'type' => 'integer', 'format' => 'int32', 'example' => '100', 'title' => ''],
'PageNumber' => ['description' => 'The page number. Default value: 1.', 'type' => 'integer', 'format' => 'int32', 'example' => '1', 'title' => ''],
'PageSize' => ['description' => 'The number of entries per page in a paginated query.', 'type' => 'integer', 'format' => 'int32', 'example' => '10', 'title' => ''],
'MaxResults' => ['description' => 'The maximum number of results allowed to be returned. Valid values: 0 to 100.', 'type' => 'integer', 'format' => 'int32', 'example' => '50', 'title' => ''],
'NextToken' => ['description' => 'The token for the start of the next page query.', 'type' => 'string', 'example' => '7fbb1c****07c1f79a740f039a8dcfda', 'title' => ''],
],
'example' => '',
],
],
],
'errorCodes' => [],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Query playbook list',
'summary' => 'Queries the list of playbooks.',
'changeSet' => [],
'ramActions' => [],
'translator' => 'machine',
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"567D3D0B-2153-5860-BF9A-F9DEED55FB73\\",\\n \\"Playbooks\\": [\\n {\\n \\"PlaybookUuid\\": \\"bb5a8640-a14f-44ef-8376-cxxxxx\\",\\n \\"PlaybookName\\": \\"system_aliyun_alb_process_book\\",\\n \\"PlaybookDescription\\": \\"alb block\\",\\n \\"PlaybookType\\": \\"user\\",\\n \\"PlaybookParamType\\": \\"template-ip\\",\\n \\"PlaybookExtension\\": \\"{}\\",\\n \\"PlaybookStatus\\": 1,\\n \\"PlaybookInputConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"Required\\": false,\\n \\"Arrayed\\": false,\\n \\"FieldPath\\": \\"\\",\\n \\"FieldCheckRegex\\": \\"\\",\\n \\"FieldExample\\": \\"\\",\\n \\"FieldClass\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"FieldConfigs\\": []\\n }\\n ]\\n }\\n ]\\n }\\n ],\\n \\"PlaybookOutputConfigs\\": [\\n {\\n \\"FieldName\\": \\"\\",\\n \\"FieldType\\": \\"\\",\\n \\"FieldDescription\\": \\"\\",\\n \\"DefaultValue\\": \\"\\",\\n \\"FieldExample\\": \\"\\"\\n }\\n ],\\n \\"CreateTime\\": 1667792399000,\\n \\"UpdateTime\\": 1731378251000\\n }\\n ],\\n \\"TotalCount\\": 100,\\n \\"PageNumber\\": 1,\\n \\"PageSize\\": 10,\\n \\"MaxResults\\": 50,\\n \\"NextToken\\": \\"7fbb1c****07c1f79a740f039a8dcfda\\"\\n}","type":"json"}]',
],
'UpdateComponentAsset' => [
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language type of the request and response messages. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'ComponentAssetUuid',
'in' => 'formData',
'schema' => ['description' => 'The asset UUID.', 'type' => 'string', 'required' => true, 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'title' => ''],
],
[
'name' => 'ComponentAssetValues',
'in' => 'formData',
'style' => 'flat',
'schema' => [
'description' => 'The configuration information of the asset.',
'type' => 'array',
'items' => [
'description' => 'The configuration information of the asset.',
'type' => 'object',
'properties' => [
'FieldName' => ['description' => 'The field name.', 'type' => 'string', 'required' => false, 'example' => 'lh_source', 'title' => ''],
'FieldValue' => ['description' => 'The field value.', 'type' => 'string', 'required' => false, 'example' => 'device', 'title' => ''],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The member account ID in the resource directory.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'ComponentAssetName',
'in' => 'formData',
'schema' => ['description' => 'The asset name.', 'type' => 'string', 'required' => false, 'example' => 'test_asset', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID, which is a unique identifier that Alibaba Cloud generates for the request. You can use the ID to troubleshoot issues.', 'type' => 'string', 'example' => '0727DAC8-****-51EC-****-14999C62B502'],
'ComponentAssetUuid' => ['description' => 'The asset UUID.', 'type' => 'string', 'example' => '1C5F11E9-****-51F0-****-43BB312A0557', 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'UpdateComponentAsset',
'summary' => 'Updates a component asset.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"0727DAC8-****-51EC-****-14999C62B502\\",\\n \\"ComponentAssetUuid\\": \\"1C5F11E9-****-51F0-****-43BB312A0557\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
'UpdatePlaybook' => [
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREsas104PTS'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'Lang',
'in' => 'formData',
'schema' => ['description' => 'The language of the request and response. Valid values:'."\n"
."\n"
.'- **zh** (default): Chinese.'."\n"
."\n"
.'- **en**: English.', 'type' => 'string', 'required' => false, 'example' => 'zh', 'title' => ''],
],
[
'name' => 'RoleFor',
'in' => 'formData',
'schema' => ['description' => 'The user ID of the member to which the administrator switches the view.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '13760*****718726', 'title' => ''],
],
[
'name' => 'PlaybookName',
'in' => 'formData',
'schema' => ['description' => 'The name of the playbook.', 'type' => 'string', 'required' => false, 'example' => 'system_aliyun_alb_process_book', 'title' => ''],
],
[
'name' => 'PlaybookDescription',
'in' => 'formData',
'schema' => ['description' => 'The description of the playbook.', 'type' => 'string', 'required' => false, 'example' => 'alb block', 'title' => ''],
],
[
'name' => 'PlaybookInputConfigs',
'in' => 'formData',
'style' => 'json',
'schema' => [
'description' => 'The list of input parameter settings of the playbook.',
'type' => 'array',
'items' => ['description' => 'The input parameter settings of the playbook.', '$ref' => '#/components/schemas/FieldInputConfig', 'required' => false, 'title' => '', 'example' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'PlaybookOutputConfigs',
'in' => 'formData',
'style' => 'json',
'schema' => [
'description' => 'The list of output parameter settings of the playbook.',
'type' => 'array',
'items' => ['description' => 'The output parameter settings of the playbook.', '$ref' => '#/components/schemas/FieldOutputConfig', 'required' => false, 'title' => '', 'example' => ''],
'required' => false,
'title' => '',
'example' => '',
],
],
[
'name' => 'PlaybookTaskFlow',
'in' => 'formData',
'schema' => ['description' => 'The content of the playbook.', 'type' => 'string', 'required' => false, 'example' => '[{"id":"58d87b7d-28d9-4f0e-b135-4adc4f1a70e4","zIndex":1,"data":{"nodeType":"startEvent","appType":"basic","nodeName":"start","icon":"icon-circle","description":"start"},"position":{"x":-440,"y":-170}},{"id":"5293c3f9-e1c9-4a49-b0eb-635067dc67e8","zIndex":1,"data":{"nodeType":"sequenceFlow","appType":"basic","icon":"icon-upper-right-arrow","isRequired":true},"source":{"cell":"58d87b7d-28d9-4f0e-b135-4adc4f1a70e4"},"target":{"cell":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2"},"vertices":[]},{"id":"317dd1be-2d20-460e-977e-1fc936ffb583","zIndex":1,"data":{"nodeType":"endEvent","appType":"basic","nodeName":"end","icon":"icon-radio-off-full","description":"end"},"position":{"x":-140,"y":-170}},{"id":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2","zIndex":1,"data":{"isDebug":false,"nodeType":"action","appType":"component","nodeName":"data","valueData":{"outputFields":"[{\\"fieldName\\":\\"ip\\",\\"fieldValue\\":\\"${event.ip}\\"}]"},"icon":"https://img.alicdn.com/imgextra/i2/O1CN01NCKmL026m1z8o0DeN_!!6000000007703-2-tps-248-248.png","description":"","advance":{"inputParamMode":false,"onError":"stop_cur_flow","rspStatusType":3,"rspStatusThreshold":0},"componentName":"DataFormat","actionName":"formatdata"},"position":{"x":-340,"y":-185}},{"id":"1c7f0021-fb93-4478-b10f-af78dd5a69d6","zIndex":1,"data":{"nodeType":"sequenceFlow","appType":"basic","icon":"icon-upper-right-arrow","isRequired":true},"source":{"cell":"f9d6d1f5-b0cd-45b6-93d0-02cd4b2a6fa2"},"target":{"cell":"317dd1be-2d20-460e-977e-1fc936ffb583"},"vertices":[]}]', 'title' => ''],
],
[
'name' => 'PlaybookParamType',
'in' => 'formData',
'schema' => ['description' => 'The input parameter type of the playbook. Valid values:'."\n"
."\n"
.'- **template-ip**: IP entity.'."\n"
.'- **template-file**: file entity.'."\n"
.'- **template-process**: process entity.'."\n"
.'- **template-host**: host entity.'."\n"
.'- **template-domain**: domain name entity.'."\n"
.'- **template-container**: container entity.'."\n"
.'- **template-incident**: security event.'."\n"
.'- **template-alert**: security alert.'."\n"
.'- **custom**: custom.', 'type' => 'string', 'required' => false, 'example' => 'template-ip', 'title' => ''],
],
[
'name' => 'PlaybookUuid',
'in' => 'formData',
'schema' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'required' => true, 'example' => '8f55e76d-b5d5-4720-9cd7-xxxxx', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID, which is a unique identifier generated by Alibaba Cloud for the request. You can use this ID to troubleshoot issues.', 'type' => 'string', 'example' => '1A01B0BA-****-5813-****-A5DA15FA95AE'],
'PlaybookUuid' => ['description' => 'The UUID of the playbook.', 'type' => 'string', 'example' => '8f55e76d-b5d5-4720-9cd7-xxxxx', 'title' => ''],
],
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Update a playbook',
'summary' => 'Updates a playbook.',
'changeSet' => [],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"1A01B0BA-****-5813-****-A5DA15FA95AE\\",\\n \\"PlaybookUuid\\": \\"8f55e76d-b5d5-4720-9cd7-xxxxx\\"\\n}","type":"json"}]',
'translator' => 'machine',
],
],
'endpoints' => [
['regionId' => 'ap-southeast-1', 'regionName' => 'Singapore', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'sophonsoar.ap-southeast-1.aliyuncs.com', 'endpoint' => 'sophonsoar.ap-southeast-1.aliyuncs.com', 'vpc' => 'sophonsoar-vpc.ap-southeast-1.aliyuncs.com'],
['regionId' => 'public', 'regionName' => 'Public network', 'areaId' => 'other', 'areaName' => 'Other', 'public' => 'sophonsoar.aliyuncs.com', 'endpoint' => 'sophonsoar.aliyuncs.com', 'vpc' => ''],
],
'errorCodes' => [
['code' => 'Component.External.NotExist', 'message' => 'Component does not exist.', 'http_code' => 400, 'description' => 'Component does not exist.'],
['code' => 'ComponentAsset.External.NotExist', 'message' => 'The component asset is not exist.', 'http_code' => 400, 'description' => 'The asset corresponding to the component you entered does not exist. Please enter it again.'],
['code' => 'Playbook.Abnormal.ERROR', 'message' => 'Interface call exception, please contact the developer.', 'http_code' => 400, 'description' => ''],
['code' => 'Playbook.External.AccountError', 'message' => 'Please login with an buy user account.', 'http_code' => 400, 'description' => 'Parameter error. Please login with an buy user account. Verify the provided parameters and try again.'],
['code' => 'Playbook.External.DebugError', 'message' => 'Debugging the script failed. Please verify whether the status and configuration of the script are correct before trying again.', 'http_code' => 400, 'description' => ''],
['code' => 'Playbook.External.InvalidParameter', 'message' => 'The request parameter is incorrect. Please verify the provided parameters and try again.', 'http_code' => 400, 'description' => 'The request parameter is incorrect. Please verify the provided parameters and try again.'],
['code' => 'Playbook.External.ParamError', 'message' => 'The parameters of the request interface are wrong. Please verify the parameters and request again.', 'http_code' => 400, 'description' => 'The parameters of the request interface are incorrect. Please verify the parameters and request again.'],
['code' => 'Playbook.External.PublishError', 'message' => 'Failed to publish or run the script. Please verify that the status and configuration of the script are correct before trying again.', 'http_code' => 400, 'description' => 'Failed to publish or run the script. Please check whether the status and configuration of the script are correct before trying again.'],
['code' => 'Playbook.External.StatusError', 'message' => 'The status of the script or disposal task is abnormal. Please check whether the status of the script or disposal task is correct.', 'http_code' => 400, 'description' => 'The status of the script or disposal task is abnormal. Please check whether the status of the script or disposal task is correct.'],
['code' => 'Playbook.Internal.MetricsError', 'message' => 'The configuration information is abnormal, please check the relevant configuration.', 'http_code' => 400, 'description' => 'The configuration information is abnormal. You are requested to check the configuration.'],
['code' => 'Playbook.Internal.RecordError', 'message' => 'The data format is abnormal, please check whether the data format meets the requirements.', 'http_code' => 400, 'description' => 'The data format is abnormal. Check whether the data format meets the requirements.'],
['code' => 'SYS_ERROR', 'message' => 'Please login with an buy user account.', 'http_code' => 400, 'description' => 'The parameter is incorrect. Please verify the provided parameters and try again: Please use the purchase account to access.'],
],
'changeSet' => [],
'ram' => [
'productCode' => 'ThreatDetection',
'productName' => 'Security Center',
'ramCodes' => ['threatdetection', 'yundun-aegis', 'yundun-sas'],
'ramLevel' => 'SERVICE',
'ramConditions' => [
[
'name' => 'acs:ResourceGroupId',
'schema' => ['type' => 'String', 'description' => '资源组ID'],
],
],
'ramActions' => [],
'resourceTypes' => [],
],
];
|