File tree Expand file tree Collapse file tree 4 files changed +27
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 4 files changed +27
-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-07-13 19:35:35.496802 ",
8
- "spec_repo_commit": "b37fc521 "
7
+ "regenerated": "2023-07-13 20:37:06.082780 ",
8
+ "spec_repo_commit": "efde263a "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-07-13 19:35:35.513504 ",
13
- "spec_repo_commit": "b37fc521 "
12
+ "regenerated": "2023-07-13 20:37:06.100361 ",
13
+ "spec_repo_commit": "efde263a "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -4443,6 +4443,9 @@ components:
4443
4443
properties:
4444
4444
attributes:
4445
4445
$ref: '#/components/schemas/EventAttributes'
4446
+ message:
4447
+ description: The message of the event.
4448
+ type: string
4446
4449
tags:
4447
4450
description: An array of tags associated with the event.
4448
4451
example:
@@ -4693,6 +4696,10 @@ components:
4693
4696
description: The identifier of the request.
4694
4697
example: MWlFUjVaWGZTTTZPYzM0VXp1OXU2d3xLSVpEMjZKQ0VKUTI0dEYtM3RSOFVR
4695
4698
type: string
4699
+ status:
4700
+ description: The request status.
4701
+ example: done
4702
+ type: string
4696
4703
warnings:
4697
4704
description: 'A list of warnings (non-fatal errors) encountered. Partial
4698
4705
results might be returned if
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ export class EventResponseAttributes {
15
15
* Object description of attributes from your event.
16
16
*/
17
17
"attributes" ?: EventAttributes ;
18
+ /**
19
+ * The message of the event.
20
+ */
21
+ "message" ?: string ;
18
22
/**
19
23
* An array of tags associated with the event.
20
24
*/
@@ -37,6 +41,10 @@ export class EventResponseAttributes {
37
41
baseName : "attributes" ,
38
42
type : "EventAttributes" ,
39
43
} ,
44
+ message : {
45
+ baseName : "message" ,
46
+ type : "string" ,
47
+ } ,
40
48
tags : {
41
49
baseName : "tags" ,
42
50
type : "Array<string>" ,
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ export class EventsResponseMetadata {
24
24
* The identifier of the request.
25
25
*/
26
26
"requestId" ?: string ;
27
+ /**
28
+ * The request status.
29
+ */
30
+ "status" ?: string ;
27
31
/**
28
32
* A list of warnings (non-fatal errors) encountered. Partial results might be returned if
29
33
* warnings are present in the response.
@@ -52,6 +56,10 @@ export class EventsResponseMetadata {
52
56
baseName : "request_id" ,
53
57
type : "string" ,
54
58
} ,
59
+ status : {
60
+ baseName : "status" ,
61
+ type : "string" ,
62
+ } ,
55
63
warnings : {
56
64
baseName : "warnings" ,
57
65
type : "Array<EventsWarning>" ,
You can’t perform that action at this time.
0 commit comments