Skip to content
Open
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: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60098,7 +60098,7 @@ components:
- TIMESTAMP_DESCENDING
SecurityMonitoringStandardDataSource:
default: logs
description: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
description: Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
enum:
- logs
- audit
Expand All @@ -60107,6 +60107,7 @@ components:
- security_runtime
- network
- events
- security_signals
example: logs
type: string
x-enum-varnames:
Expand All @@ -60117,6 +60118,7 @@ components:
- SECURITY_RUNTIME
- NETWORK
- EVENTS
- SECURITY_SIGNALS
SecurityMonitoringStandardRuleCreatePayload:
description: Create a new rule.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import java.util.Set;

/**
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
* deprecated in favor of <code>spans</code>.
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
*/
@JsonSerialize(
using =
Expand All @@ -30,7 +30,14 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
private static final Set<String> allowedValues =
new HashSet<String>(
Arrays.asList(
"logs", "audit", "app_sec_spans", "spans", "security_runtime", "network", "events"));
"logs",
"audit",
"app_sec_spans",
"spans",
"security_runtime",
"network",
"events",
"security_signals"));

public static final SecurityMonitoringStandardDataSource LOGS =
new SecurityMonitoringStandardDataSource("logs");
Expand All @@ -46,6 +53,8 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
new SecurityMonitoringStandardDataSource("network");
public static final SecurityMonitoringStandardDataSource EVENTS =
new SecurityMonitoringStandardDataSource("events");
public static final SecurityMonitoringStandardDataSource SECURITY_SIGNALS =
new SecurityMonitoringStandardDataSource("security_signals");

SecurityMonitoringStandardDataSource(String value) {
super(value, allowedValues);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ public SecurityMonitoringStandardRuleQuery dataSource(
}

/**
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
* deprecated in favor of <code>spans</code>.
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
*
* @return dataSource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ public ThreatHuntingJobQuery dataSource(SecurityMonitoringStandardDataSource dat
}

/**
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
* deprecated in favor of <code>spans</code>.
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
*
* @return dataSource
*/
Expand Down
Loading