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
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 @@ -7,7 +7,7 @@
import { UnparsedObject } from "../../datadog-api-client-common/util";

/**
* Source of events, either logs, audit trail, or Datadog events.
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
*/

export type SecurityMonitoringStandardDataSource =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class SecurityMonitoringStandardRuleQuery {
*/
"customQueryExtension"?: string;
/**
* Source of events, either logs, audit trail, or Datadog events.
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
*/
"dataSource"?: SecurityMonitoringStandardDataSource;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class ThreatHuntingJobQuery {
*/
"aggregation"?: SecurityMonitoringRuleQueryAggregation;
/**
* Source of events, either logs, audit trail, or Datadog events.
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
*/
"dataSource"?: SecurityMonitoringStandardDataSource;
/**
Expand Down
Loading