Skip to content

Commit 3811cd0

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add security_signals to SecurityMonitoringStandardDataSource (#3204)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 915eb0f commit 3811cd0

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60999,7 +60999,7 @@ components:
6099960999
- TIMESTAMP_DESCENDING
6100061000
SecurityMonitoringStandardDataSource:
6100161001
default: logs
61002-
description: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
61002+
description: Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
6100361003
enum:
6100461004
- logs
6100561005
- audit
@@ -61008,6 +61008,7 @@ components:
6100861008
- security_runtime
6100961009
- network
6101061010
- events
61011+
- security_signals
6101161012
example: logs
6101261013
type: string
6101361014
x-enum-varnames:
@@ -61018,6 +61019,7 @@ components:
6101861019
- SECURITY_RUNTIME
6101961020
- NETWORK
6102061021
- EVENTS
61022+
- SECURITY_SIGNALS
6102161023
SecurityMonitoringStandardRuleCreatePayload:
6102261024
description: Create a new rule.
6102361025
properties:

lib/datadog_api_client/v2/models/security_monitoring_standard_data_source.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
require 'time'
1818

1919
module DatadogAPIClient::V2
20-
# Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
20+
# Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
2121
class SecurityMonitoringStandardDataSource
2222
include BaseEnumModel
2323

@@ -28,5 +28,6 @@ class SecurityMonitoringStandardDataSource
2828
SECURITY_RUNTIME = "security_runtime".freeze
2929
NETWORK = "network".freeze
3030
EVENTS = "events".freeze
31+
SECURITY_SIGNALS = "security_signals".freeze
3132
end
3233
end

lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SecurityMonitoringStandardRuleQuery
2727
# Query extension to append to the logs query.
2828
attr_accessor :custom_query_extension
2929

30-
# Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
30+
# Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
3131
attr_accessor :data_source
3232

3333
# Field for which the cardinality is measured. Sent as an array.

lib/datadog_api_client/v2/models/threat_hunting_job_query.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ThreatHuntingJobQuery
2424
# The aggregation type.
2525
attr_accessor :aggregation
2626

27-
# Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
27+
# Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
2828
attr_accessor :data_source
2929

3030
# Field for which the cardinality is measured. Sent as an array.

0 commit comments

Comments
 (0)