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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-05-26 12:46:05.777827",
"spec_repo_commit": "a6954c1c"
"regenerated": "2025-05-27 10:37:41.709330",
"spec_repo_commit": "c75940cb"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-05-26 12:46:05.795920",
"spec_repo_commit": "a6954c1c"
"regenerated": "2025-05-27 10:37:41.725491",
"spec_repo_commit": "c75940cb"
}
}
}
4 changes: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33669,14 +33669,15 @@ components:
- TIMESTAMP_DESCENDING
SecurityMonitoringStandardDataSource:
default: logs
description: Source of events, either logs or audit trail.
description: Source of events, either logs, audit trail, or Datadog events.
enum:
- logs
- audit
- app_sec_spans
- spans
- security_runtime
- network
- events
example: logs
type: string
x-enum-varnames:
Expand All @@ -33686,6 +33687,7 @@ components:
- SPANS
- SECURITY_RUNTIME
- NETWORK
- EVENTS
SecurityMonitoringStandardRuleCreatePayload:
description: Create a new rule.
properties:
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog_api_client/v2/models/historical_job_query.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class HistoricalJobQuery
# The aggregation type.
attr_accessor :aggregation

# Source of events, either logs or audit trail.
# Source of events, either logs, audit trail, or Datadog events.
attr_accessor :data_source

# 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 @@ -17,7 +17,7 @@
require 'time'

module DatadogAPIClient::V2
# Source of events, either logs or audit trail.
# Source of events, either logs, audit trail, or Datadog events.
class SecurityMonitoringStandardDataSource
include BaseEnumModel

Expand All @@ -27,5 +27,6 @@ class SecurityMonitoringStandardDataSource
SPANS = "spans".freeze
SECURITY_RUNTIME = "security_runtime".freeze
NETWORK = "network".freeze
EVENTS = "events".freeze
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SecurityMonitoringStandardRuleQuery
# The aggregation type.
attr_accessor :aggregation

# Source of events, either logs or audit trail.
# Source of events, either logs, audit trail, or Datadog events.
attr_accessor :data_source

# Field for which the cardinality is measured. Sent as an array.
Expand Down
Loading