diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 59c7b8b08..6215660a0 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -43960,6 +43960,8 @@ components: - false_positive - testing_or_maintenance - investigated_case_opened + - true_positive_benign + - true_positive_malicious - other type: string x-enum-varnames: @@ -43967,6 +43969,8 @@ components: - FALSE_POSITIVE - TESTING_OR_MAINTENANCE - INVESTIGATED_CASE_OPENED + - TRUE_POSITIVE_BENIGN + - TRUE_POSITIVE_MALICIOUS - OTHER SecurityMonitoringSignalAssigneeUpdateAttributes: description: Attributes describing the new assignee of a security signal. diff --git a/src/datadogV2/model/model_security_monitoring_signal_archive_reason.rs b/src/datadogV2/model/model_security_monitoring_signal_archive_reason.rs index 8071c6833..7ece12e73 100644 --- a/src/datadogV2/model/model_security_monitoring_signal_archive_reason.rs +++ b/src/datadogV2/model/model_security_monitoring_signal_archive_reason.rs @@ -11,6 +11,8 @@ pub enum SecurityMonitoringSignalArchiveReason { FALSE_POSITIVE, TESTING_OR_MAINTENANCE, INVESTIGATED_CASE_OPENED, + TRUE_POSITIVE_BENIGN, + TRUE_POSITIVE_MALICIOUS, OTHER, UnparsedObject(crate::datadog::UnparsedObject), } @@ -22,6 +24,8 @@ impl ToString for SecurityMonitoringSignalArchiveReason { Self::FALSE_POSITIVE => String::from("false_positive"), Self::TESTING_OR_MAINTENANCE => String::from("testing_or_maintenance"), Self::INVESTIGATED_CASE_OPENED => String::from("investigated_case_opened"), + Self::TRUE_POSITIVE_BENIGN => String::from("true_positive_benign"), + Self::TRUE_POSITIVE_MALICIOUS => String::from("true_positive_malicious"), Self::OTHER => String::from("other"), Self::UnparsedObject(v) => v.value.to_string(), } @@ -51,6 +55,8 @@ impl<'de> Deserialize<'de> for SecurityMonitoringSignalArchiveReason { "false_positive" => Self::FALSE_POSITIVE, "testing_or_maintenance" => Self::TESTING_OR_MAINTENANCE, "investigated_case_opened" => Self::INVESTIGATED_CASE_OPENED, + "true_positive_benign" => Self::TRUE_POSITIVE_BENIGN, + "true_positive_malicious" => Self::TRUE_POSITIVE_MALICIOUS, "other" => Self::OTHER, _ => Self::UnparsedObject(crate::datadog::UnparsedObject { value: serde_json::Value::String(s.into()),