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.5",
7
- "regenerated": "2023-08-02 14:07:10.910973 ",
8
- "spec_repo_commit": "75a8c502 "
7
+ "regenerated": "2023-08-03 15:19:17.289251 ",
8
+ "spec_repo_commit": "200d56a1 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-08-02 14:07:10.925368 ",
13
- "spec_repo_commit": "75a8c502 "
12
+ "regenerated": "2023-08-03 15:19:17.307858 ",
13
+ "spec_repo_commit": "200d56a1 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -859,6 +859,9 @@ components:
859
859
customAttribute: 123
860
860
duration: 2345
861
861
type: object
862
+ message:
863
+ description: Message of the event.
864
+ type: string
862
865
service:
863
866
description: 'Name of the application or service generating Audit Logs events.
864
867
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ export class AuditLogsEventAttributes {
14
14
* JSON object of attributes from Audit Logs events.
15
15
*/
16
16
"attributes" ?: { [ key : string ] : any } ;
17
+ /**
18
+ * Message of the event.
19
+ */
20
+ "message" ?: string ;
17
21
/**
18
22
* Name of the application or service generating Audit Logs events.
19
23
* This name is used to correlate Audit Logs to APM, so make sure you specify the same
@@ -42,6 +46,10 @@ export class AuditLogsEventAttributes {
42
46
baseName : "attributes" ,
43
47
type : "{ [key: string]: any; }" ,
44
48
} ,
49
+ message : {
50
+ baseName : "message" ,
51
+ type : "string" ,
52
+ } ,
45
53
service : {
46
54
baseName : "service" ,
47
55
type : "string" ,
You can’t perform that action at this time.
0 commit comments