File tree Expand file tree Collapse file tree 3 files changed +4
-43
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +4
-43
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.5.1.dev2",
7
- "regenerated": "2022-01-13 09:33:14.041348 ",
8
- "spec_repo_commit": "830f39c "
7
+ "regenerated": "2022-01-13 11:49:30.037062 ",
8
+ "spec_repo_commit": "bb2c57f "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.5.1.dev2",
12
- "regenerated": "2022-01-13 09:33:14.071600 ",
13
- "spec_repo_commit": "830f39c "
12
+ "regenerated": "2022-01-13 11:49:30.064653 ",
13
+ "spec_repo_commit": "bb2c57f "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -1862,16 +1862,6 @@ components:
1862
1862
1863
1863
Any tags associated with the host are also applied to this event.'
1864
1864
type: string
1865
- id:
1866
- description: Integer ID of the event.
1867
- format: int64
1868
- readOnly: true
1869
- type: integer
1870
- payload:
1871
- description: Payload of the event.
1872
- example: '{}'
1873
- readOnly: true
1874
- type: string
1875
1865
priority:
1876
1866
$ref: '#/components/schemas/EventPriority'
1877
1867
related_event_id:
@@ -1908,10 +1898,6 @@ components:
1908
1898
description: The event title.
1909
1899
example: Did you hear the news today?
1910
1900
type: string
1911
- url:
1912
- description: URL of the event.
1913
- readOnly: true
1914
- type: string
1915
1901
required:
1916
1902
- title
1917
1903
- text
Original file line number Diff line number Diff line change @@ -34,14 +34,6 @@ export class EventCreateRequest {
34
34
* Host name to associate with the event. Any tags associated with the host are also applied to this event.
35
35
*/
36
36
"host" ?: string ;
37
- /**
38
- * Integer ID of the event.
39
- */
40
- "id" ?: number ;
41
- /**
42
- * Payload of the event.
43
- */
44
- "payload" ?: string ;
45
37
"priority" ?: EventPriority ;
46
38
/**
47
39
* ID of the parent event. Must be sent as an integer (that is no quotes).
@@ -63,10 +55,6 @@ export class EventCreateRequest {
63
55
* The event title.
64
56
*/
65
57
"title" : string ;
66
- /**
67
- * URL of the event.
68
- */
69
- "url" ?: string ;
70
58
71
59
"unparsedObject" ?: any ;
72
60
@@ -92,15 +80,6 @@ export class EventCreateRequest {
92
80
baseName : "host" ,
93
81
type : "string" ,
94
82
} ,
95
- id : {
96
- baseName : "id" ,
97
- type : "number" ,
98
- format : "int64" ,
99
- } ,
100
- payload : {
101
- baseName : "payload" ,
102
- type : "string" ,
103
- } ,
104
83
priority : {
105
84
baseName : "priority" ,
106
85
type : "EventPriority" ,
@@ -128,10 +107,6 @@ export class EventCreateRequest {
128
107
type : "string" ,
129
108
required : true ,
130
109
} ,
131
- url : {
132
- baseName : "url" ,
133
- type : "string" ,
134
- } ,
135
110
} ;
136
111
137
112
static getAttributeTypeMap ( ) : AttributeTypeMap {
You can’t perform that action at this time.
0 commit comments