File tree 3 files changed +15
-4
lines changed
packages/datadog-api-client-v2/models
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2025-03-14 07:51:12.126872 ",
8
- "spec_repo_commit": "899883be "
7
+ "regenerated": "2025-03-17 14:53:08.665656 ",
8
+ "spec_repo_commit": "f73f9d61 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-03-14 07:51:12.142713 ",
13
- "spec_repo_commit": "899883be "
12
+ "regenerated": "2025-03-17 14:53:08.681430 ",
13
+ "spec_repo_commit": "f73f9d61 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -14746,6 +14746,8 @@ components:
14746
14746
properties:
14747
14747
aggregation:
14748
14748
$ref: '#/components/schemas/SecurityMonitoringRuleQueryAggregation'
14749
+ dataSource:
14750
+ $ref: '#/components/schemas/SecurityMonitoringStandardDataSource'
14749
14751
distinctFields:
14750
14752
description: Field for which the cardinality is measured. Sent as an array.
14751
14753
items:
Original file line number Diff line number Diff line change 4
4
* Copyright 2020-Present Datadog, Inc.
5
5
*/
6
6
import { SecurityMonitoringRuleQueryAggregation } from "./SecurityMonitoringRuleQueryAggregation" ;
7
+ import { SecurityMonitoringStandardDataSource } from "./SecurityMonitoringStandardDataSource" ;
7
8
8
9
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
9
10
@@ -15,6 +16,10 @@ export class HistoricalJobQuery {
15
16
* The aggregation type.
16
17
*/
17
18
"aggregation" ?: SecurityMonitoringRuleQueryAggregation ;
19
+ /**
20
+ * Source of events, either logs or audit trail.
21
+ */
22
+ "dataSource" ?: SecurityMonitoringStandardDataSource ;
18
23
/**
19
24
* Field for which the cardinality is measured. Sent as an array.
20
25
*/
@@ -60,6 +65,10 @@ export class HistoricalJobQuery {
60
65
baseName : "aggregation" ,
61
66
type : "SecurityMonitoringRuleQueryAggregation" ,
62
67
} ,
68
+ dataSource : {
69
+ baseName : "dataSource" ,
70
+ type : "SecurityMonitoringStandardDataSource" ,
71
+ } ,
63
72
distinctFields : {
64
73
baseName : "distinctFields" ,
65
74
type : "Array<string>" ,
You can’t perform that action at this time.
0 commit comments