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 @@ -21,7 +21,7 @@ def __init__(self, **kwargs):
:param custom_query_extension: Query extension to append to the logs query.
:type custom_query_extension: str, optional

:param data_source: Source of events, either logs, audit trail, or Datadog events.
:param data_source: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
:type data_source: SecurityMonitoringStandardDataSource, optional

:param distinct_fields: Field for which the cardinality is measured. Sent as an array.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class SecurityMonitoringStandardDataSource(ModelSimple):
"""
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`.

:param value: If omitted defaults to "logs". Must be one of ["logs", "audit", "app_sec_spans", "spans", "security_runtime", "network", "events"].
:type value: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(
:param custom_query_extension: Query extension to append to the logs query.
:type custom_query_extension: str, optional

:param data_source: Source of events, either logs, audit trail, or Datadog events.
:param data_source: Source of events, either logs, audit trail, or Datadog events. ``app_sec_spans`` is deprecated in favor of ``spans``.
:type data_source: SecurityMonitoringStandardDataSource, optional

:param distinct_fields: Field for which the cardinality is measured. Sent as an array.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(
:param aggregation: The aggregation type.
:type aggregation: SecurityMonitoringRuleQueryAggregation, optional

:param data_source: Source of events, either logs, audit trail, or Datadog events.
:param data_source: Source of events, either logs, audit trail, or Datadog events. ``app_sec_spans`` is deprecated in favor of ``spans``.
:type data_source: SecurityMonitoringStandardDataSource, optional

:param distinct_fields: Field for which the cardinality is measured. Sent as an array.
Expand Down
Loading