Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "f391bf6",
"generated": "2025-08-06 15:15:59.306"
"spec_repo_commit": "a6f5281",
"generated": "2025-08-06 17:44:35.840"
}
6 changes: 5 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33749,7 +33749,7 @@ components:
rule types application_code_vulnerability,

application_library_vulnerability, attack_path, container_image_vulnerability,
identity_risk, misconfiguration, and api_security.'
identity_risk, misconfiguration, api_security, host_vulnerability and iac_misconfiguration.'
enum:
- application_security
- log_detection
Expand All @@ -33764,6 +33764,8 @@ components:
- identity_risk
- misconfiguration
- api_security
- host_vulnerability
- iac_misconfiguration
type: string
x-enum-varnames:
- APPLICATION_SECURITY
Expand All @@ -33779,6 +33781,8 @@ components:
- IDENTITY_RISK
- MISCONFIGURATION
- API_SECURITY
- HOST_VULNERABILITY
- IAC_MISCONFIGURATION
RuleUser:
description: User creating or modifying a rule.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* signal_correlation, cloud_configuration and infrastructure_configuration. Vulnerability-based
* notification rules can filter vulnerabilities based on rule types application_code_vulnerability,
* application_library_vulnerability, attack_path, container_image_vulnerability, identity_risk,
* misconfiguration, and api_security.
* misconfiguration, api_security, host_vulnerability and iac_misconfiguration.
*/
@JsonSerialize(using = RuleTypesItems.RuleTypesItemsSerializer.class)
public class RuleTypesItems extends ModelEnum<String> {
Expand All @@ -44,7 +44,9 @@ public class RuleTypesItems extends ModelEnum<String> {
"container_image_vulnerability",
"identity_risk",
"misconfiguration",
"api_security"));
"api_security",
"host_vulnerability",
"iac_misconfiguration"));

public static final RuleTypesItems APPLICATION_SECURITY =
new RuleTypesItems("application_security");
Expand All @@ -65,6 +67,9 @@ public class RuleTypesItems extends ModelEnum<String> {
public static final RuleTypesItems IDENTITY_RISK = new RuleTypesItems("identity_risk");
public static final RuleTypesItems MISCONFIGURATION = new RuleTypesItems("misconfiguration");
public static final RuleTypesItems API_SECURITY = new RuleTypesItems("api_security");
public static final RuleTypesItems HOST_VULNERABILITY = new RuleTypesItems("host_vulnerability");
public static final RuleTypesItems IAC_MISCONFIGURATION =
new RuleTypesItems("iac_misconfiguration");

RuleTypesItems(String value) {
super(value, allowedValues);
Expand Down