Skip to content

Commit fd5aa78

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 14f28af of spec repo
1 parent b27f09d commit fd5aa78

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60098,7 +60098,7 @@ components:
6009860098
- TIMESTAMP_DESCENDING
6009960099
SecurityMonitoringStandardDataSource:
6010060100
default: logs
60101-
description: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
60101+
description: Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
6010260102
enum:
6010360103
- logs
6010460104
- audit
@@ -60107,6 +60107,7 @@ components:
6010760107
- security_runtime
6010860108
- network
6010960109
- events
60110+
- security_signals
6011060111
example: logs
6011160112
type: string
6011260113
x-enum-varnames:
@@ -60117,6 +60118,7 @@ components:
6011760118
- SECURITY_RUNTIME
6011860119
- NETWORK
6011960120
- EVENTS
60121+
- SECURITY_SIGNALS
6012060122
SecurityMonitoringStandardRuleCreatePayload:
6012160123
description: Create a new rule.
6012260124
properties:

src/main/java/com/datadog/api/client/v2/model/SecurityMonitoringStandardDataSource.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
import java.util.Set;
2020

2121
/**
22-
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
23-
* deprecated in favor of <code>spans</code>.
22+
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
23+
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
2424
*/
2525
@JsonSerialize(
2626
using =
@@ -30,7 +30,14 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
3030
private static final Set<String> allowedValues =
3131
new HashSet<String>(
3232
Arrays.asList(
33-
"logs", "audit", "app_sec_spans", "spans", "security_runtime", "network", "events"));
33+
"logs",
34+
"audit",
35+
"app_sec_spans",
36+
"spans",
37+
"security_runtime",
38+
"network",
39+
"events",
40+
"security_signals"));
3441

3542
public static final SecurityMonitoringStandardDataSource LOGS =
3643
new SecurityMonitoringStandardDataSource("logs");
@@ -46,6 +53,8 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
4653
new SecurityMonitoringStandardDataSource("network");
4754
public static final SecurityMonitoringStandardDataSource EVENTS =
4855
new SecurityMonitoringStandardDataSource("events");
56+
public static final SecurityMonitoringStandardDataSource SECURITY_SIGNALS =
57+
new SecurityMonitoringStandardDataSource("security_signals");
4958

5059
SecurityMonitoringStandardDataSource(String value) {
5160
super(value, allowedValues);

src/main/java/com/datadog/api/client/v2/model/SecurityMonitoringStandardRuleQuery.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ public SecurityMonitoringStandardRuleQuery dataSource(
130130
}
131131

132132
/**
133-
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
134-
* deprecated in favor of <code>spans</code>.
133+
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
134+
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
135135
*
136136
* @return dataSource
137137
*/

src/main/java/com/datadog/api/client/v2/model/ThreatHuntingJobQuery.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ public ThreatHuntingJobQuery dataSource(SecurityMonitoringStandardDataSource dat
9191
}
9292

9393
/**
94-
* Source of events, either logs, audit trail, or Datadog events. <code>app_sec_spans</code> is
95-
* deprecated in favor of <code>spans</code>.
94+
* Source of events, either logs, audit trail, security signals, or Datadog events. <code>
95+
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
9696
*
9797
* @return dataSource
9898
*/

0 commit comments

Comments
 (0)