Skip to content

Commit b5ae9e0

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b130887 of spec repo
1 parent a8800d6 commit b5ae9e0

4 files changed

Lines changed: 8 additions & 19 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 3 deletions
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, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
61002+
description: Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
6100361003
enum:
6100461004
- logs
6100561005
- audit
@@ -61008,7 +61008,6 @@ components:
6100861008
- security_runtime
6100961009
- network
6101061010
- events
61011-
- security_signals
6101261011
example: logs
6101361012
type: string
6101461013
x-enum-varnames:
@@ -61019,7 +61018,6 @@ components:
6101961018
- SECURITY_RUNTIME
6102061019
- NETWORK
6102161020
- EVENTS
61022-
- SECURITY_SIGNALS
6102361021
SecurityMonitoringStandardRuleCreatePayload:
6102461022
description: Create a new rule.
6102561023
properties:

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

Lines changed: 3 additions & 12 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, security signals, or Datadog events. <code>
23-
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
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>.
2424
*/
2525
@JsonSerialize(
2626
using =
@@ -30,14 +30,7 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
3030
private static final Set<String> allowedValues =
3131
new HashSet<String>(
3232
Arrays.asList(
33-
"logs",
34-
"audit",
35-
"app_sec_spans",
36-
"spans",
37-
"security_runtime",
38-
"network",
39-
"events",
40-
"security_signals"));
33+
"logs", "audit", "app_sec_spans", "spans", "security_runtime", "network", "events"));
4134

4235
public static final SecurityMonitoringStandardDataSource LOGS =
4336
new SecurityMonitoringStandardDataSource("logs");
@@ -53,8 +46,6 @@ public class SecurityMonitoringStandardDataSource extends ModelEnum<String> {
5346
new SecurityMonitoringStandardDataSource("network");
5447
public static final SecurityMonitoringStandardDataSource EVENTS =
5548
new SecurityMonitoringStandardDataSource("events");
56-
public static final SecurityMonitoringStandardDataSource SECURITY_SIGNALS =
57-
new SecurityMonitoringStandardDataSource("security_signals");
5849

5950
SecurityMonitoringStandardDataSource(String value) {
6051
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, security signals, or Datadog events. <code>
134-
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
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>.
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, security signals, or Datadog events. <code>
95-
* app_sec_spans</code> is deprecated in favor of <code>spans</code>.
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>.
9696
*
9797
* @return dataSource
9898
*/

0 commit comments

Comments
 (0)