Skip to content

Commit e7d08bf

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6984d022 of spec repo
1 parent 51d9c02 commit e7d08bf

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-03-25 18:26:27.159461",
8-
"spec_repo_commit": "b25d7c85"
7+
"regenerated": "2025-03-26 20:11:09.933030",
8+
"spec_repo_commit": "6984d022"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-25 18:26:27.176491",
13-
"spec_repo_commit": "b25d7c85"
12+
"regenerated": "2025-03-26 20:11:09.948421",
13+
"spec_repo_commit": "6984d022"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27702,11 +27702,19 @@ components:
2770227702
enum:
2770327703
- logs
2770427704
- audit
27705+
- app_sec_spans
27706+
- spans
27707+
- security_runtime
27708+
- network
2770527709
example: logs
2770627710
type: string
2770727711
x-enum-varnames:
2770827712
- LOGS
2770927713
- AUDIT
27714+
- APP_SEC_SPANS
27715+
- SPANS
27716+
- SECURITY_RUNTIME
27717+
- NETWORK
2771027718
SecurityMonitoringStandardRuleCreatePayload:
2771127719
description: Create a new rule.
2771227720
properties:

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2384,7 +2384,14 @@ const enumsMap: { [key: string]: any[] } = {
23842384
SecurityMonitoringSignalState: ["open", "archived", "under_review"],
23852385
SecurityMonitoringSignalType: ["signal"],
23862386
SecurityMonitoringSignalsSort: ["timestamp", "-timestamp"],
2387-
SecurityMonitoringStandardDataSource: ["logs", "audit"],
2387+
SecurityMonitoringStandardDataSource: [
2388+
"logs",
2389+
"audit",
2390+
"app_sec_spans",
2391+
"spans",
2392+
"security_runtime",
2393+
"network",
2394+
],
23882395
SecurityMonitoringSuppressionType: ["suppressions"],
23892396
SensitiveDataScannerConfigurationType: [
23902397
"sensitive_data_scanner_configuration",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1313
export type SecurityMonitoringStandardDataSource =
1414
| typeof LOGS
1515
| typeof AUDIT
16+
| typeof APP_SEC_SPANS
17+
| typeof SPANS
18+
| typeof SECURITY_RUNTIME
19+
| typeof NETWORK
1620
| UnparsedObject;
1721
export const LOGS = "logs";
1822
export const AUDIT = "audit";
23+
export const APP_SEC_SPANS = "app_sec_spans";
24+
export const SPANS = "spans";
25+
export const SECURITY_RUNTIME = "security_runtime";
26+
export const NETWORK = "network";

0 commit comments

Comments
 (0)