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
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58514,7 +58514,7 @@ components:
- TIMESTAMP_DESCENDING
SecurityMonitoringStandardDataSource:
default: logs
description: Source of events, either logs, audit trail, or Datadog events.
description: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
enum:
- logs
- audit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
import java.util.HashSet;
import java.util.Set;

/** Source of events, either logs, audit trail, or Datadog events. */
/**
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
* deprecated in favor of <code>spans</code>.
*/
@JsonSerialize(
using =
SecurityMonitoringStandardDataSource.SecurityMonitoringStandardDataSourceSerializer.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ public SecurityMonitoringStandardRuleQuery dataSource(
}

/**
* Source of events, either logs, audit trail, or Datadog events.
* Source of events, either logs, audit trail, 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,7 +91,8 @@ public ThreatHuntingJobQuery dataSource(SecurityMonitoringStandardDataSource dat
}

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