@alicloud/cloud-siem20220616 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/src/client.ts CHANGED
@@ -1011,23 +1011,47 @@ export class DescribeAlertTypeResponse extends $tea.Model {
1011
1011
  }
1012
1012
  }
1013
1013
 
1014
- export class DescribeAlertsCountRequest extends $tea.Model {
1014
+ export class DescribeAlertsRequest extends $tea.Model {
1015
+ alertTitle?: string;
1016
+ alertUuid?: string;
1017
+ currentPage?: number;
1015
1018
  endTime?: number;
1019
+ isDefend?: string;
1020
+ level?: string[];
1021
+ pageSize?: number;
1016
1022
  regionId?: string;
1023
+ source?: string;
1017
1024
  startTime?: number;
1025
+ subUserId?: string;
1018
1026
  static names(): { [key: string]: string } {
1019
1027
  return {
1028
+ alertTitle: 'AlertTitle',
1029
+ alertUuid: 'AlertUuid',
1030
+ currentPage: 'CurrentPage',
1020
1031
  endTime: 'EndTime',
1032
+ isDefend: 'IsDefend',
1033
+ level: 'Level',
1034
+ pageSize: 'PageSize',
1021
1035
  regionId: 'RegionId',
1036
+ source: 'Source',
1022
1037
  startTime: 'StartTime',
1038
+ subUserId: 'SubUserId',
1023
1039
  };
1024
1040
  }
1025
1041
 
1026
1042
  static types(): { [key: string]: any } {
1027
1043
  return {
1044
+ alertTitle: 'string',
1045
+ alertUuid: 'string',
1046
+ currentPage: 'number',
1028
1047
  endTime: 'number',
1048
+ isDefend: 'string',
1049
+ level: { 'type': 'array', 'itemType': 'string' },
1050
+ pageSize: 'number',
1029
1051
  regionId: 'string',
1052
+ source: 'string',
1030
1053
  startTime: 'number',
1054
+ subUserId: 'string',
1031
1055
  };
1032
1056
  }
1033
1057
 
@@ -1036,9 +1060,9 @@ export class DescribeAlertsCountRequest extends $tea.Model {
1036
1060
  }
1037
1061
  }
1038
1062
 
1039
- export class DescribeAlertsCountResponseBody extends $tea.Model {
1063
+ export class DescribeAlertsResponseBody extends $tea.Model {
1040
1064
  code?: number;
1041
- data?: DescribeAlertsCountResponseBodyData;
1065
+ data?: DescribeAlertsResponseBodyData;
1042
1066
  message?: string;
1043
1067
  requestId?: string;
1044
1068
  success?: boolean;
@@ -1055,7 +1079,7 @@ export class DescribeAlertsCountResponseBody extends $tea.Model {
1055
1079
  static types(): { [key: string]: any } {
1056
1080
  return {
1057
1081
  code: 'number',
1058
- data: DescribeAlertsCountResponseBodyData,
1082
+ data: DescribeAlertsResponseBodyData,
1059
1083
  message: 'string',
1060
1084
  requestId: 'string',
1061
1085
  success: 'boolean',
@@ -1067,10 +1091,10 @@ export class DescribeAlertsCountResponseBody extends $tea.Model {
1067
1091
  }
1068
1092
  }
1069
1093
 
1070
- export class DescribeAlertsCountResponse extends $tea.Model {
1094
+ export class DescribeAlertsResponse extends $tea.Model {
1071
1095
  headers: { [key: string]: string };
1072
1096
  statusCode: number;
1073
- body: DescribeAlertsCountResponseBody;
1097
+ body: DescribeAlertsResponseBody;
1074
1098
  static names(): { [key: string]: string } {
1075
1099
  return {
1076
1100
  headers: 'headers',
@@ -1083,7 +1107,7 @@ export class DescribeAlertsCountResponse extends $tea.Model {
1083
1107
  return {
1084
1108
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1085
1109
  statusCode: 'number',
1086
- body: DescribeAlertsCountResponseBody,
1110
+ body: DescribeAlertsResponseBody,
1087
1111
  };
1088
1112
  }
1089
1113
 
@@ -1092,17 +1116,13 @@ export class DescribeAlertsCountResponse extends $tea.Model {
1092
1116
  }
1093
1117
  }
1094
1118
 
1095
- export class DescribeAttackTimeLineRequest extends $tea.Model {
1096
- assetName?: string;
1119
+ export class DescribeAlertsCountRequest extends $tea.Model {
1097
1120
  endTime?: number;
1098
- incidentUuid?: string;
1099
1121
  regionId?: string;
1100
1122
  startTime?: number;
1101
1123
  static names(): { [key: string]: string } {
1102
1124
  return {
1103
- assetName: 'AssetName',
1104
1125
  endTime: 'EndTime',
1105
- incidentUuid: 'IncidentUuid',
1106
1126
  regionId: 'RegionId',
1107
1127
  startTime: 'StartTime',
1108
1128
  };
@@ -1110,9 +1130,7 @@ export class DescribeAttackTimeLineRequest extends $tea.Model {
1110
1130
 
1111
1131
  static types(): { [key: string]: any } {
1112
1132
  return {
1113
- assetName: 'string',
1114
1133
  endTime: 'number',
1115
- incidentUuid: 'string',
1116
1134
  regionId: 'string',
1117
1135
  startTime: 'number',
1118
1136
  };
@@ -1123,9 +1141,9 @@ export class DescribeAttackTimeLineRequest extends $tea.Model {
1123
1141
  }
1124
1142
  }
1125
1143
 
1126
- export class DescribeAttackTimeLineResponseBody extends $tea.Model {
1144
+ export class DescribeAlertsCountResponseBody extends $tea.Model {
1127
1145
  code?: number;
1128
- data?: DescribeAttackTimeLineResponseBodyData[];
1146
+ data?: DescribeAlertsCountResponseBodyData;
1129
1147
  message?: string;
1130
1148
  requestId?: string;
1131
1149
  success?: boolean;
@@ -1142,7 +1160,7 @@ export class DescribeAttackTimeLineResponseBody extends $tea.Model {
1142
1160
  static types(): { [key: string]: any } {
1143
1161
  return {
1144
1162
  code: 'number',
1145
- data: { 'type': 'array', 'itemType': DescribeAttackTimeLineResponseBodyData },
1163
+ data: DescribeAlertsCountResponseBodyData,
1146
1164
  message: 'string',
1147
1165
  requestId: 'string',
1148
1166
  success: 'boolean',
@@ -1154,10 +1172,10 @@ export class DescribeAttackTimeLineResponseBody extends $tea.Model {
1154
1172
  }
1155
1173
  }
1156
1174
 
1157
- export class DescribeAttackTimeLineResponse extends $tea.Model {
1175
+ export class DescribeAlertsCountResponse extends $tea.Model {
1158
1176
  headers: { [key: string]: string };
1159
1177
  statusCode: number;
1160
- body: DescribeAttackTimeLineResponseBody;
1178
+ body: DescribeAlertsCountResponseBody;
1161
1179
  static names(): { [key: string]: string } {
1162
1180
  return {
1163
1181
  headers: 'headers',
@@ -1170,7 +1188,7 @@ export class DescribeAttackTimeLineResponse extends $tea.Model {
1170
1188
  return {
1171
1189
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1172
1190
  statusCode: 'number',
1173
- body: DescribeAttackTimeLineResponseBody,
1191
+ body: DescribeAlertsCountResponseBody,
1174
1192
  };
1175
1193
  }
1176
1194
 
@@ -1179,17 +1197,32 @@ export class DescribeAttackTimeLineResponse extends $tea.Model {
1179
1197
  }
1180
1198
  }
1181
1199
 
1182
- export class DescribeAutomateResponseConfigCounterRequest extends $tea.Model {
1200
+ export class DescribeAlertsWithEntityRequest extends $tea.Model {
1201
+ currentPage?: number;
1202
+ entityId?: number;
1203
+ incidentUuid?: string;
1204
+ pageSize?: number;
1183
1205
  regionId?: string;
1206
+ sophonTaskId?: string;
1184
1207
  static names(): { [key: string]: string } {
1185
1208
  return {
1209
+ currentPage: 'CurrentPage',
1210
+ entityId: 'EntityId',
1211
+ incidentUuid: 'IncidentUuid',
1212
+ pageSize: 'PageSize',
1186
1213
  regionId: 'RegionId',
1214
+ sophonTaskId: 'SophonTaskId',
1187
1215
  };
1188
1216
  }
1189
1217
 
1190
1218
  static types(): { [key: string]: any } {
1191
1219
  return {
1220
+ currentPage: 'number',
1221
+ entityId: 'number',
1222
+ incidentUuid: 'string',
1223
+ pageSize: 'number',
1192
1224
  regionId: 'string',
1225
+ sophonTaskId: 'string',
1193
1226
  };
1194
1227
  }
1195
1228
 
@@ -1198,9 +1231,9 @@ export class DescribeAutomateResponseConfigCounterRequest extends $tea.Model {
1198
1231
  }
1199
1232
  }
1200
1233
 
1201
- export class DescribeAutomateResponseConfigCounterResponseBody extends $tea.Model {
1234
+ export class DescribeAlertsWithEntityResponseBody extends $tea.Model {
1202
1235
  code?: number;
1203
- data?: DescribeAutomateResponseConfigCounterResponseBodyData;
1236
+ data?: DescribeAlertsWithEntityResponseBodyData;
1204
1237
  message?: string;
1205
1238
  requestId?: string;
1206
1239
  success?: boolean;
@@ -1217,7 +1250,7 @@ export class DescribeAutomateResponseConfigCounterResponseBody extends $tea.Mode
1217
1250
  static types(): { [key: string]: any } {
1218
1251
  return {
1219
1252
  code: 'number',
1220
- data: DescribeAutomateResponseConfigCounterResponseBodyData,
1253
+ data: DescribeAlertsWithEntityResponseBodyData,
1221
1254
  message: 'string',
1222
1255
  requestId: 'string',
1223
1256
  success: 'boolean',
@@ -1229,10 +1262,10 @@ export class DescribeAutomateResponseConfigCounterResponseBody extends $tea.Mode
1229
1262
  }
1230
1263
  }
1231
1264
 
1232
- export class DescribeAutomateResponseConfigCounterResponse extends $tea.Model {
1265
+ export class DescribeAlertsWithEntityResponse extends $tea.Model {
1233
1266
  headers: { [key: string]: string };
1234
1267
  statusCode: number;
1235
- body: DescribeAutomateResponseConfigCounterResponseBody;
1268
+ body: DescribeAlertsWithEntityResponseBody;
1236
1269
  static names(): { [key: string]: string } {
1237
1270
  return {
1238
1271
  headers: 'headers',
@@ -1245,7 +1278,7 @@ export class DescribeAutomateResponseConfigCounterResponse extends $tea.Model {
1245
1278
  return {
1246
1279
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1247
1280
  statusCode: 'number',
1248
- body: DescribeAutomateResponseConfigCounterResponseBody,
1281
+ body: DescribeAlertsWithEntityResponseBody,
1249
1282
  };
1250
1283
  }
1251
1284
 
@@ -1254,20 +1287,41 @@ export class DescribeAutomateResponseConfigCounterResponse extends $tea.Model {
1254
1287
  }
1255
1288
  }
1256
1289
 
1257
- export class DescribeAutomateResponseConfigFeatureRequest extends $tea.Model {
1258
- autoResponseType?: string;
1290
+ export class DescribeAlertsWithEventRequest extends $tea.Model {
1291
+ alertTitle?: string;
1292
+ currentPage?: number;
1293
+ incidentUuid?: string;
1294
+ isDefend?: string;
1295
+ level?: string[];
1296
+ pageSize?: number;
1259
1297
  regionId?: string;
1298
+ source?: string;
1299
+ subUserId?: number;
1260
1300
  static names(): { [key: string]: string } {
1261
1301
  return {
1262
- autoResponseType: 'AutoResponseType',
1302
+ alertTitle: 'AlertTitle',
1303
+ currentPage: 'CurrentPage',
1304
+ incidentUuid: 'IncidentUuid',
1305
+ isDefend: 'IsDefend',
1306
+ level: 'Level',
1307
+ pageSize: 'PageSize',
1263
1308
  regionId: 'RegionId',
1309
+ source: 'Source',
1310
+ subUserId: 'SubUserId',
1264
1311
  };
1265
1312
  }
1266
1313
 
1267
1314
  static types(): { [key: string]: any } {
1268
1315
  return {
1269
- autoResponseType: 'string',
1316
+ alertTitle: 'string',
1317
+ currentPage: 'number',
1318
+ incidentUuid: 'string',
1319
+ isDefend: 'string',
1320
+ level: { 'type': 'array', 'itemType': 'string' },
1321
+ pageSize: 'number',
1270
1322
  regionId: 'string',
1323
+ source: 'string',
1324
+ subUserId: 'number',
1271
1325
  };
1272
1326
  }
1273
1327
 
@@ -1276,9 +1330,9 @@ export class DescribeAutomateResponseConfigFeatureRequest extends $tea.Model {
1276
1330
  }
1277
1331
  }
1278
1332
 
1279
- export class DescribeAutomateResponseConfigFeatureResponseBody extends $tea.Model {
1333
+ export class DescribeAlertsWithEventResponseBody extends $tea.Model {
1280
1334
  code?: number;
1281
- data?: DescribeAutomateResponseConfigFeatureResponseBodyData[];
1335
+ data?: DescribeAlertsWithEventResponseBodyData;
1282
1336
  message?: string;
1283
1337
  requestId?: string;
1284
1338
  success?: boolean;
@@ -1295,7 +1349,7 @@ export class DescribeAutomateResponseConfigFeatureResponseBody extends $tea.Mode
1295
1349
  static types(): { [key: string]: any } {
1296
1350
  return {
1297
1351
  code: 'number',
1298
- data: { 'type': 'array', 'itemType': DescribeAutomateResponseConfigFeatureResponseBodyData },
1352
+ data: DescribeAlertsWithEventResponseBodyData,
1299
1353
  message: 'string',
1300
1354
  requestId: 'string',
1301
1355
  success: 'boolean',
@@ -1307,10 +1361,10 @@ export class DescribeAutomateResponseConfigFeatureResponseBody extends $tea.Mode
1307
1361
  }
1308
1362
  }
1309
1363
 
1310
- export class DescribeAutomateResponseConfigFeatureResponse extends $tea.Model {
1364
+ export class DescribeAlertsWithEventResponse extends $tea.Model {
1311
1365
  headers: { [key: string]: string };
1312
1366
  statusCode: number;
1313
- body: DescribeAutomateResponseConfigFeatureResponseBody;
1367
+ body: DescribeAlertsWithEventResponseBody;
1314
1368
  static names(): { [key: string]: string } {
1315
1369
  return {
1316
1370
  headers: 'headers',
@@ -1323,7 +1377,7 @@ export class DescribeAutomateResponseConfigFeatureResponse extends $tea.Model {
1323
1377
  return {
1324
1378
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1325
1379
  statusCode: 'number',
1326
- body: DescribeAutomateResponseConfigFeatureResponseBody,
1380
+ body: DescribeAlertsWithEventResponseBody,
1327
1381
  };
1328
1382
  }
1329
1383
 
@@ -1332,23 +1386,29 @@ export class DescribeAutomateResponseConfigFeatureResponse extends $tea.Model {
1332
1386
  }
1333
1387
  }
1334
1388
 
1335
- export class DescribeAutomateResponseConfigPlayBooksRequest extends $tea.Model {
1336
- autoResponseType?: string;
1337
- entityType?: string;
1389
+ export class DescribeAttackTimeLineRequest extends $tea.Model {
1390
+ assetName?: string;
1391
+ endTime?: number;
1392
+ incidentUuid?: string;
1338
1393
  regionId?: string;
1394
+ startTime?: number;
1339
1395
  static names(): { [key: string]: string } {
1340
1396
  return {
1341
- autoResponseType: 'AutoResponseType',
1342
- entityType: 'EntityType',
1397
+ assetName: 'AssetName',
1398
+ endTime: 'EndTime',
1399
+ incidentUuid: 'IncidentUuid',
1343
1400
  regionId: 'RegionId',
1401
+ startTime: 'StartTime',
1344
1402
  };
1345
1403
  }
1346
1404
 
1347
1405
  static types(): { [key: string]: any } {
1348
1406
  return {
1349
- autoResponseType: 'string',
1350
- entityType: 'string',
1407
+ assetName: 'string',
1408
+ endTime: 'number',
1409
+ incidentUuid: 'string',
1351
1410
  regionId: 'string',
1411
+ startTime: 'number',
1352
1412
  };
1353
1413
  }
1354
1414
 
@@ -1357,9 +1417,9 @@ export class DescribeAutomateResponseConfigPlayBooksRequest extends $tea.Model {
1357
1417
  }
1358
1418
  }
1359
1419
 
1360
- export class DescribeAutomateResponseConfigPlayBooksResponseBody extends $tea.Model {
1420
+ export class DescribeAttackTimeLineResponseBody extends $tea.Model {
1361
1421
  code?: number;
1362
- data?: DescribeAutomateResponseConfigPlayBooksResponseBodyData[];
1422
+ data?: DescribeAttackTimeLineResponseBodyData[];
1363
1423
  message?: string;
1364
1424
  requestId?: string;
1365
1425
  success?: boolean;
@@ -1376,7 +1436,7 @@ export class DescribeAutomateResponseConfigPlayBooksResponseBody extends $tea.Mo
1376
1436
  static types(): { [key: string]: any } {
1377
1437
  return {
1378
1438
  code: 'number',
1379
- data: { 'type': 'array', 'itemType': DescribeAutomateResponseConfigPlayBooksResponseBodyData },
1439
+ data: { 'type': 'array', 'itemType': DescribeAttackTimeLineResponseBodyData },
1380
1440
  message: 'string',
1381
1441
  requestId: 'string',
1382
1442
  success: 'boolean',
@@ -1388,10 +1448,10 @@ export class DescribeAutomateResponseConfigPlayBooksResponseBody extends $tea.Mo
1388
1448
  }
1389
1449
  }
1390
1450
 
1391
- export class DescribeAutomateResponseConfigPlayBooksResponse extends $tea.Model {
1451
+ export class DescribeAttackTimeLineResponse extends $tea.Model {
1392
1452
  headers: { [key: string]: string };
1393
1453
  statusCode: number;
1394
- body: DescribeAutomateResponseConfigPlayBooksResponseBody;
1454
+ body: DescribeAttackTimeLineResponseBody;
1395
1455
  static names(): { [key: string]: string } {
1396
1456
  return {
1397
1457
  headers: 'headers',
@@ -1404,7 +1464,7 @@ export class DescribeAutomateResponseConfigPlayBooksResponse extends $tea.Model
1404
1464
  return {
1405
1465
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1406
1466
  statusCode: 'number',
1407
- body: DescribeAutomateResponseConfigPlayBooksResponseBody,
1467
+ body: DescribeAttackTimeLineResponseBody,
1408
1468
  };
1409
1469
  }
1410
1470
 
@@ -1413,28 +1473,16 @@ export class DescribeAutomateResponseConfigPlayBooksResponse extends $tea.Model
1413
1473
  }
1414
1474
  }
1415
1475
 
1416
- export class DescribeCloudSiemAssetsRequest extends $tea.Model {
1417
- assetType?: string;
1418
- currentPage?: number;
1419
- incidentUuid?: string;
1420
- pageSize?: number;
1476
+ export class DescribeAutomateResponseConfigCounterRequest extends $tea.Model {
1421
1477
  regionId?: string;
1422
1478
  static names(): { [key: string]: string } {
1423
1479
  return {
1424
- assetType: 'AssetType',
1425
- currentPage: 'CurrentPage',
1426
- incidentUuid: 'IncidentUuid',
1427
- pageSize: 'PageSize',
1428
1480
  regionId: 'RegionId',
1429
1481
  };
1430
1482
  }
1431
1483
 
1432
1484
  static types(): { [key: string]: any } {
1433
1485
  return {
1434
- assetType: 'string',
1435
- currentPage: 'number',
1436
- incidentUuid: 'string',
1437
- pageSize: 'number',
1438
1486
  regionId: 'string',
1439
1487
  };
1440
1488
  }
@@ -1444,9 +1492,9 @@ export class DescribeCloudSiemAssetsRequest extends $tea.Model {
1444
1492
  }
1445
1493
  }
1446
1494
 
1447
- export class DescribeCloudSiemAssetsResponseBody extends $tea.Model {
1495
+ export class DescribeAutomateResponseConfigCounterResponseBody extends $tea.Model {
1448
1496
  code?: number;
1449
- data?: DescribeCloudSiemAssetsResponseBodyData;
1497
+ data?: DescribeAutomateResponseConfigCounterResponseBodyData;
1450
1498
  message?: string;
1451
1499
  requestId?: string;
1452
1500
  success?: boolean;
@@ -1463,7 +1511,7 @@ export class DescribeCloudSiemAssetsResponseBody extends $tea.Model {
1463
1511
  static types(): { [key: string]: any } {
1464
1512
  return {
1465
1513
  code: 'number',
1466
- data: DescribeCloudSiemAssetsResponseBodyData,
1514
+ data: DescribeAutomateResponseConfigCounterResponseBodyData,
1467
1515
  message: 'string',
1468
1516
  requestId: 'string',
1469
1517
  success: 'boolean',
@@ -1475,10 +1523,10 @@ export class DescribeCloudSiemAssetsResponseBody extends $tea.Model {
1475
1523
  }
1476
1524
  }
1477
1525
 
1478
- export class DescribeCloudSiemAssetsResponse extends $tea.Model {
1526
+ export class DescribeAutomateResponseConfigCounterResponse extends $tea.Model {
1479
1527
  headers: { [key: string]: string };
1480
1528
  statusCode: number;
1481
- body: DescribeCloudSiemAssetsResponseBody;
1529
+ body: DescribeAutomateResponseConfigCounterResponseBody;
1482
1530
  static names(): { [key: string]: string } {
1483
1531
  return {
1484
1532
  headers: 'headers',
@@ -1491,7 +1539,7 @@ export class DescribeCloudSiemAssetsResponse extends $tea.Model {
1491
1539
  return {
1492
1540
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1493
1541
  statusCode: 'number',
1494
- body: DescribeCloudSiemAssetsResponseBody,
1542
+ body: DescribeAutomateResponseConfigCounterResponseBody,
1495
1543
  };
1496
1544
  }
1497
1545
 
@@ -1500,19 +1548,19 @@ export class DescribeCloudSiemAssetsResponse extends $tea.Model {
1500
1548
  }
1501
1549
  }
1502
1550
 
1503
- export class DescribeCloudSiemAssetsCounterRequest extends $tea.Model {
1504
- incidentUuid?: string;
1551
+ export class DescribeAutomateResponseConfigFeatureRequest extends $tea.Model {
1552
+ autoResponseType?: string;
1505
1553
  regionId?: string;
1506
1554
  static names(): { [key: string]: string } {
1507
1555
  return {
1508
- incidentUuid: 'IncidentUuid',
1556
+ autoResponseType: 'AutoResponseType',
1509
1557
  regionId: 'RegionId',
1510
1558
  };
1511
1559
  }
1512
1560
 
1513
1561
  static types(): { [key: string]: any } {
1514
1562
  return {
1515
- incidentUuid: 'string',
1563
+ autoResponseType: 'string',
1516
1564
  regionId: 'string',
1517
1565
  };
1518
1566
  }
@@ -1522,9 +1570,9 @@ export class DescribeCloudSiemAssetsCounterRequest extends $tea.Model {
1522
1570
  }
1523
1571
  }
1524
1572
 
1525
- export class DescribeCloudSiemAssetsCounterResponseBody extends $tea.Model {
1573
+ export class DescribeAutomateResponseConfigFeatureResponseBody extends $tea.Model {
1526
1574
  code?: number;
1527
- data?: DescribeCloudSiemAssetsCounterResponseBodyData[];
1575
+ data?: DescribeAutomateResponseConfigFeatureResponseBodyData[];
1528
1576
  message?: string;
1529
1577
  requestId?: string;
1530
1578
  success?: boolean;
@@ -1541,7 +1589,7 @@ export class DescribeCloudSiemAssetsCounterResponseBody extends $tea.Model {
1541
1589
  static types(): { [key: string]: any } {
1542
1590
  return {
1543
1591
  code: 'number',
1544
- data: { 'type': 'array', 'itemType': DescribeCloudSiemAssetsCounterResponseBodyData },
1592
+ data: { 'type': 'array', 'itemType': DescribeAutomateResponseConfigFeatureResponseBodyData },
1545
1593
  message: 'string',
1546
1594
  requestId: 'string',
1547
1595
  success: 'boolean',
@@ -1553,10 +1601,10 @@ export class DescribeCloudSiemAssetsCounterResponseBody extends $tea.Model {
1553
1601
  }
1554
1602
  }
1555
1603
 
1556
- export class DescribeCloudSiemAssetsCounterResponse extends $tea.Model {
1604
+ export class DescribeAutomateResponseConfigFeatureResponse extends $tea.Model {
1557
1605
  headers: { [key: string]: string };
1558
1606
  statusCode: number;
1559
- body: DescribeCloudSiemAssetsCounterResponseBody;
1607
+ body: DescribeAutomateResponseConfigFeatureResponseBody;
1560
1608
  static names(): { [key: string]: string } {
1561
1609
  return {
1562
1610
  headers: 'headers',
@@ -1569,7 +1617,7 @@ export class DescribeCloudSiemAssetsCounterResponse extends $tea.Model {
1569
1617
  return {
1570
1618
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1571
1619
  statusCode: 'number',
1572
- body: DescribeCloudSiemAssetsCounterResponseBody,
1620
+ body: DescribeAutomateResponseConfigFeatureResponseBody,
1573
1621
  };
1574
1622
  }
1575
1623
 
@@ -1578,19 +1626,22 @@ export class DescribeCloudSiemAssetsCounterResponse extends $tea.Model {
1578
1626
  }
1579
1627
  }
1580
1628
 
1581
- export class DescribeCloudSiemEventDetailRequest extends $tea.Model {
1582
- incidentUuid?: string;
1629
+ export class DescribeAutomateResponseConfigPlayBooksRequest extends $tea.Model {
1630
+ autoResponseType?: string;
1631
+ entityType?: string;
1583
1632
  regionId?: string;
1584
1633
  static names(): { [key: string]: string } {
1585
1634
  return {
1586
- incidentUuid: 'IncidentUuid',
1635
+ autoResponseType: 'AutoResponseType',
1636
+ entityType: 'EntityType',
1587
1637
  regionId: 'RegionId',
1588
1638
  };
1589
1639
  }
1590
1640
 
1591
1641
  static types(): { [key: string]: any } {
1592
1642
  return {
1593
- incidentUuid: 'string',
1643
+ autoResponseType: 'string',
1644
+ entityType: 'string',
1594
1645
  regionId: 'string',
1595
1646
  };
1596
1647
  }
@@ -1600,9 +1651,9 @@ export class DescribeCloudSiemEventDetailRequest extends $tea.Model {
1600
1651
  }
1601
1652
  }
1602
1653
 
1603
- export class DescribeCloudSiemEventDetailResponseBody extends $tea.Model {
1654
+ export class DescribeAutomateResponseConfigPlayBooksResponseBody extends $tea.Model {
1604
1655
  code?: number;
1605
- data?: DescribeCloudSiemEventDetailResponseBodyData;
1656
+ data?: DescribeAutomateResponseConfigPlayBooksResponseBodyData[];
1606
1657
  message?: string;
1607
1658
  requestId?: string;
1608
1659
  success?: boolean;
@@ -1619,7 +1670,7 @@ export class DescribeCloudSiemEventDetailResponseBody extends $tea.Model {
1619
1670
  static types(): { [key: string]: any } {
1620
1671
  return {
1621
1672
  code: 'number',
1622
- data: DescribeCloudSiemEventDetailResponseBodyData,
1673
+ data: { 'type': 'array', 'itemType': DescribeAutomateResponseConfigPlayBooksResponseBodyData },
1623
1674
  message: 'string',
1624
1675
  requestId: 'string',
1625
1676
  success: 'boolean',
@@ -1631,10 +1682,10 @@ export class DescribeCloudSiemEventDetailResponseBody extends $tea.Model {
1631
1682
  }
1632
1683
  }
1633
1684
 
1634
- export class DescribeCloudSiemEventDetailResponse extends $tea.Model {
1685
+ export class DescribeAutomateResponseConfigPlayBooksResponse extends $tea.Model {
1635
1686
  headers: { [key: string]: string };
1636
1687
  statusCode: number;
1637
- body: DescribeCloudSiemEventDetailResponseBody;
1688
+ body: DescribeAutomateResponseConfigPlayBooksResponseBody;
1638
1689
  static names(): { [key: string]: string } {
1639
1690
  return {
1640
1691
  headers: 'headers',
@@ -1647,7 +1698,7 @@ export class DescribeCloudSiemEventDetailResponse extends $tea.Model {
1647
1698
  return {
1648
1699
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1649
1700
  statusCode: 'number',
1650
- body: DescribeCloudSiemEventDetailResponseBody,
1701
+ body: DescribeAutomateResponseConfigPlayBooksResponseBody,
1651
1702
  };
1652
1703
  }
1653
1704
 
@@ -1656,50 +1707,29 @@ export class DescribeCloudSiemEventDetailResponse extends $tea.Model {
1656
1707
  }
1657
1708
  }
1658
1709
 
1659
- export class DescribeCloudSiemEventsRequest extends $tea.Model {
1660
- assetId?: string;
1710
+ export class DescribeCloudSiemAssetsRequest extends $tea.Model {
1711
+ assetType?: string;
1661
1712
  currentPage?: number;
1662
- endTime?: number;
1663
- eventName?: string;
1664
1713
  incidentUuid?: string;
1665
- order?: string;
1666
- orderField?: string;
1667
1714
  pageSize?: number;
1668
1715
  regionId?: string;
1669
- startTime?: number;
1670
- status?: number;
1671
- threadLevel?: string[];
1672
1716
  static names(): { [key: string]: string } {
1673
1717
  return {
1674
- assetId: 'AssetId',
1718
+ assetType: 'AssetType',
1675
1719
  currentPage: 'CurrentPage',
1676
- endTime: 'EndTime',
1677
- eventName: 'EventName',
1678
1720
  incidentUuid: 'IncidentUuid',
1679
- order: 'Order',
1680
- orderField: 'OrderField',
1681
1721
  pageSize: 'PageSize',
1682
1722
  regionId: 'RegionId',
1683
- startTime: 'StartTime',
1684
- status: 'Status',
1685
- threadLevel: 'ThreadLevel',
1686
1723
  };
1687
1724
  }
1688
1725
 
1689
1726
  static types(): { [key: string]: any } {
1690
1727
  return {
1691
- assetId: 'string',
1728
+ assetType: 'string',
1692
1729
  currentPage: 'number',
1693
- endTime: 'number',
1694
- eventName: 'string',
1695
1730
  incidentUuid: 'string',
1696
- order: 'string',
1697
- orderField: 'string',
1698
1731
  pageSize: 'number',
1699
1732
  regionId: 'string',
1700
- startTime: 'number',
1701
- status: 'number',
1702
- threadLevel: { 'type': 'array', 'itemType': 'string' },
1703
1733
  };
1704
1734
  }
1705
1735
 
@@ -1708,9 +1738,9 @@ export class DescribeCloudSiemEventsRequest extends $tea.Model {
1708
1738
  }
1709
1739
  }
1710
1740
 
1711
- export class DescribeCloudSiemEventsResponseBody extends $tea.Model {
1741
+ export class DescribeCloudSiemAssetsResponseBody extends $tea.Model {
1712
1742
  code?: number;
1713
- data?: DescribeCloudSiemEventsResponseBodyData;
1743
+ data?: DescribeCloudSiemAssetsResponseBodyData;
1714
1744
  message?: string;
1715
1745
  requestId?: string;
1716
1746
  success?: boolean;
@@ -1727,7 +1757,7 @@ export class DescribeCloudSiemEventsResponseBody extends $tea.Model {
1727
1757
  static types(): { [key: string]: any } {
1728
1758
  return {
1729
1759
  code: 'number',
1730
- data: DescribeCloudSiemEventsResponseBodyData,
1760
+ data: DescribeCloudSiemAssetsResponseBodyData,
1731
1761
  message: 'string',
1732
1762
  requestId: 'string',
1733
1763
  success: 'boolean',
@@ -1739,10 +1769,10 @@ export class DescribeCloudSiemEventsResponseBody extends $tea.Model {
1739
1769
  }
1740
1770
  }
1741
1771
 
1742
- export class DescribeCloudSiemEventsResponse extends $tea.Model {
1772
+ export class DescribeCloudSiemAssetsResponse extends $tea.Model {
1743
1773
  headers: { [key: string]: string };
1744
1774
  statusCode: number;
1745
- body: DescribeCloudSiemEventsResponseBody;
1775
+ body: DescribeCloudSiemAssetsResponseBody;
1746
1776
  static names(): { [key: string]: string } {
1747
1777
  return {
1748
1778
  headers: 'headers',
@@ -1755,7 +1785,7 @@ export class DescribeCloudSiemEventsResponse extends $tea.Model {
1755
1785
  return {
1756
1786
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1757
1787
  statusCode: 'number',
1758
- body: DescribeCloudSiemEventsResponseBody,
1788
+ body: DescribeCloudSiemAssetsResponseBody,
1759
1789
  };
1760
1790
  }
1761
1791
 
@@ -1764,20 +1794,20 @@ export class DescribeCloudSiemEventsResponse extends $tea.Model {
1764
1794
  }
1765
1795
  }
1766
1796
 
1767
- export class DescribeCustomizeRuleRequest extends $tea.Model {
1797
+ export class DescribeCloudSiemAssetsCounterRequest extends $tea.Model {
1798
+ incidentUuid?: string;
1768
1799
  regionId?: string;
1769
- ruleId?: number;
1770
1800
  static names(): { [key: string]: string } {
1771
1801
  return {
1802
+ incidentUuid: 'IncidentUuid',
1772
1803
  regionId: 'RegionId',
1773
- ruleId: 'RuleId',
1774
1804
  };
1775
1805
  }
1776
1806
 
1777
1807
  static types(): { [key: string]: any } {
1778
1808
  return {
1809
+ incidentUuid: 'string',
1779
1810
  regionId: 'string',
1780
- ruleId: 'number',
1781
1811
  };
1782
1812
  }
1783
1813
 
@@ -1786,9 +1816,9 @@ export class DescribeCustomizeRuleRequest extends $tea.Model {
1786
1816
  }
1787
1817
  }
1788
1818
 
1789
- export class DescribeCustomizeRuleResponseBody extends $tea.Model {
1819
+ export class DescribeCloudSiemAssetsCounterResponseBody extends $tea.Model {
1790
1820
  code?: number;
1791
- data?: DescribeCustomizeRuleResponseBodyData;
1821
+ data?: DescribeCloudSiemAssetsCounterResponseBodyData[];
1792
1822
  message?: string;
1793
1823
  requestId?: string;
1794
1824
  success?: boolean;
@@ -1805,7 +1835,7 @@ export class DescribeCustomizeRuleResponseBody extends $tea.Model {
1805
1835
  static types(): { [key: string]: any } {
1806
1836
  return {
1807
1837
  code: 'number',
1808
- data: DescribeCustomizeRuleResponseBodyData,
1838
+ data: { 'type': 'array', 'itemType': DescribeCloudSiemAssetsCounterResponseBodyData },
1809
1839
  message: 'string',
1810
1840
  requestId: 'string',
1811
1841
  success: 'boolean',
@@ -1817,10 +1847,10 @@ export class DescribeCustomizeRuleResponseBody extends $tea.Model {
1817
1847
  }
1818
1848
  }
1819
1849
 
1820
- export class DescribeCustomizeRuleResponse extends $tea.Model {
1850
+ export class DescribeCloudSiemAssetsCounterResponse extends $tea.Model {
1821
1851
  headers: { [key: string]: string };
1822
1852
  statusCode: number;
1823
- body: DescribeCustomizeRuleResponseBody;
1853
+ body: DescribeCloudSiemAssetsCounterResponseBody;
1824
1854
  static names(): { [key: string]: string } {
1825
1855
  return {
1826
1856
  headers: 'headers',
@@ -1833,7 +1863,7 @@ export class DescribeCustomizeRuleResponse extends $tea.Model {
1833
1863
  return {
1834
1864
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1835
1865
  statusCode: 'number',
1836
- body: DescribeCustomizeRuleResponseBody,
1866
+ body: DescribeCloudSiemAssetsCounterResponseBody,
1837
1867
  };
1838
1868
  }
1839
1869
 
@@ -1842,16 +1872,19 @@ export class DescribeCustomizeRuleResponse extends $tea.Model {
1842
1872
  }
1843
1873
  }
1844
1874
 
1845
- export class DescribeCustomizeRuleCountRequest extends $tea.Model {
1875
+ export class DescribeCloudSiemEventDetailRequest extends $tea.Model {
1876
+ incidentUuid?: string;
1846
1877
  regionId?: string;
1847
1878
  static names(): { [key: string]: string } {
1848
1879
  return {
1880
+ incidentUuid: 'IncidentUuid',
1849
1881
  regionId: 'RegionId',
1850
1882
  };
1851
1883
  }
1852
1884
 
1853
1885
  static types(): { [key: string]: any } {
1854
1886
  return {
1887
+ incidentUuid: 'string',
1855
1888
  regionId: 'string',
1856
1889
  };
1857
1890
  }
@@ -1861,9 +1894,9 @@ export class DescribeCustomizeRuleCountRequest extends $tea.Model {
1861
1894
  }
1862
1895
  }
1863
1896
 
1864
- export class DescribeCustomizeRuleCountResponseBody extends $tea.Model {
1897
+ export class DescribeCloudSiemEventDetailResponseBody extends $tea.Model {
1865
1898
  code?: number;
1866
- data?: DescribeCustomizeRuleCountResponseBodyData;
1899
+ data?: DescribeCloudSiemEventDetailResponseBodyData;
1867
1900
  message?: string;
1868
1901
  requestId?: string;
1869
1902
  success?: boolean;
@@ -1880,7 +1913,7 @@ export class DescribeCustomizeRuleCountResponseBody extends $tea.Model {
1880
1913
  static types(): { [key: string]: any } {
1881
1914
  return {
1882
1915
  code: 'number',
1883
- data: DescribeCustomizeRuleCountResponseBodyData,
1916
+ data: DescribeCloudSiemEventDetailResponseBodyData,
1884
1917
  message: 'string',
1885
1918
  requestId: 'string',
1886
1919
  success: 'boolean',
@@ -1892,10 +1925,10 @@ export class DescribeCustomizeRuleCountResponseBody extends $tea.Model {
1892
1925
  }
1893
1926
  }
1894
1927
 
1895
- export class DescribeCustomizeRuleCountResponse extends $tea.Model {
1928
+ export class DescribeCloudSiemEventDetailResponse extends $tea.Model {
1896
1929
  headers: { [key: string]: string };
1897
1930
  statusCode: number;
1898
- body: DescribeCustomizeRuleCountResponseBody;
1931
+ body: DescribeCloudSiemEventDetailResponseBody;
1899
1932
  static names(): { [key: string]: string } {
1900
1933
  return {
1901
1934
  headers: 'headers',
@@ -1908,7 +1941,7 @@ export class DescribeCustomizeRuleCountResponse extends $tea.Model {
1908
1941
  return {
1909
1942
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1910
1943
  statusCode: 'number',
1911
- body: DescribeCustomizeRuleCountResponseBody,
1944
+ body: DescribeCloudSiemEventDetailResponseBody,
1912
1945
  };
1913
1946
  }
1914
1947
 
@@ -1917,20 +1950,50 @@ export class DescribeCustomizeRuleCountResponse extends $tea.Model {
1917
1950
  }
1918
1951
  }
1919
1952
 
1920
- export class DescribeCustomizeRuleTestRequest extends $tea.Model {
1921
- id?: number;
1953
+ export class DescribeCloudSiemEventsRequest extends $tea.Model {
1954
+ assetId?: string;
1955
+ currentPage?: number;
1956
+ endTime?: number;
1957
+ eventName?: string;
1958
+ incidentUuid?: string;
1959
+ order?: string;
1960
+ orderField?: string;
1961
+ pageSize?: number;
1922
1962
  regionId?: string;
1963
+ startTime?: number;
1964
+ status?: number;
1965
+ threadLevel?: string[];
1923
1966
  static names(): { [key: string]: string } {
1924
1967
  return {
1925
- id: 'Id',
1968
+ assetId: 'AssetId',
1969
+ currentPage: 'CurrentPage',
1970
+ endTime: 'EndTime',
1971
+ eventName: 'EventName',
1972
+ incidentUuid: 'IncidentUuid',
1973
+ order: 'Order',
1974
+ orderField: 'OrderField',
1975
+ pageSize: 'PageSize',
1926
1976
  regionId: 'RegionId',
1977
+ startTime: 'StartTime',
1978
+ status: 'Status',
1979
+ threadLevel: 'ThreadLevel',
1927
1980
  };
1928
1981
  }
1929
1982
 
1930
1983
  static types(): { [key: string]: any } {
1931
1984
  return {
1932
- id: 'number',
1985
+ assetId: 'string',
1986
+ currentPage: 'number',
1987
+ endTime: 'number',
1988
+ eventName: 'string',
1989
+ incidentUuid: 'string',
1990
+ order: 'string',
1991
+ orderField: 'string',
1992
+ pageSize: 'number',
1933
1993
  regionId: 'string',
1994
+ startTime: 'number',
1995
+ status: 'number',
1996
+ threadLevel: { 'type': 'array', 'itemType': 'string' },
1934
1997
  };
1935
1998
  }
1936
1999
 
@@ -1939,9 +2002,9 @@ export class DescribeCustomizeRuleTestRequest extends $tea.Model {
1939
2002
  }
1940
2003
  }
1941
2004
 
1942
- export class DescribeCustomizeRuleTestResponseBody extends $tea.Model {
2005
+ export class DescribeCloudSiemEventsResponseBody extends $tea.Model {
1943
2006
  code?: number;
1944
- data?: DescribeCustomizeRuleTestResponseBodyData;
2007
+ data?: DescribeCloudSiemEventsResponseBodyData;
1945
2008
  message?: string;
1946
2009
  requestId?: string;
1947
2010
  success?: boolean;
@@ -1958,7 +2021,7 @@ export class DescribeCustomizeRuleTestResponseBody extends $tea.Model {
1958
2021
  static types(): { [key: string]: any } {
1959
2022
  return {
1960
2023
  code: 'number',
1961
- data: DescribeCustomizeRuleTestResponseBodyData,
2024
+ data: DescribeCloudSiemEventsResponseBodyData,
1962
2025
  message: 'string',
1963
2026
  requestId: 'string',
1964
2027
  success: 'boolean',
@@ -1970,10 +2033,10 @@ export class DescribeCustomizeRuleTestResponseBody extends $tea.Model {
1970
2033
  }
1971
2034
  }
1972
2035
 
1973
- export class DescribeCustomizeRuleTestResponse extends $tea.Model {
2036
+ export class DescribeCloudSiemEventsResponse extends $tea.Model {
1974
2037
  headers: { [key: string]: string };
1975
2038
  statusCode: number;
1976
- body: DescribeCustomizeRuleTestResponseBody;
2039
+ body: DescribeCloudSiemEventsResponseBody;
1977
2040
  static names(): { [key: string]: string } {
1978
2041
  return {
1979
2042
  headers: 'headers',
@@ -1986,7 +2049,7 @@ export class DescribeCustomizeRuleTestResponse extends $tea.Model {
1986
2049
  return {
1987
2050
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1988
2051
  statusCode: 'number',
1989
- body: DescribeCustomizeRuleTestResponseBody,
2052
+ body: DescribeCloudSiemEventsResponseBody,
1990
2053
  };
1991
2054
  }
1992
2055
 
@@ -1995,20 +2058,20 @@ export class DescribeCustomizeRuleTestResponse extends $tea.Model {
1995
2058
  }
1996
2059
  }
1997
2060
 
1998
- export class DescribeCustomizeRuleTestHistogramRequest extends $tea.Model {
1999
- id?: number;
2061
+ export class DescribeCustomizeRuleRequest extends $tea.Model {
2000
2062
  regionId?: string;
2063
+ ruleId?: number;
2001
2064
  static names(): { [key: string]: string } {
2002
2065
  return {
2003
- id: 'Id',
2004
2066
  regionId: 'RegionId',
2067
+ ruleId: 'RuleId',
2005
2068
  };
2006
2069
  }
2007
2070
 
2008
2071
  static types(): { [key: string]: any } {
2009
2072
  return {
2010
- id: 'number',
2011
2073
  regionId: 'string',
2074
+ ruleId: 'number',
2012
2075
  };
2013
2076
  }
2014
2077
 
@@ -2017,9 +2080,9 @@ export class DescribeCustomizeRuleTestHistogramRequest extends $tea.Model {
2017
2080
  }
2018
2081
  }
2019
2082
 
2020
- export class DescribeCustomizeRuleTestHistogramResponseBody extends $tea.Model {
2083
+ export class DescribeCustomizeRuleResponseBody extends $tea.Model {
2021
2084
  code?: number;
2022
- data?: DescribeCustomizeRuleTestHistogramResponseBodyData[];
2085
+ data?: DescribeCustomizeRuleResponseBodyData;
2023
2086
  message?: string;
2024
2087
  requestId?: string;
2025
2088
  success?: boolean;
@@ -2036,7 +2099,7 @@ export class DescribeCustomizeRuleTestHistogramResponseBody extends $tea.Model {
2036
2099
  static types(): { [key: string]: any } {
2037
2100
  return {
2038
2101
  code: 'number',
2039
- data: { 'type': 'array', 'itemType': DescribeCustomizeRuleTestHistogramResponseBodyData },
2102
+ data: DescribeCustomizeRuleResponseBodyData,
2040
2103
  message: 'string',
2041
2104
  requestId: 'string',
2042
2105
  success: 'boolean',
@@ -2048,10 +2111,10 @@ export class DescribeCustomizeRuleTestHistogramResponseBody extends $tea.Model {
2048
2111
  }
2049
2112
  }
2050
2113
 
2051
- export class DescribeCustomizeRuleTestHistogramResponse extends $tea.Model {
2114
+ export class DescribeCustomizeRuleResponse extends $tea.Model {
2052
2115
  headers: { [key: string]: string };
2053
2116
  statusCode: number;
2054
- body: DescribeCustomizeRuleTestHistogramResponseBody;
2117
+ body: DescribeCustomizeRuleResponseBody;
2055
2118
  static names(): { [key: string]: string } {
2056
2119
  return {
2057
2120
  headers: 'headers',
@@ -2064,7 +2127,7 @@ export class DescribeCustomizeRuleTestHistogramResponse extends $tea.Model {
2064
2127
  return {
2065
2128
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2066
2129
  statusCode: 'number',
2067
- body: DescribeCustomizeRuleTestHistogramResponseBody,
2130
+ body: DescribeCustomizeRuleResponseBody,
2068
2131
  };
2069
2132
  }
2070
2133
 
@@ -2073,28 +2136,16 @@ export class DescribeCustomizeRuleTestHistogramResponse extends $tea.Model {
2073
2136
  }
2074
2137
  }
2075
2138
 
2076
- export class DescribeDisposeAndPlaybookRequest extends $tea.Model {
2077
- currentPage?: number;
2078
- entityType?: string;
2079
- incidentUuid?: string;
2080
- pageSize?: number;
2139
+ export class DescribeCustomizeRuleCountRequest extends $tea.Model {
2081
2140
  regionId?: string;
2082
2141
  static names(): { [key: string]: string } {
2083
2142
  return {
2084
- currentPage: 'CurrentPage',
2085
- entityType: 'EntityType',
2086
- incidentUuid: 'IncidentUuid',
2087
- pageSize: 'PageSize',
2088
2143
  regionId: 'RegionId',
2089
2144
  };
2090
2145
  }
2091
2146
 
2092
2147
  static types(): { [key: string]: any } {
2093
2148
  return {
2094
- currentPage: 'number',
2095
- entityType: 'string',
2096
- incidentUuid: 'string',
2097
- pageSize: 'number',
2098
2149
  regionId: 'string',
2099
2150
  };
2100
2151
  }
@@ -2104,9 +2155,9 @@ export class DescribeDisposeAndPlaybookRequest extends $tea.Model {
2104
2155
  }
2105
2156
  }
2106
2157
 
2107
- export class DescribeDisposeAndPlaybookResponseBody extends $tea.Model {
2158
+ export class DescribeCustomizeRuleCountResponseBody extends $tea.Model {
2108
2159
  code?: number;
2109
- data?: DescribeDisposeAndPlaybookResponseBodyData;
2160
+ data?: DescribeCustomizeRuleCountResponseBodyData;
2110
2161
  message?: string;
2111
2162
  requestId?: string;
2112
2163
  success?: boolean;
@@ -2123,7 +2174,7 @@ export class DescribeDisposeAndPlaybookResponseBody extends $tea.Model {
2123
2174
  static types(): { [key: string]: any } {
2124
2175
  return {
2125
2176
  code: 'number',
2126
- data: DescribeDisposeAndPlaybookResponseBodyData,
2177
+ data: DescribeCustomizeRuleCountResponseBodyData,
2127
2178
  message: 'string',
2128
2179
  requestId: 'string',
2129
2180
  success: 'boolean',
@@ -2135,10 +2186,10 @@ export class DescribeDisposeAndPlaybookResponseBody extends $tea.Model {
2135
2186
  }
2136
2187
  }
2137
2188
 
2138
- export class DescribeDisposeAndPlaybookResponse extends $tea.Model {
2189
+ export class DescribeCustomizeRuleCountResponse extends $tea.Model {
2139
2190
  headers: { [key: string]: string };
2140
2191
  statusCode: number;
2141
- body: DescribeDisposeAndPlaybookResponseBody;
2192
+ body: DescribeCustomizeRuleCountResponseBody;
2142
2193
  static names(): { [key: string]: string } {
2143
2194
  return {
2144
2195
  headers: 'headers',
@@ -2151,7 +2202,7 @@ export class DescribeDisposeAndPlaybookResponse extends $tea.Model {
2151
2202
  return {
2152
2203
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2153
2204
  statusCode: 'number',
2154
- body: DescribeDisposeAndPlaybookResponseBody,
2205
+ body: DescribeCustomizeRuleCountResponseBody,
2155
2206
  };
2156
2207
  }
2157
2208
 
@@ -2160,23 +2211,20 @@ export class DescribeDisposeAndPlaybookResponse extends $tea.Model {
2160
2211
  }
2161
2212
  }
2162
2213
 
2163
- export class DescribeDisposeStrategyPlaybookRequest extends $tea.Model {
2164
- endTime?: number;
2214
+ export class DescribeCustomizeRuleTestRequest extends $tea.Model {
2215
+ id?: number;
2165
2216
  regionId?: string;
2166
- startTime?: number;
2167
2217
  static names(): { [key: string]: string } {
2168
2218
  return {
2169
- endTime: 'EndTime',
2219
+ id: 'Id',
2170
2220
  regionId: 'RegionId',
2171
- startTime: 'StartTime',
2172
2221
  };
2173
2222
  }
2174
2223
 
2175
2224
  static types(): { [key: string]: any } {
2176
2225
  return {
2177
- endTime: 'number',
2226
+ id: 'number',
2178
2227
  regionId: 'string',
2179
- startTime: 'number',
2180
2228
  };
2181
2229
  }
2182
2230
 
@@ -2185,9 +2233,9 @@ export class DescribeDisposeStrategyPlaybookRequest extends $tea.Model {
2185
2233
  }
2186
2234
  }
2187
2235
 
2188
- export class DescribeDisposeStrategyPlaybookResponseBody extends $tea.Model {
2236
+ export class DescribeCustomizeRuleTestResponseBody extends $tea.Model {
2189
2237
  code?: number;
2190
- data?: DescribeDisposeStrategyPlaybookResponseBodyData[];
2238
+ data?: DescribeCustomizeRuleTestResponseBodyData;
2191
2239
  message?: string;
2192
2240
  requestId?: string;
2193
2241
  success?: boolean;
@@ -2204,7 +2252,7 @@ export class DescribeDisposeStrategyPlaybookResponseBody extends $tea.Model {
2204
2252
  static types(): { [key: string]: any } {
2205
2253
  return {
2206
2254
  code: 'number',
2207
- data: { 'type': 'array', 'itemType': DescribeDisposeStrategyPlaybookResponseBodyData },
2255
+ data: DescribeCustomizeRuleTestResponseBodyData,
2208
2256
  message: 'string',
2209
2257
  requestId: 'string',
2210
2258
  success: 'boolean',
@@ -2216,10 +2264,10 @@ export class DescribeDisposeStrategyPlaybookResponseBody extends $tea.Model {
2216
2264
  }
2217
2265
  }
2218
2266
 
2219
- export class DescribeDisposeStrategyPlaybookResponse extends $tea.Model {
2267
+ export class DescribeCustomizeRuleTestResponse extends $tea.Model {
2220
2268
  headers: { [key: string]: string };
2221
2269
  statusCode: number;
2222
- body: DescribeDisposeStrategyPlaybookResponseBody;
2270
+ body: DescribeCustomizeRuleTestResponseBody;
2223
2271
  static names(): { [key: string]: string } {
2224
2272
  return {
2225
2273
  headers: 'headers',
@@ -2232,7 +2280,7 @@ export class DescribeDisposeStrategyPlaybookResponse extends $tea.Model {
2232
2280
  return {
2233
2281
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2234
2282
  statusCode: 'number',
2235
- body: DescribeDisposeStrategyPlaybookResponseBody,
2283
+ body: DescribeCustomizeRuleTestResponseBody,
2236
2284
  };
2237
2285
  }
2238
2286
 
@@ -2241,29 +2289,20 @@ export class DescribeDisposeStrategyPlaybookResponse extends $tea.Model {
2241
2289
  }
2242
2290
  }
2243
2291
 
2244
- export class DescribeEntityInfoRequest extends $tea.Model {
2245
- entityId?: number;
2246
- entityIdentity?: string;
2247
- incidentUuid?: string;
2292
+ export class DescribeCustomizeRuleTestHistogramRequest extends $tea.Model {
2293
+ id?: number;
2248
2294
  regionId?: string;
2249
- sophonTaskId?: string;
2250
2295
  static names(): { [key: string]: string } {
2251
2296
  return {
2252
- entityId: 'EntityId',
2253
- entityIdentity: 'EntityIdentity',
2254
- incidentUuid: 'IncidentUuid',
2297
+ id: 'Id',
2255
2298
  regionId: 'RegionId',
2256
- sophonTaskId: 'SophonTaskId',
2257
2299
  };
2258
2300
  }
2259
2301
 
2260
2302
  static types(): { [key: string]: any } {
2261
2303
  return {
2262
- entityId: 'number',
2263
- entityIdentity: 'string',
2264
- incidentUuid: 'string',
2304
+ id: 'number',
2265
2305
  regionId: 'string',
2266
- sophonTaskId: 'string',
2267
2306
  };
2268
2307
  }
2269
2308
 
@@ -2272,9 +2311,9 @@ export class DescribeEntityInfoRequest extends $tea.Model {
2272
2311
  }
2273
2312
  }
2274
2313
 
2275
- export class DescribeEntityInfoResponseBody extends $tea.Model {
2314
+ export class DescribeCustomizeRuleTestHistogramResponseBody extends $tea.Model {
2276
2315
  code?: number;
2277
- data?: DescribeEntityInfoResponseBodyData;
2316
+ data?: DescribeCustomizeRuleTestHistogramResponseBodyData[];
2278
2317
  message?: string;
2279
2318
  requestId?: string;
2280
2319
  success?: boolean;
@@ -2291,7 +2330,7 @@ export class DescribeEntityInfoResponseBody extends $tea.Model {
2291
2330
  static types(): { [key: string]: any } {
2292
2331
  return {
2293
2332
  code: 'number',
2294
- data: DescribeEntityInfoResponseBodyData,
2333
+ data: { 'type': 'array', 'itemType': DescribeCustomizeRuleTestHistogramResponseBodyData },
2295
2334
  message: 'string',
2296
2335
  requestId: 'string',
2297
2336
  success: 'boolean',
@@ -2303,10 +2342,10 @@ export class DescribeEntityInfoResponseBody extends $tea.Model {
2303
2342
  }
2304
2343
  }
2305
2344
 
2306
- export class DescribeEntityInfoResponse extends $tea.Model {
2345
+ export class DescribeCustomizeRuleTestHistogramResponse extends $tea.Model {
2307
2346
  headers: { [key: string]: string };
2308
2347
  statusCode: number;
2309
- body: DescribeEntityInfoResponseBody;
2348
+ body: DescribeCustomizeRuleTestHistogramResponseBody;
2310
2349
  static names(): { [key: string]: string } {
2311
2350
  return {
2312
2351
  headers: 'headers',
@@ -2319,7 +2358,7 @@ export class DescribeEntityInfoResponse extends $tea.Model {
2319
2358
  return {
2320
2359
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2321
2360
  statusCode: 'number',
2322
- body: DescribeEntityInfoResponseBody,
2361
+ body: DescribeCustomizeRuleTestHistogramResponseBody,
2323
2362
  };
2324
2363
  }
2325
2364
 
@@ -2328,16 +2367,28 @@ export class DescribeEntityInfoResponse extends $tea.Model {
2328
2367
  }
2329
2368
  }
2330
2369
 
2331
- export class DescribeEventCountByThreatLevelRequest extends $tea.Model {
2370
+ export class DescribeDisposeAndPlaybookRequest extends $tea.Model {
2371
+ currentPage?: number;
2372
+ entityType?: string;
2373
+ incidentUuid?: string;
2374
+ pageSize?: number;
2332
2375
  regionId?: string;
2333
2376
  static names(): { [key: string]: string } {
2334
2377
  return {
2378
+ currentPage: 'CurrentPage',
2379
+ entityType: 'EntityType',
2380
+ incidentUuid: 'IncidentUuid',
2381
+ pageSize: 'PageSize',
2335
2382
  regionId: 'RegionId',
2336
2383
  };
2337
2384
  }
2338
2385
 
2339
2386
  static types(): { [key: string]: any } {
2340
2387
  return {
2388
+ currentPage: 'number',
2389
+ entityType: 'string',
2390
+ incidentUuid: 'string',
2391
+ pageSize: 'number',
2341
2392
  regionId: 'string',
2342
2393
  };
2343
2394
  }
@@ -2347,9 +2398,9 @@ export class DescribeEventCountByThreatLevelRequest extends $tea.Model {
2347
2398
  }
2348
2399
  }
2349
2400
 
2350
- export class DescribeEventCountByThreatLevelResponseBody extends $tea.Model {
2401
+ export class DescribeDisposeAndPlaybookResponseBody extends $tea.Model {
2351
2402
  code?: number;
2352
- data?: DescribeEventCountByThreatLevelResponseBodyData;
2403
+ data?: DescribeDisposeAndPlaybookResponseBodyData;
2353
2404
  message?: string;
2354
2405
  requestId?: string;
2355
2406
  success?: boolean;
@@ -2366,7 +2417,7 @@ export class DescribeEventCountByThreatLevelResponseBody extends $tea.Model {
2366
2417
  static types(): { [key: string]: any } {
2367
2418
  return {
2368
2419
  code: 'number',
2369
- data: DescribeEventCountByThreatLevelResponseBodyData,
2420
+ data: DescribeDisposeAndPlaybookResponseBodyData,
2370
2421
  message: 'string',
2371
2422
  requestId: 'string',
2372
2423
  success: 'boolean',
@@ -2378,10 +2429,10 @@ export class DescribeEventCountByThreatLevelResponseBody extends $tea.Model {
2378
2429
  }
2379
2430
  }
2380
2431
 
2381
- export class DescribeEventCountByThreatLevelResponse extends $tea.Model {
2432
+ export class DescribeDisposeAndPlaybookResponse extends $tea.Model {
2382
2433
  headers: { [key: string]: string };
2383
2434
  statusCode: number;
2384
- body: DescribeEventCountByThreatLevelResponseBody;
2435
+ body: DescribeDisposeAndPlaybookResponseBody;
2385
2436
  static names(): { [key: string]: string } {
2386
2437
  return {
2387
2438
  headers: 'headers',
@@ -2394,7 +2445,7 @@ export class DescribeEventCountByThreatLevelResponse extends $tea.Model {
2394
2445
  return {
2395
2446
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2396
2447
  statusCode: 'number',
2397
- body: DescribeEventCountByThreatLevelResponseBody,
2448
+ body: DescribeDisposeAndPlaybookResponseBody,
2398
2449
  };
2399
2450
  }
2400
2451
 
@@ -2403,26 +2454,23 @@ export class DescribeEventCountByThreatLevelResponse extends $tea.Model {
2403
2454
  }
2404
2455
  }
2405
2456
 
2406
- export class DescribeEventDisposeRequest extends $tea.Model {
2407
- currentPage?: number;
2408
- incidentUuid?: string;
2409
- pageSize?: number;
2457
+ export class DescribeDisposeStrategyPlaybookRequest extends $tea.Model {
2458
+ endTime?: number;
2410
2459
  regionId?: string;
2460
+ startTime?: number;
2411
2461
  static names(): { [key: string]: string } {
2412
2462
  return {
2413
- currentPage: 'CurrentPage',
2414
- incidentUuid: 'IncidentUuid',
2415
- pageSize: 'PageSize',
2463
+ endTime: 'EndTime',
2416
2464
  regionId: 'RegionId',
2465
+ startTime: 'StartTime',
2417
2466
  };
2418
2467
  }
2419
2468
 
2420
2469
  static types(): { [key: string]: any } {
2421
2470
  return {
2422
- currentPage: 'number',
2423
- incidentUuid: 'string',
2424
- pageSize: 'number',
2471
+ endTime: 'number',
2425
2472
  regionId: 'string',
2473
+ startTime: 'number',
2426
2474
  };
2427
2475
  }
2428
2476
 
@@ -2431,9 +2479,9 @@ export class DescribeEventDisposeRequest extends $tea.Model {
2431
2479
  }
2432
2480
  }
2433
2481
 
2434
- export class DescribeEventDisposeResponseBody extends $tea.Model {
2482
+ export class DescribeDisposeStrategyPlaybookResponseBody extends $tea.Model {
2435
2483
  code?: number;
2436
- data?: DescribeEventDisposeResponseBodyData;
2484
+ data?: DescribeDisposeStrategyPlaybookResponseBodyData[];
2437
2485
  message?: string;
2438
2486
  requestId?: string;
2439
2487
  success?: boolean;
@@ -2450,7 +2498,7 @@ export class DescribeEventDisposeResponseBody extends $tea.Model {
2450
2498
  static types(): { [key: string]: any } {
2451
2499
  return {
2452
2500
  code: 'number',
2453
- data: DescribeEventDisposeResponseBodyData,
2501
+ data: { 'type': 'array', 'itemType': DescribeDisposeStrategyPlaybookResponseBodyData },
2454
2502
  message: 'string',
2455
2503
  requestId: 'string',
2456
2504
  success: 'boolean',
@@ -2462,10 +2510,10 @@ export class DescribeEventDisposeResponseBody extends $tea.Model {
2462
2510
  }
2463
2511
  }
2464
2512
 
2465
- export class DescribeEventDisposeResponse extends $tea.Model {
2513
+ export class DescribeDisposeStrategyPlaybookResponse extends $tea.Model {
2466
2514
  headers: { [key: string]: string };
2467
2515
  statusCode: number;
2468
- body: DescribeEventDisposeResponseBody;
2516
+ body: DescribeDisposeStrategyPlaybookResponseBody;
2469
2517
  static names(): { [key: string]: string } {
2470
2518
  return {
2471
2519
  headers: 'headers',
@@ -2478,7 +2526,7 @@ export class DescribeEventDisposeResponse extends $tea.Model {
2478
2526
  return {
2479
2527
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2480
2528
  statusCode: 'number',
2481
- body: DescribeEventDisposeResponseBody,
2529
+ body: DescribeDisposeStrategyPlaybookResponseBody,
2482
2530
  };
2483
2531
  }
2484
2532
 
@@ -2487,20 +2535,29 @@ export class DescribeEventDisposeResponse extends $tea.Model {
2487
2535
  }
2488
2536
  }
2489
2537
 
2490
- export class DescribeJobStatusRequest extends $tea.Model {
2538
+ export class DescribeEntityInfoRequest extends $tea.Model {
2539
+ entityId?: number;
2540
+ entityIdentity?: string;
2541
+ incidentUuid?: string;
2491
2542
  regionId?: string;
2492
- submitId?: string;
2543
+ sophonTaskId?: string;
2493
2544
  static names(): { [key: string]: string } {
2494
2545
  return {
2546
+ entityId: 'EntityId',
2547
+ entityIdentity: 'EntityIdentity',
2548
+ incidentUuid: 'IncidentUuid',
2495
2549
  regionId: 'RegionId',
2496
- submitId: 'SubmitId',
2550
+ sophonTaskId: 'SophonTaskId',
2497
2551
  };
2498
2552
  }
2499
2553
 
2500
2554
  static types(): { [key: string]: any } {
2501
2555
  return {
2556
+ entityId: 'number',
2557
+ entityIdentity: 'string',
2558
+ incidentUuid: 'string',
2502
2559
  regionId: 'string',
2503
- submitId: 'string',
2560
+ sophonTaskId: 'string',
2504
2561
  };
2505
2562
  }
2506
2563
 
@@ -2509,10 +2566,9 @@ export class DescribeJobStatusRequest extends $tea.Model {
2509
2566
  }
2510
2567
  }
2511
2568
 
2512
- export class DescribeJobStatusResponseBody extends $tea.Model {
2569
+ export class DescribeEntityInfoResponseBody extends $tea.Model {
2513
2570
  code?: number;
2514
- data?: DescribeJobStatusResponseBodyData;
2515
- errCode?: string;
2571
+ data?: DescribeEntityInfoResponseBodyData;
2516
2572
  message?: string;
2517
2573
  requestId?: string;
2518
2574
  success?: boolean;
@@ -2520,7 +2576,6 @@ export class DescribeJobStatusResponseBody extends $tea.Model {
2520
2576
  return {
2521
2577
  code: 'Code',
2522
2578
  data: 'Data',
2523
- errCode: 'ErrCode',
2524
2579
  message: 'Message',
2525
2580
  requestId: 'RequestId',
2526
2581
  success: 'Success',
@@ -2530,8 +2585,7 @@ export class DescribeJobStatusResponseBody extends $tea.Model {
2530
2585
  static types(): { [key: string]: any } {
2531
2586
  return {
2532
2587
  code: 'number',
2533
- data: DescribeJobStatusResponseBodyData,
2534
- errCode: 'string',
2588
+ data: DescribeEntityInfoResponseBodyData,
2535
2589
  message: 'string',
2536
2590
  requestId: 'string',
2537
2591
  success: 'boolean',
@@ -2543,10 +2597,250 @@ export class DescribeJobStatusResponseBody extends $tea.Model {
2543
2597
  }
2544
2598
  }
2545
2599
 
2546
- export class DescribeJobStatusResponse extends $tea.Model {
2600
+ export class DescribeEntityInfoResponse extends $tea.Model {
2547
2601
  headers: { [key: string]: string };
2548
2602
  statusCode: number;
2549
- body: DescribeJobStatusResponseBody;
2603
+ body: DescribeEntityInfoResponseBody;
2604
+ static names(): { [key: string]: string } {
2605
+ return {
2606
+ headers: 'headers',
2607
+ statusCode: 'statusCode',
2608
+ body: 'body',
2609
+ };
2610
+ }
2611
+
2612
+ static types(): { [key: string]: any } {
2613
+ return {
2614
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2615
+ statusCode: 'number',
2616
+ body: DescribeEntityInfoResponseBody,
2617
+ };
2618
+ }
2619
+
2620
+ constructor(map?: { [key: string]: any }) {
2621
+ super(map);
2622
+ }
2623
+ }
2624
+
2625
+ export class DescribeEventCountByThreatLevelRequest extends $tea.Model {
2626
+ regionId?: string;
2627
+ static names(): { [key: string]: string } {
2628
+ return {
2629
+ regionId: 'RegionId',
2630
+ };
2631
+ }
2632
+
2633
+ static types(): { [key: string]: any } {
2634
+ return {
2635
+ regionId: 'string',
2636
+ };
2637
+ }
2638
+
2639
+ constructor(map?: { [key: string]: any }) {
2640
+ super(map);
2641
+ }
2642
+ }
2643
+
2644
+ export class DescribeEventCountByThreatLevelResponseBody extends $tea.Model {
2645
+ code?: number;
2646
+ data?: DescribeEventCountByThreatLevelResponseBodyData;
2647
+ message?: string;
2648
+ requestId?: string;
2649
+ success?: boolean;
2650
+ static names(): { [key: string]: string } {
2651
+ return {
2652
+ code: 'Code',
2653
+ data: 'Data',
2654
+ message: 'Message',
2655
+ requestId: 'RequestId',
2656
+ success: 'Success',
2657
+ };
2658
+ }
2659
+
2660
+ static types(): { [key: string]: any } {
2661
+ return {
2662
+ code: 'number',
2663
+ data: DescribeEventCountByThreatLevelResponseBodyData,
2664
+ message: 'string',
2665
+ requestId: 'string',
2666
+ success: 'boolean',
2667
+ };
2668
+ }
2669
+
2670
+ constructor(map?: { [key: string]: any }) {
2671
+ super(map);
2672
+ }
2673
+ }
2674
+
2675
+ export class DescribeEventCountByThreatLevelResponse extends $tea.Model {
2676
+ headers: { [key: string]: string };
2677
+ statusCode: number;
2678
+ body: DescribeEventCountByThreatLevelResponseBody;
2679
+ static names(): { [key: string]: string } {
2680
+ return {
2681
+ headers: 'headers',
2682
+ statusCode: 'statusCode',
2683
+ body: 'body',
2684
+ };
2685
+ }
2686
+
2687
+ static types(): { [key: string]: any } {
2688
+ return {
2689
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2690
+ statusCode: 'number',
2691
+ body: DescribeEventCountByThreatLevelResponseBody,
2692
+ };
2693
+ }
2694
+
2695
+ constructor(map?: { [key: string]: any }) {
2696
+ super(map);
2697
+ }
2698
+ }
2699
+
2700
+ export class DescribeEventDisposeRequest extends $tea.Model {
2701
+ currentPage?: number;
2702
+ incidentUuid?: string;
2703
+ pageSize?: number;
2704
+ regionId?: string;
2705
+ static names(): { [key: string]: string } {
2706
+ return {
2707
+ currentPage: 'CurrentPage',
2708
+ incidentUuid: 'IncidentUuid',
2709
+ pageSize: 'PageSize',
2710
+ regionId: 'RegionId',
2711
+ };
2712
+ }
2713
+
2714
+ static types(): { [key: string]: any } {
2715
+ return {
2716
+ currentPage: 'number',
2717
+ incidentUuid: 'string',
2718
+ pageSize: 'number',
2719
+ regionId: 'string',
2720
+ };
2721
+ }
2722
+
2723
+ constructor(map?: { [key: string]: any }) {
2724
+ super(map);
2725
+ }
2726
+ }
2727
+
2728
+ export class DescribeEventDisposeResponseBody extends $tea.Model {
2729
+ code?: number;
2730
+ data?: DescribeEventDisposeResponseBodyData;
2731
+ message?: string;
2732
+ requestId?: string;
2733
+ success?: boolean;
2734
+ static names(): { [key: string]: string } {
2735
+ return {
2736
+ code: 'Code',
2737
+ data: 'Data',
2738
+ message: 'Message',
2739
+ requestId: 'RequestId',
2740
+ success: 'Success',
2741
+ };
2742
+ }
2743
+
2744
+ static types(): { [key: string]: any } {
2745
+ return {
2746
+ code: 'number',
2747
+ data: DescribeEventDisposeResponseBodyData,
2748
+ message: 'string',
2749
+ requestId: 'string',
2750
+ success: 'boolean',
2751
+ };
2752
+ }
2753
+
2754
+ constructor(map?: { [key: string]: any }) {
2755
+ super(map);
2756
+ }
2757
+ }
2758
+
2759
+ export class DescribeEventDisposeResponse extends $tea.Model {
2760
+ headers: { [key: string]: string };
2761
+ statusCode: number;
2762
+ body: DescribeEventDisposeResponseBody;
2763
+ static names(): { [key: string]: string } {
2764
+ return {
2765
+ headers: 'headers',
2766
+ statusCode: 'statusCode',
2767
+ body: 'body',
2768
+ };
2769
+ }
2770
+
2771
+ static types(): { [key: string]: any } {
2772
+ return {
2773
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2774
+ statusCode: 'number',
2775
+ body: DescribeEventDisposeResponseBody,
2776
+ };
2777
+ }
2778
+
2779
+ constructor(map?: { [key: string]: any }) {
2780
+ super(map);
2781
+ }
2782
+ }
2783
+
2784
+ export class DescribeJobStatusRequest extends $tea.Model {
2785
+ regionId?: string;
2786
+ submitId?: string;
2787
+ static names(): { [key: string]: string } {
2788
+ return {
2789
+ regionId: 'RegionId',
2790
+ submitId: 'SubmitId',
2791
+ };
2792
+ }
2793
+
2794
+ static types(): { [key: string]: any } {
2795
+ return {
2796
+ regionId: 'string',
2797
+ submitId: 'string',
2798
+ };
2799
+ }
2800
+
2801
+ constructor(map?: { [key: string]: any }) {
2802
+ super(map);
2803
+ }
2804
+ }
2805
+
2806
+ export class DescribeJobStatusResponseBody extends $tea.Model {
2807
+ code?: number;
2808
+ data?: DescribeJobStatusResponseBodyData;
2809
+ errCode?: string;
2810
+ message?: string;
2811
+ requestId?: string;
2812
+ success?: boolean;
2813
+ static names(): { [key: string]: string } {
2814
+ return {
2815
+ code: 'Code',
2816
+ data: 'Data',
2817
+ errCode: 'ErrCode',
2818
+ message: 'Message',
2819
+ requestId: 'RequestId',
2820
+ success: 'Success',
2821
+ };
2822
+ }
2823
+
2824
+ static types(): { [key: string]: any } {
2825
+ return {
2826
+ code: 'number',
2827
+ data: DescribeJobStatusResponseBodyData,
2828
+ errCode: 'string',
2829
+ message: 'string',
2830
+ requestId: 'string',
2831
+ success: 'boolean',
2832
+ };
2833
+ }
2834
+
2835
+ constructor(map?: { [key: string]: any }) {
2836
+ super(map);
2837
+ }
2838
+ }
2839
+
2840
+ export class DescribeJobStatusResponse extends $tea.Model {
2841
+ headers: { [key: string]: string };
2842
+ statusCode: number;
2843
+ body: DescribeJobStatusResponseBody;
2550
2844
  static names(): { [key: string]: string } {
2551
2845
  return {
2552
2846
  headers: 'headers',
@@ -6204,15 +6498,486 @@ export class DescribeAlertSourceWithEventResponseBodyData extends $tea.Model {
6204
6498
  sourceName?: string;
6205
6499
  static names(): { [key: string]: string } {
6206
6500
  return {
6207
- source: 'Source',
6208
- sourceName: 'SourceName',
6501
+ source: 'Source',
6502
+ sourceName: 'SourceName',
6503
+ };
6504
+ }
6505
+
6506
+ static types(): { [key: string]: any } {
6507
+ return {
6508
+ source: 'string',
6509
+ sourceName: 'string',
6510
+ };
6511
+ }
6512
+
6513
+ constructor(map?: { [key: string]: any }) {
6514
+ super(map);
6515
+ }
6516
+ }
6517
+
6518
+ export class DescribeAlertTypeResponseBodyData extends $tea.Model {
6519
+ alertType?: string;
6520
+ alertTypeMds?: string;
6521
+ static names(): { [key: string]: string } {
6522
+ return {
6523
+ alertType: 'AlertType',
6524
+ alertTypeMds: 'AlertTypeMds',
6525
+ };
6526
+ }
6527
+
6528
+ static types(): { [key: string]: any } {
6529
+ return {
6530
+ alertType: 'string',
6531
+ alertTypeMds: 'string',
6532
+ };
6533
+ }
6534
+
6535
+ constructor(map?: { [key: string]: any }) {
6536
+ super(map);
6537
+ }
6538
+ }
6539
+
6540
+ export class DescribeAlertsResponseBodyDataPageInfo extends $tea.Model {
6541
+ currentPage?: number;
6542
+ pageSize?: number;
6543
+ totalCount?: number;
6544
+ static names(): { [key: string]: string } {
6545
+ return {
6546
+ currentPage: 'CurrentPage',
6547
+ pageSize: 'PageSize',
6548
+ totalCount: 'TotalCount',
6549
+ };
6550
+ }
6551
+
6552
+ static types(): { [key: string]: any } {
6553
+ return {
6554
+ currentPage: 'number',
6555
+ pageSize: 'number',
6556
+ totalCount: 'number',
6557
+ };
6558
+ }
6559
+
6560
+ constructor(map?: { [key: string]: any }) {
6561
+ super(map);
6562
+ }
6563
+ }
6564
+
6565
+ export class DescribeAlertsResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
6566
+ key?: string;
6567
+ keyName?: string;
6568
+ values?: string;
6569
+ static names(): { [key: string]: string } {
6570
+ return {
6571
+ key: 'Key',
6572
+ keyName: 'KeyName',
6573
+ values: 'Values',
6574
+ };
6575
+ }
6576
+
6577
+ static types(): { [key: string]: any } {
6578
+ return {
6579
+ key: 'string',
6580
+ keyName: 'string',
6581
+ values: 'string',
6582
+ };
6583
+ }
6584
+
6585
+ constructor(map?: { [key: string]: any }) {
6586
+ super(map);
6587
+ }
6588
+ }
6589
+
6590
+ export class DescribeAlertsResponseBodyDataResponseData extends $tea.Model {
6591
+ alertDesc?: string;
6592
+ alertDescCode?: string;
6593
+ alertDescEn?: string;
6594
+ alertDetail?: string;
6595
+ alertInfoList?: DescribeAlertsResponseBodyDataResponseDataAlertInfoList[];
6596
+ alertLevel?: string;
6597
+ alertName?: string;
6598
+ alertNameCode?: string;
6599
+ alertNameEn?: string;
6600
+ alertSrcProd?: string;
6601
+ alertSrcProdModule?: string;
6602
+ alertTitle?: string;
6603
+ alertTitleEn?: string;
6604
+ alertType?: string;
6605
+ alertTypeCode?: string;
6606
+ alertTypeEn?: string;
6607
+ alertUuid?: string;
6608
+ assetList?: string;
6609
+ attCk?: string;
6610
+ cloudCode?: string;
6611
+ endTime?: string;
6612
+ gmtCreate?: string;
6613
+ gmtModified?: string;
6614
+ id?: number;
6615
+ incidentUuid?: string;
6616
+ isDefend?: string;
6617
+ logTime?: string;
6618
+ logUuid?: string;
6619
+ mainUserId?: number;
6620
+ occurTime?: string;
6621
+ startTime?: string;
6622
+ subUserId?: number;
6623
+ static names(): { [key: string]: string } {
6624
+ return {
6625
+ alertDesc: 'AlertDesc',
6626
+ alertDescCode: 'AlertDescCode',
6627
+ alertDescEn: 'AlertDescEn',
6628
+ alertDetail: 'AlertDetail',
6629
+ alertInfoList: 'AlertInfoList',
6630
+ alertLevel: 'AlertLevel',
6631
+ alertName: 'AlertName',
6632
+ alertNameCode: 'AlertNameCode',
6633
+ alertNameEn: 'AlertNameEn',
6634
+ alertSrcProd: 'AlertSrcProd',
6635
+ alertSrcProdModule: 'AlertSrcProdModule',
6636
+ alertTitle: 'AlertTitle',
6637
+ alertTitleEn: 'AlertTitleEn',
6638
+ alertType: 'AlertType',
6639
+ alertTypeCode: 'AlertTypeCode',
6640
+ alertTypeEn: 'AlertTypeEn',
6641
+ alertUuid: 'AlertUuid',
6642
+ assetList: 'AssetList',
6643
+ attCk: 'AttCk',
6644
+ cloudCode: 'CloudCode',
6645
+ endTime: 'EndTime',
6646
+ gmtCreate: 'GmtCreate',
6647
+ gmtModified: 'GmtModified',
6648
+ id: 'Id',
6649
+ incidentUuid: 'IncidentUuid',
6650
+ isDefend: 'IsDefend',
6651
+ logTime: 'LogTime',
6652
+ logUuid: 'LogUuid',
6653
+ mainUserId: 'MainUserId',
6654
+ occurTime: 'OccurTime',
6655
+ startTime: 'StartTime',
6656
+ subUserId: 'SubUserId',
6657
+ };
6658
+ }
6659
+
6660
+ static types(): { [key: string]: any } {
6661
+ return {
6662
+ alertDesc: 'string',
6663
+ alertDescCode: 'string',
6664
+ alertDescEn: 'string',
6665
+ alertDetail: 'string',
6666
+ alertInfoList: { 'type': 'array', 'itemType': DescribeAlertsResponseBodyDataResponseDataAlertInfoList },
6667
+ alertLevel: 'string',
6668
+ alertName: 'string',
6669
+ alertNameCode: 'string',
6670
+ alertNameEn: 'string',
6671
+ alertSrcProd: 'string',
6672
+ alertSrcProdModule: 'string',
6673
+ alertTitle: 'string',
6674
+ alertTitleEn: 'string',
6675
+ alertType: 'string',
6676
+ alertTypeCode: 'string',
6677
+ alertTypeEn: 'string',
6678
+ alertUuid: 'string',
6679
+ assetList: 'string',
6680
+ attCk: 'string',
6681
+ cloudCode: 'string',
6682
+ endTime: 'string',
6683
+ gmtCreate: 'string',
6684
+ gmtModified: 'string',
6685
+ id: 'number',
6686
+ incidentUuid: 'string',
6687
+ isDefend: 'string',
6688
+ logTime: 'string',
6689
+ logUuid: 'string',
6690
+ mainUserId: 'number',
6691
+ occurTime: 'string',
6692
+ startTime: 'string',
6693
+ subUserId: 'number',
6694
+ };
6695
+ }
6696
+
6697
+ constructor(map?: { [key: string]: any }) {
6698
+ super(map);
6699
+ }
6700
+ }
6701
+
6702
+ export class DescribeAlertsResponseBodyData extends $tea.Model {
6703
+ pageInfo?: DescribeAlertsResponseBodyDataPageInfo;
6704
+ responseData?: DescribeAlertsResponseBodyDataResponseData[];
6705
+ static names(): { [key: string]: string } {
6706
+ return {
6707
+ pageInfo: 'PageInfo',
6708
+ responseData: 'ResponseData',
6709
+ };
6710
+ }
6711
+
6712
+ static types(): { [key: string]: any } {
6713
+ return {
6714
+ pageInfo: DescribeAlertsResponseBodyDataPageInfo,
6715
+ responseData: { 'type': 'array', 'itemType': DescribeAlertsResponseBodyDataResponseData },
6716
+ };
6717
+ }
6718
+
6719
+ constructor(map?: { [key: string]: any }) {
6720
+ super(map);
6721
+ }
6722
+ }
6723
+
6724
+ export class DescribeAlertsCountResponseBodyData extends $tea.Model {
6725
+ all?: number;
6726
+ high?: number;
6727
+ low?: number;
6728
+ medium?: number;
6729
+ productNum?: number;
6730
+ static names(): { [key: string]: string } {
6731
+ return {
6732
+ all: 'All',
6733
+ high: 'High',
6734
+ low: 'Low',
6735
+ medium: 'Medium',
6736
+ productNum: 'ProductNum',
6737
+ };
6738
+ }
6739
+
6740
+ static types(): { [key: string]: any } {
6741
+ return {
6742
+ all: 'number',
6743
+ high: 'number',
6744
+ low: 'number',
6745
+ medium: 'number',
6746
+ productNum: 'number',
6747
+ };
6748
+ }
6749
+
6750
+ constructor(map?: { [key: string]: any }) {
6751
+ super(map);
6752
+ }
6753
+ }
6754
+
6755
+ export class DescribeAlertsWithEntityResponseBodyDataPageInfo extends $tea.Model {
6756
+ currentPage?: number;
6757
+ pageSize?: number;
6758
+ totalCount?: number;
6759
+ static names(): { [key: string]: string } {
6760
+ return {
6761
+ currentPage: 'CurrentPage',
6762
+ pageSize: 'PageSize',
6763
+ totalCount: 'TotalCount',
6764
+ };
6765
+ }
6766
+
6767
+ static types(): { [key: string]: any } {
6768
+ return {
6769
+ currentPage: 'number',
6770
+ pageSize: 'number',
6771
+ totalCount: 'number',
6772
+ };
6773
+ }
6774
+
6775
+ constructor(map?: { [key: string]: any }) {
6776
+ super(map);
6777
+ }
6778
+ }
6779
+
6780
+ export class DescribeAlertsWithEntityResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
6781
+ key?: string;
6782
+ keyName?: string;
6783
+ values?: string;
6784
+ static names(): { [key: string]: string } {
6785
+ return {
6786
+ key: 'Key',
6787
+ keyName: 'KeyName',
6788
+ values: 'Values',
6789
+ };
6790
+ }
6791
+
6792
+ static types(): { [key: string]: any } {
6793
+ return {
6794
+ key: 'string',
6795
+ keyName: 'string',
6796
+ values: 'string',
6797
+ };
6798
+ }
6799
+
6800
+ constructor(map?: { [key: string]: any }) {
6801
+ super(map);
6802
+ }
6803
+ }
6804
+
6805
+ export class DescribeAlertsWithEntityResponseBodyDataResponseData extends $tea.Model {
6806
+ alertDesc?: string;
6807
+ alertDescCode?: string;
6808
+ alertDescEn?: string;
6809
+ alertDetail?: string;
6810
+ alertInfoList?: DescribeAlertsWithEntityResponseBodyDataResponseDataAlertInfoList[];
6811
+ alertLevel?: string;
6812
+ alertName?: string;
6813
+ alertNameCode?: string;
6814
+ alertNameEn?: string;
6815
+ alertSrcProd?: string;
6816
+ alertSrcProdModule?: string;
6817
+ alertTitle?: string;
6818
+ alertTitleEn?: string;
6819
+ alertType?: string;
6820
+ alertTypeCode?: string;
6821
+ alertTypeEn?: string;
6822
+ alertUuid?: string;
6823
+ assetList?: string;
6824
+ attCk?: string;
6825
+ cloudCode?: string;
6826
+ endTime?: string;
6827
+ gmtCreate?: string;
6828
+ gmtModified?: string;
6829
+ id?: number;
6830
+ incidentUuid?: string;
6831
+ isDefend?: string;
6832
+ logTime?: string;
6833
+ logUuid?: string;
6834
+ mainUserId?: number;
6835
+ occurTime?: string;
6836
+ startTime?: string;
6837
+ subUserId?: number;
6838
+ static names(): { [key: string]: string } {
6839
+ return {
6840
+ alertDesc: 'AlertDesc',
6841
+ alertDescCode: 'AlertDescCode',
6842
+ alertDescEn: 'AlertDescEn',
6843
+ alertDetail: 'AlertDetail',
6844
+ alertInfoList: 'AlertInfoList',
6845
+ alertLevel: 'AlertLevel',
6846
+ alertName: 'AlertName',
6847
+ alertNameCode: 'AlertNameCode',
6848
+ alertNameEn: 'AlertNameEn',
6849
+ alertSrcProd: 'AlertSrcProd',
6850
+ alertSrcProdModule: 'AlertSrcProdModule',
6851
+ alertTitle: 'AlertTitle',
6852
+ alertTitleEn: 'AlertTitleEn',
6853
+ alertType: 'AlertType',
6854
+ alertTypeCode: 'AlertTypeCode',
6855
+ alertTypeEn: 'AlertTypeEn',
6856
+ alertUuid: 'AlertUuid',
6857
+ assetList: 'AssetList',
6858
+ attCk: 'AttCk',
6859
+ cloudCode: 'CloudCode',
6860
+ endTime: 'EndTime',
6861
+ gmtCreate: 'GmtCreate',
6862
+ gmtModified: 'GmtModified',
6863
+ id: 'Id',
6864
+ incidentUuid: 'IncidentUuid',
6865
+ isDefend: 'IsDefend',
6866
+ logTime: 'LogTime',
6867
+ logUuid: 'LogUuid',
6868
+ mainUserId: 'MainUserId',
6869
+ occurTime: 'OccurTime',
6870
+ startTime: 'StartTime',
6871
+ subUserId: 'SubUserId',
6872
+ };
6873
+ }
6874
+
6875
+ static types(): { [key: string]: any } {
6876
+ return {
6877
+ alertDesc: 'string',
6878
+ alertDescCode: 'string',
6879
+ alertDescEn: 'string',
6880
+ alertDetail: 'string',
6881
+ alertInfoList: { 'type': 'array', 'itemType': DescribeAlertsWithEntityResponseBodyDataResponseDataAlertInfoList },
6882
+ alertLevel: 'string',
6883
+ alertName: 'string',
6884
+ alertNameCode: 'string',
6885
+ alertNameEn: 'string',
6886
+ alertSrcProd: 'string',
6887
+ alertSrcProdModule: 'string',
6888
+ alertTitle: 'string',
6889
+ alertTitleEn: 'string',
6890
+ alertType: 'string',
6891
+ alertTypeCode: 'string',
6892
+ alertTypeEn: 'string',
6893
+ alertUuid: 'string',
6894
+ assetList: 'string',
6895
+ attCk: 'string',
6896
+ cloudCode: 'string',
6897
+ endTime: 'string',
6898
+ gmtCreate: 'string',
6899
+ gmtModified: 'string',
6900
+ id: 'number',
6901
+ incidentUuid: 'string',
6902
+ isDefend: 'string',
6903
+ logTime: 'string',
6904
+ logUuid: 'string',
6905
+ mainUserId: 'number',
6906
+ occurTime: 'string',
6907
+ startTime: 'string',
6908
+ subUserId: 'number',
6909
+ };
6910
+ }
6911
+
6912
+ constructor(map?: { [key: string]: any }) {
6913
+ super(map);
6914
+ }
6915
+ }
6916
+
6917
+ export class DescribeAlertsWithEntityResponseBodyData extends $tea.Model {
6918
+ pageInfo?: DescribeAlertsWithEntityResponseBodyDataPageInfo;
6919
+ responseData?: DescribeAlertsWithEntityResponseBodyDataResponseData[];
6920
+ static names(): { [key: string]: string } {
6921
+ return {
6922
+ pageInfo: 'PageInfo',
6923
+ responseData: 'ResponseData',
6924
+ };
6925
+ }
6926
+
6927
+ static types(): { [key: string]: any } {
6928
+ return {
6929
+ pageInfo: DescribeAlertsWithEntityResponseBodyDataPageInfo,
6930
+ responseData: { 'type': 'array', 'itemType': DescribeAlertsWithEntityResponseBodyDataResponseData },
6931
+ };
6932
+ }
6933
+
6934
+ constructor(map?: { [key: string]: any }) {
6935
+ super(map);
6936
+ }
6937
+ }
6938
+
6939
+ export class DescribeAlertsWithEventResponseBodyDataPageInfo extends $tea.Model {
6940
+ currentPage?: number;
6941
+ pageSize?: number;
6942
+ totalCount?: number;
6943
+ static names(): { [key: string]: string } {
6944
+ return {
6945
+ currentPage: 'CurrentPage',
6946
+ pageSize: 'PageSize',
6947
+ totalCount: 'TotalCount',
6948
+ };
6949
+ }
6950
+
6951
+ static types(): { [key: string]: any } {
6952
+ return {
6953
+ currentPage: 'number',
6954
+ pageSize: 'number',
6955
+ totalCount: 'number',
6956
+ };
6957
+ }
6958
+
6959
+ constructor(map?: { [key: string]: any }) {
6960
+ super(map);
6961
+ }
6962
+ }
6963
+
6964
+ export class DescribeAlertsWithEventResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
6965
+ key?: string;
6966
+ keyName?: string;
6967
+ values?: string;
6968
+ static names(): { [key: string]: string } {
6969
+ return {
6970
+ key: 'Key',
6971
+ keyName: 'KeyName',
6972
+ values: 'Values',
6209
6973
  };
6210
6974
  }
6211
6975
 
6212
6976
  static types(): { [key: string]: any } {
6213
6977
  return {
6214
- source: 'string',
6215
- sourceName: 'string',
6978
+ key: 'string',
6979
+ keyName: 'string',
6980
+ values: 'string',
6216
6981
  };
6217
6982
  }
6218
6983
 
@@ -6221,20 +6986,110 @@ export class DescribeAlertSourceWithEventResponseBodyData extends $tea.Model {
6221
6986
  }
6222
6987
  }
6223
6988
 
6224
- export class DescribeAlertTypeResponseBodyData extends $tea.Model {
6989
+ export class DescribeAlertsWithEventResponseBodyDataResponseData extends $tea.Model {
6990
+ alertDesc?: string;
6991
+ alertDescCode?: string;
6992
+ alertDescEn?: string;
6993
+ alertDetail?: string;
6994
+ alertInfoList?: DescribeAlertsWithEventResponseBodyDataResponseDataAlertInfoList[];
6995
+ alertLevel?: string;
6996
+ alertName?: string;
6997
+ alertNameCode?: string;
6998
+ alertNameEn?: string;
6999
+ alertSrcProd?: string;
7000
+ alertSrcProdModule?: string;
7001
+ alertTitle?: string;
7002
+ alertTitleEn?: string;
6225
7003
  alertType?: string;
6226
- alertTypeMds?: string;
7004
+ alertTypeCode?: string;
7005
+ alertTypeEn?: string;
7006
+ alertUuid?: string;
7007
+ assetList?: string;
7008
+ attCk?: string;
7009
+ cloudCode?: string;
7010
+ endTime?: string;
7011
+ gmtCreate?: string;
7012
+ gmtModified?: string;
7013
+ id?: number;
7014
+ incidentUuid?: string;
7015
+ isDefend?: string;
7016
+ logTime?: string;
7017
+ logUuid?: string;
7018
+ mainUserId?: number;
7019
+ occurTime?: string;
7020
+ startTime?: string;
7021
+ subUserId?: number;
6227
7022
  static names(): { [key: string]: string } {
6228
7023
  return {
7024
+ alertDesc: 'AlertDesc',
7025
+ alertDescCode: 'AlertDescCode',
7026
+ alertDescEn: 'AlertDescEn',
7027
+ alertDetail: 'AlertDetail',
7028
+ alertInfoList: 'AlertInfoList',
7029
+ alertLevel: 'AlertLevel',
7030
+ alertName: 'AlertName',
7031
+ alertNameCode: 'AlertNameCode',
7032
+ alertNameEn: 'AlertNameEn',
7033
+ alertSrcProd: 'AlertSrcProd',
7034
+ alertSrcProdModule: 'AlertSrcProdModule',
7035
+ alertTitle: 'AlertTitle',
7036
+ alertTitleEn: 'AlertTitleEn',
6229
7037
  alertType: 'AlertType',
6230
- alertTypeMds: 'AlertTypeMds',
7038
+ alertTypeCode: 'AlertTypeCode',
7039
+ alertTypeEn: 'AlertTypeEn',
7040
+ alertUuid: 'AlertUuid',
7041
+ assetList: 'AssetList',
7042
+ attCk: 'AttCk',
7043
+ cloudCode: 'CloudCode',
7044
+ endTime: 'EndTime',
7045
+ gmtCreate: 'GmtCreate',
7046
+ gmtModified: 'GmtModified',
7047
+ id: 'Id',
7048
+ incidentUuid: 'IncidentUuid',
7049
+ isDefend: 'IsDefend',
7050
+ logTime: 'LogTime',
7051
+ logUuid: 'LogUuid',
7052
+ mainUserId: 'MainUserId',
7053
+ occurTime: 'OccurTime',
7054
+ startTime: 'StartTime',
7055
+ subUserId: 'SubUserId',
6231
7056
  };
6232
7057
  }
6233
7058
 
6234
7059
  static types(): { [key: string]: any } {
6235
7060
  return {
7061
+ alertDesc: 'string',
7062
+ alertDescCode: 'string',
7063
+ alertDescEn: 'string',
7064
+ alertDetail: 'string',
7065
+ alertInfoList: { 'type': 'array', 'itemType': DescribeAlertsWithEventResponseBodyDataResponseDataAlertInfoList },
7066
+ alertLevel: 'string',
7067
+ alertName: 'string',
7068
+ alertNameCode: 'string',
7069
+ alertNameEn: 'string',
7070
+ alertSrcProd: 'string',
7071
+ alertSrcProdModule: 'string',
7072
+ alertTitle: 'string',
7073
+ alertTitleEn: 'string',
6236
7074
  alertType: 'string',
6237
- alertTypeMds: 'string',
7075
+ alertTypeCode: 'string',
7076
+ alertTypeEn: 'string',
7077
+ alertUuid: 'string',
7078
+ assetList: 'string',
7079
+ attCk: 'string',
7080
+ cloudCode: 'string',
7081
+ endTime: 'string',
7082
+ gmtCreate: 'string',
7083
+ gmtModified: 'string',
7084
+ id: 'number',
7085
+ incidentUuid: 'string',
7086
+ isDefend: 'string',
7087
+ logTime: 'string',
7088
+ logUuid: 'string',
7089
+ mainUserId: 'number',
7090
+ occurTime: 'string',
7091
+ startTime: 'string',
7092
+ subUserId: 'number',
6238
7093
  };
6239
7094
  }
6240
7095
 
@@ -6243,29 +7098,20 @@ export class DescribeAlertTypeResponseBodyData extends $tea.Model {
6243
7098
  }
6244
7099
  }
6245
7100
 
6246
- export class DescribeAlertsCountResponseBodyData extends $tea.Model {
6247
- all?: number;
6248
- high?: number;
6249
- low?: number;
6250
- medium?: number;
6251
- productNum?: number;
7101
+ export class DescribeAlertsWithEventResponseBodyData extends $tea.Model {
7102
+ pageInfo?: DescribeAlertsWithEventResponseBodyDataPageInfo;
7103
+ responseData?: DescribeAlertsWithEventResponseBodyDataResponseData[];
6252
7104
  static names(): { [key: string]: string } {
6253
7105
  return {
6254
- all: 'All',
6255
- high: 'High',
6256
- low: 'Low',
6257
- medium: 'Medium',
6258
- productNum: 'ProductNum',
7106
+ pageInfo: 'PageInfo',
7107
+ responseData: 'ResponseData',
6259
7108
  };
6260
7109
  }
6261
7110
 
6262
7111
  static types(): { [key: string]: any } {
6263
7112
  return {
6264
- all: 'number',
6265
- high: 'number',
6266
- low: 'number',
6267
- medium: 'number',
6268
- productNum: 'number',
7113
+ pageInfo: DescribeAlertsWithEventResponseBodyDataPageInfo,
7114
+ responseData: { 'type': 'array', 'itemType': DescribeAlertsWithEventResponseBodyDataResponseData },
6269
7115
  };
6270
7116
  }
6271
7117
 
@@ -9078,6 +9924,75 @@ export default class Client extends OpenApi {
9078
9924
  return await this.describeAlertTypeWithOptions(request, runtime);
9079
9925
  }
9080
9926
 
9927
+ async describeAlertsWithOptions(request: DescribeAlertsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsResponse> {
9928
+ Util.validateModel(request);
9929
+ let body : {[key: string ]: any} = { };
9930
+ if (!Util.isUnset(request.alertTitle)) {
9931
+ body["AlertTitle"] = request.alertTitle;
9932
+ }
9933
+
9934
+ if (!Util.isUnset(request.alertUuid)) {
9935
+ body["AlertUuid"] = request.alertUuid;
9936
+ }
9937
+
9938
+ if (!Util.isUnset(request.currentPage)) {
9939
+ body["CurrentPage"] = request.currentPage;
9940
+ }
9941
+
9942
+ if (!Util.isUnset(request.endTime)) {
9943
+ body["EndTime"] = request.endTime;
9944
+ }
9945
+
9946
+ if (!Util.isUnset(request.isDefend)) {
9947
+ body["IsDefend"] = request.isDefend;
9948
+ }
9949
+
9950
+ if (!Util.isUnset(request.level)) {
9951
+ body["Level"] = request.level;
9952
+ }
9953
+
9954
+ if (!Util.isUnset(request.pageSize)) {
9955
+ body["PageSize"] = request.pageSize;
9956
+ }
9957
+
9958
+ if (!Util.isUnset(request.regionId)) {
9959
+ body["RegionId"] = request.regionId;
9960
+ }
9961
+
9962
+ if (!Util.isUnset(request.source)) {
9963
+ body["Source"] = request.source;
9964
+ }
9965
+
9966
+ if (!Util.isUnset(request.startTime)) {
9967
+ body["StartTime"] = request.startTime;
9968
+ }
9969
+
9970
+ if (!Util.isUnset(request.subUserId)) {
9971
+ body["SubUserId"] = request.subUserId;
9972
+ }
9973
+
9974
+ let req = new $OpenApi.OpenApiRequest({
9975
+ body: OpenApiUtil.parseToMap(body),
9976
+ });
9977
+ let params = new $OpenApi.Params({
9978
+ action: "DescribeAlerts",
9979
+ version: "2022-06-16",
9980
+ protocol: "HTTPS",
9981
+ pathname: "/",
9982
+ method: "POST",
9983
+ authType: "AK",
9984
+ style: "RPC",
9985
+ reqBodyType: "formData",
9986
+ bodyType: "json",
9987
+ });
9988
+ return $tea.cast<DescribeAlertsResponse>(await this.callApi(params, req, runtime), new DescribeAlertsResponse({}));
9989
+ }
9990
+
9991
+ async describeAlerts(request: DescribeAlertsRequest): Promise<DescribeAlertsResponse> {
9992
+ let runtime = new $Util.RuntimeOptions({ });
9993
+ return await this.describeAlertsWithOptions(request, runtime);
9994
+ }
9995
+
9081
9996
  async describeAlertsCountWithOptions(request: DescribeAlertsCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsCountResponse> {
9082
9997
  Util.validateModel(request);
9083
9998
  let body : {[key: string ]: any} = { };
@@ -9115,6 +10030,116 @@ export default class Client extends OpenApi {
9115
10030
  return await this.describeAlertsCountWithOptions(request, runtime);
9116
10031
  }
9117
10032
 
10033
+ async describeAlertsWithEntityWithOptions(request: DescribeAlertsWithEntityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsWithEntityResponse> {
10034
+ Util.validateModel(request);
10035
+ let body : {[key: string ]: any} = { };
10036
+ if (!Util.isUnset(request.currentPage)) {
10037
+ body["CurrentPage"] = request.currentPage;
10038
+ }
10039
+
10040
+ if (!Util.isUnset(request.entityId)) {
10041
+ body["EntityId"] = request.entityId;
10042
+ }
10043
+
10044
+ if (!Util.isUnset(request.incidentUuid)) {
10045
+ body["IncidentUuid"] = request.incidentUuid;
10046
+ }
10047
+
10048
+ if (!Util.isUnset(request.pageSize)) {
10049
+ body["PageSize"] = request.pageSize;
10050
+ }
10051
+
10052
+ if (!Util.isUnset(request.regionId)) {
10053
+ body["RegionId"] = request.regionId;
10054
+ }
10055
+
10056
+ if (!Util.isUnset(request.sophonTaskId)) {
10057
+ body["SophonTaskId"] = request.sophonTaskId;
10058
+ }
10059
+
10060
+ let req = new $OpenApi.OpenApiRequest({
10061
+ body: OpenApiUtil.parseToMap(body),
10062
+ });
10063
+ let params = new $OpenApi.Params({
10064
+ action: "DescribeAlertsWithEntity",
10065
+ version: "2022-06-16",
10066
+ protocol: "HTTPS",
10067
+ pathname: "/",
10068
+ method: "POST",
10069
+ authType: "AK",
10070
+ style: "RPC",
10071
+ reqBodyType: "formData",
10072
+ bodyType: "json",
10073
+ });
10074
+ return $tea.cast<DescribeAlertsWithEntityResponse>(await this.callApi(params, req, runtime), new DescribeAlertsWithEntityResponse({}));
10075
+ }
10076
+
10077
+ async describeAlertsWithEntity(request: DescribeAlertsWithEntityRequest): Promise<DescribeAlertsWithEntityResponse> {
10078
+ let runtime = new $Util.RuntimeOptions({ });
10079
+ return await this.describeAlertsWithEntityWithOptions(request, runtime);
10080
+ }
10081
+
10082
+ async describeAlertsWithEventWithOptions(request: DescribeAlertsWithEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsWithEventResponse> {
10083
+ Util.validateModel(request);
10084
+ let body : {[key: string ]: any} = { };
10085
+ if (!Util.isUnset(request.alertTitle)) {
10086
+ body["AlertTitle"] = request.alertTitle;
10087
+ }
10088
+
10089
+ if (!Util.isUnset(request.currentPage)) {
10090
+ body["CurrentPage"] = request.currentPage;
10091
+ }
10092
+
10093
+ if (!Util.isUnset(request.incidentUuid)) {
10094
+ body["IncidentUuid"] = request.incidentUuid;
10095
+ }
10096
+
10097
+ if (!Util.isUnset(request.isDefend)) {
10098
+ body["IsDefend"] = request.isDefend;
10099
+ }
10100
+
10101
+ if (!Util.isUnset(request.level)) {
10102
+ body["Level"] = request.level;
10103
+ }
10104
+
10105
+ if (!Util.isUnset(request.pageSize)) {
10106
+ body["PageSize"] = request.pageSize;
10107
+ }
10108
+
10109
+ if (!Util.isUnset(request.regionId)) {
10110
+ body["RegionId"] = request.regionId;
10111
+ }
10112
+
10113
+ if (!Util.isUnset(request.source)) {
10114
+ body["Source"] = request.source;
10115
+ }
10116
+
10117
+ if (!Util.isUnset(request.subUserId)) {
10118
+ body["SubUserId"] = request.subUserId;
10119
+ }
10120
+
10121
+ let req = new $OpenApi.OpenApiRequest({
10122
+ body: OpenApiUtil.parseToMap(body),
10123
+ });
10124
+ let params = new $OpenApi.Params({
10125
+ action: "DescribeAlertsWithEvent",
10126
+ version: "2022-06-16",
10127
+ protocol: "HTTPS",
10128
+ pathname: "/",
10129
+ method: "POST",
10130
+ authType: "AK",
10131
+ style: "RPC",
10132
+ reqBodyType: "formData",
10133
+ bodyType: "json",
10134
+ });
10135
+ return $tea.cast<DescribeAlertsWithEventResponse>(await this.callApi(params, req, runtime), new DescribeAlertsWithEventResponse({}));
10136
+ }
10137
+
10138
+ async describeAlertsWithEvent(request: DescribeAlertsWithEventRequest): Promise<DescribeAlertsWithEventResponse> {
10139
+ let runtime = new $Util.RuntimeOptions({ });
10140
+ return await this.describeAlertsWithEventWithOptions(request, runtime);
10141
+ }
10142
+
9118
10143
  async describeAttackTimeLineWithOptions(request: DescribeAttackTimeLineRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAttackTimeLineResponse> {
9119
10144
  Util.validateModel(request);
9120
10145
  let body : {[key: string ]: any} = { };