Skip to content

Commit 3d0a62f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 1cc45c45 of spec repo
1 parent 59852da commit 3d0a62f

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-04-01 23:26:27.251270",
8-
"spec_repo_commit": "2000c9c8"
7+
"regenerated": "2025-04-02 19:55:31.957447",
8+
"spec_repo_commit": "1cc45c45"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-01 23:26:27.268018",
13-
"spec_repo_commit": "2000c9c8"
12+
"regenerated": "2025-04-02 19:55:31.973220",
13+
"spec_repo_commit": "1cc45c45"
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
@@ -2387,7 +2387,14 @@ const enumsMap: { [key: string]: any[] } = {
23872387
SecurityMonitoringSignalState: ["open", "archived", "under_review"],
23882388
SecurityMonitoringSignalType: ["signal"],
23892389
SecurityMonitoringSignalsSort: ["timestamp", "-timestamp"],
2390-
SecurityMonitoringStandardDataSource: ["logs", "audit"],
2390+
SecurityMonitoringStandardDataSource: [
2391+
"logs",
2392+
"audit",
2393+
"app_sec_spans",
2394+
"spans",
2395+
"security_runtime",
2396+
"network",
2397+
],
23912398
SecurityMonitoringSuppressionType: ["suppressions"],
23922399
SensitiveDataScannerConfigurationType: [
23932400
"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)