Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e600d9

Browse files
author
ci.datadog-api-spec
committedAug 3, 2023
Regenerate client from commit 200d56a1 of spec repo
1 parent efd02a7 commit 4e600d9

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed
 

‎.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

‎.generator/schemas/v2/openapi.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,9 @@ components:
859859
customAttribute: 123
860860
duration: 2345
861861
type: object
862+
message:
863+
description: Message of the event.
864+
type: string
862865
service:
863866
description: 'Name of the application or service generating Audit Logs events.
864867

‎packages/datadog-api-client-v2/models/AuditLogsEventAttributes.ts

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ export class AuditLogsEventAttributes {
1414
* JSON object of attributes from Audit Logs events.
1515
*/
1616
"attributes"?: { [key: string]: any };
17+
/**
18+
* Message of the event.
19+
*/
20+
"message"?: string;
1721
/**
1822
* Name of the application or service generating Audit Logs events.
1923
* This name is used to correlate Audit Logs to APM, so make sure you specify the same
@@ -42,6 +46,10 @@ export class AuditLogsEventAttributes {
4246
baseName: "attributes",
4347
type: "{ [key: string]: any; }",
4448
},
49+
message: {
50+
baseName: "message",
51+
type: "string",
52+
},
4553
service: {
4654
baseName: "service",
4755
type: "string",

0 commit comments

Comments
 (0)
Please sign in to comment.