|
70 | 70 | incident_attack_class: string |
71 | 71 | incident_escalated: string |
72 | 72 | incident_sub_type: string |
73 | | - iris_incident_version: number |
74 | 73 | iris_notifications: boolean |
75 | 74 | snooze_status: |
76 | 75 | period_ms: number |
@@ -357,7 +356,6 @@ paths: |
357 | 356 | incident_attack_class: string |
358 | 357 | incident_escalated: string |
359 | 358 | incident_sub_type: string |
360 | | - iris_incident_version: number |
361 | 359 | iris_notifications: boolean |
362 | 360 | snooze_status: |
363 | 361 | period_ms: number |
@@ -478,7 +476,6 @@ paths: |
478 | 476 | incident_attack_class: string |
479 | 477 | incident_escalated: string |
480 | 478 | incident_sub_type: string |
481 | | - iris_incident_version: number |
482 | 479 | iris_notifications: boolean |
483 | 480 | snooze_status: |
484 | 481 | period_ms: number |
@@ -615,7 +612,6 @@ paths: |
615 | 612 | incident_attack_class: string |
616 | 613 | incident_escalated: string |
617 | 614 | incident_sub_type: string |
618 | | - iris_incident_version: number |
619 | 615 | iris_notifications: boolean |
620 | 616 | snooze_status: |
621 | 617 | period_ms: number |
@@ -1002,7 +998,97 @@ paths: |
1002 | 998 | $ref: '#/components/schemas/IncidentId' |
1003 | 999 | name: incident_id |
1004 | 1000 | in: path |
1005 | | - required: true |
| 1001 | + required: true |
| 1002 | + /iris/v3/incident_filters: |
| 1003 | + get: |
| 1004 | + summary: Get incident filters |
| 1005 | + tags: |
| 1006 | + - Console |
| 1007 | + responses: |
| 1008 | + '200': |
| 1009 | + description: OK |
| 1010 | + content: |
| 1011 | + application/json: |
| 1012 | + schema: |
| 1013 | + title: Incident Filters |
| 1014 | + type: object |
| 1015 | + properties: |
| 1016 | + class: |
| 1017 | + type: array |
| 1018 | + items: |
| 1019 | + type: string |
| 1020 | + detection_source: |
| 1021 | + type: array |
| 1022 | + items: |
| 1023 | + type: string |
| 1024 | + escalated: |
| 1025 | + type: array |
| 1026 | + items: |
| 1027 | + type: boolean |
| 1028 | + threat_level: |
| 1029 | + type: array |
| 1030 | + items: |
| 1031 | + type: string |
| 1032 | + required: |
| 1033 | + - class |
| 1034 | + - detection_source |
| 1035 | + - escalated |
| 1036 | + - threat_level |
| 1037 | + examples: |
| 1038 | + 200 OK: |
| 1039 | + value: |
| 1040 | + class: |
| 1041 | + - web-log-analytics |
| 1042 | + - suspicious-activity |
| 1043 | + - brute-force |
| 1044 | + - application-attack |
| 1045 | + - recon |
| 1046 | + - trojan-activity |
| 1047 | + - policy-violation |
| 1048 | + - info-leak |
| 1049 | + - test |
| 1050 | + - base |
| 1051 | + - worm-activity |
| 1052 | + - defensive-action |
| 1053 | + - containment-action |
| 1054 | + - denial-of-service |
| 1055 | + - log-policy |
| 1056 | + - pending |
| 1057 | + - misconfiguration |
| 1058 | + - log-review |
| 1059 | + - 'authentication:activity' |
| 1060 | + - 'admin:activity' |
| 1061 | + detection_source: |
| 1062 | + - Network IDS |
| 1063 | + - GuardDuty |
| 1064 | + - Log Mgmt |
| 1065 | + - Web App IDS |
| 1066 | + - Web Log Analytics |
| 1067 | + - Log Review |
| 1068 | + - Correlated Log |
| 1069 | + - Firewall |
| 1070 | + - Manual |
| 1071 | + - N/A |
| 1072 | + escalated: |
| 1073 | + - true |
| 1074 | + - false |
| 1075 | + threat_level: |
| 1076 | + - Info |
| 1077 | + - Low |
| 1078 | + - Medium |
| 1079 | + - High |
| 1080 | + - Critical |
| 1081 | + '401': |
| 1082 | + description: Unauthorized |
| 1083 | + operationId: get_incident_filters |
| 1084 | + description: Fetch the fields and values used to filter incidents |
| 1085 | + security: |
| 1086 | + - X-AIMS-Auth-Token: [] |
| 1087 | + x-code-samples: |
| 1088 | + - lang: Request Sample |
| 1089 | + source: | |
| 1090 | + curl -H "x-aims-auth-token: ${TOKEN}" -X GET https://api.cloudinsight.alertlogic.com/iris/v3/incident_filters |
| 1091 | + parameters: [] |
1006 | 1092 | components: |
1007 | 1093 | schemas: |
1008 | 1094 | IncidentId: |
@@ -1260,3 +1346,5 @@ tags: |
1260 | 1346 | description: Multiple account operations |
1261 | 1347 | - name: UI operations |
1262 | 1348 | description: IRIS operations available through the console |
| 1349 | + - name: Console |
| 1350 | + description: IRIS helpers available for console |
0 commit comments