Skip to content

Commit 55bf68c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 14f28af of spec repo
1 parent 7dea07d commit 55bf68c

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

.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:

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5329,6 +5329,7 @@ const enumsMap: { [key: string]: any[] } = {
53295329
"security_runtime",
53305330
"network",
53315331
"events",
5332+
"security_signals",
53325333
],
53335334
SecurityMonitoringSuppressionSort: [
53345335
"name",

packages/datadog-api-client-v2/models/SecurityMonitoringStandardDataSource.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { UnparsedObject } from "../../datadog-api-client-common/util";
88

99
/**
10-
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
10+
* Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
1111
*/
1212

1313
export type SecurityMonitoringStandardDataSource =
@@ -18,6 +18,7 @@ export type SecurityMonitoringStandardDataSource =
1818
| typeof SECURITY_RUNTIME
1919
| typeof NETWORK
2020
| typeof EVENTS
21+
| typeof SECURITY_SIGNALS
2122
| UnparsedObject;
2223
export const LOGS = "logs";
2324
export const AUDIT = "audit";
@@ -26,3 +27,4 @@ export const SPANS = "spans";
2627
export const SECURITY_RUNTIME = "security_runtime";
2728
export const NETWORK = "network";
2829
export const EVENTS = "events";
30+
export const SECURITY_SIGNALS = "security_signals";

packages/datadog-api-client-v2/models/SecurityMonitoringStandardRuleQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class SecurityMonitoringStandardRuleQuery {
2121
*/
2222
"customQueryExtension"?: string;
2323
/**
24-
* Source of events, either logs, audit trail, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
24+
* Source of events, either logs, audit trail, security signals, or Datadog events. `app_sec_spans` is deprecated in favor of `spans`.
2525
*/
2626
"dataSource"?: SecurityMonitoringStandardDataSource;
2727
/**

packages/datadog-api-client-v2/models/ThreatHuntingJobQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class ThreatHuntingJobQuery {
1717
*/
1818
"aggregation"?: SecurityMonitoringRuleQueryAggregation;
1919
/**
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
*/
2222
"dataSource"?: SecurityMonitoringStandardDataSource;
2323
/**

0 commit comments

Comments
 (0)