Skip to content

Commit bc07a32

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add application_security to security monitoring rule type enum (#1039)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 8b611f0 commit bc07a32

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
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.4",
7-
"regenerated": "2023-03-01 19:51:33.215767",
8-
"spec_repo_commit": "fc9468ac"
7+
"regenerated": "2023-03-01 20:14:28.329805",
8+
"spec_repo_commit": "d6815e0a"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-03-01 19:51:33.227958",
13-
"spec_repo_commit": "fc9468ac"
12+
"regenerated": "2023-03-01 20:14:28.342350",
13+
"spec_repo_commit": "d6815e0a"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10242,12 +10242,14 @@ components:
1024210242
- infrastructure_configuration
1024310243
- workload_security
1024410244
- cloud_configuration
10245+
- application_security
1024510246
type: string
1024610247
x-enum-varnames:
1024710248
- LOG_DETECTION
1024810249
- INFRASTRUCTURE_CONFIGURATION
1024910250
- WORKLOAD_SECURITY
1025010251
- CLOUD_CONFIGURATION
10252+
- APPLICATION_SECURITY
1025110253
SecurityMonitoringRuleUpdatePayload:
1025210254
description: Update an existing rule.
1025310255
properties:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,7 @@ const enumsMap: { [key: string]: any[] } = {
942942
"infrastructure_configuration",
943943
"workload_security",
944944
"cloud_configuration",
945+
"application_security",
945946
],
946947
SecurityMonitoringSignalArchiveReason: [
947948
"none",

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ export type SecurityMonitoringRuleTypeRead =
1515
| typeof INFRASTRUCTURE_CONFIGURATION
1616
| typeof WORKLOAD_SECURITY
1717
| typeof CLOUD_CONFIGURATION
18+
| typeof APPLICATION_SECURITY
1819
| UnparsedObject;
1920
export const LOG_DETECTION = "log_detection";
2021
export const INFRASTRUCTURE_CONFIGURATION = "infrastructure_configuration";
2122
export const WORKLOAD_SECURITY = "workload_security";
2223
export const CLOUD_CONFIGURATION = "cloud_configuration";
24+
export const APPLICATION_SECURITY = "application_security";

0 commit comments

Comments
 (0)