@@ -14,7 +14,7 @@ import (
1414// Signal-based notification rules can filter signals based on rule types application_security, log_detection,
1515// workload_security, signal_correlation, cloud_configuration and infrastructure_configuration.
1616// Vulnerability-based notification rules can filter vulnerabilities based on rule types application_code_vulnerability,
17- // application_library_vulnerability, attack_path, container_image_vulnerability, identity_risk, misconfiguration, and api_security .
17+ // application_library_vulnerability, attack_path, container_image_vulnerability, identity_risk, misconfiguration, api_security, host_vulnerability and iac_misconfiguration .
1818type RuleTypesItems string
1919
2020// List of RuleTypesItems.
@@ -32,6 +32,8 @@ const (
3232 RULETYPESITEMS_IDENTITY_RISK RuleTypesItems = "identity_risk"
3333 RULETYPESITEMS_MISCONFIGURATION RuleTypesItems = "misconfiguration"
3434 RULETYPESITEMS_API_SECURITY RuleTypesItems = "api_security"
35+ RULETYPESITEMS_HOST_VULNERABILITY RuleTypesItems = "host_vulnerability"
36+ RULETYPESITEMS_IAC_MISCONFIGURATION RuleTypesItems = "iac_misconfiguration"
3537)
3638
3739var allowedRuleTypesItemsEnumValues = []RuleTypesItems {
@@ -48,6 +50,8 @@ var allowedRuleTypesItemsEnumValues = []RuleTypesItems{
4850 RULETYPESITEMS_IDENTITY_RISK ,
4951 RULETYPESITEMS_MISCONFIGURATION ,
5052 RULETYPESITEMS_API_SECURITY ,
53+ RULETYPESITEMS_HOST_VULNERABILITY ,
54+ RULETYPESITEMS_IAC_MISCONFIGURATION ,
5155}
5256
5357// GetAllowedValues reeturns the list of possible values.
0 commit comments