Skip to content

Commit d7af8c1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 60646909 of spec repo
1 parent 47205a4 commit d7af8c1

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-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": "2023-12-04 18:32:04.096708",
8-
"spec_repo_commit": "07df9ec5"
7+
"regenerated": "2023-12-05 09:51:24.349041",
8+
"spec_repo_commit": "60646909"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-12-04 18:32:04.111110",
13-
"spec_repo_commit": "07df9ec5"
12+
"regenerated": "2023-12-05 09:51:24.376447",
13+
"spec_repo_commit": "60646909"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14961,10 +14961,12 @@ components:
1496114961
SecurityMonitoringRuleTypeCreate:
1496214962
description: The rule type.
1496314963
enum:
14964+
- application_security
1496414965
- log_detection
1496514966
- workload_security
1496614967
type: string
1496714968
x-enum-varnames:
14969+
- APPLICATION_SECURITY
1496814970
- LOG_DETECTION
1496914971
- WORKLOAD_SECURITY
1497014972
SecurityMonitoringRuleTypeRead:

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,11 @@ const enumsMap: { [key: string]: any[] } = {
13411341
"none",
13421342
],
13431343
SecurityMonitoringRuleSeverity: ["info", "low", "medium", "high", "critical"],
1344-
SecurityMonitoringRuleTypeCreate: ["log_detection", "workload_security"],
1344+
SecurityMonitoringRuleTypeCreate: [
1345+
"application_security",
1346+
"log_detection",
1347+
"workload_security",
1348+
],
13451349
SecurityMonitoringRuleTypeRead: [
13461350
"log_detection",
13471351
"infrastructure_configuration",

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1111
*/
1212

1313
export type SecurityMonitoringRuleTypeCreate =
14+
| typeof APPLICATION_SECURITY
1415
| typeof LOG_DETECTION
1516
| typeof WORKLOAD_SECURITY
1617
| UnparsedObject;
18+
export const APPLICATION_SECURITY = "application_security";
1719
export const LOG_DETECTION = "log_detection";
1820
export const WORKLOAD_SECURITY = "workload_security";

0 commit comments

Comments
 (0)