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

/**
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
* Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
*/
export type SecurityMonitoringStandardDataSource =
| typeof LOGS
Expand All @@ -11,6 +11,7 @@ export type SecurityMonitoringStandardDataSource =
| typeof SECURITY_RUNTIME
| typeof NETWORK
| typeof EVENTS
| typeof SECURITY_SIGNALS
| UnparsedObject;
export const LOGS = "logs";
export const AUDIT = "audit";
Expand All @@ -19,3 +20,4 @@ export const SPANS = "spans";
export const SECURITY_RUNTIME = "security_runtime";
export const NETWORK = "network";
export const EVENTS = "events";
export const SECURITY_SIGNALS = "security_signals";
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class SecurityMonitoringStandardRuleQuery {
*/
"customQueryExtension"?: string;
/**
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
* Source of events, either logs, audit trail, security signals, 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 @@ -12,7 +12,7 @@ export class ThreatHuntingJobQuery {
*/
"aggregation"?: SecurityMonitoringRuleQueryAggregation;
/**
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
* Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
*/
"dataSource"?: SecurityMonitoringStandardDataSource;
/**
Expand Down
1 change: 1 addition & 0 deletions services/security_monitoring/src/v2/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ export const TypingInfo: ModelTypingInfo = {
"security_runtime",
"network",
"events",
"security_signals",
],
SecurityMonitoringSuppressionSort: [
"name",
Expand Down
Loading