File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed
src/datadog_api_client/v2/model Expand file tree Collapse file tree 3 files changed +20
-6
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": "2024-10-17 14:10:51.942099 ",
8
- "spec_repo_commit": "fb024a45 "
7
+ "regenerated": "2024-10-18 21:00:52.065672 ",
8
+ "spec_repo_commit": "37070fd4 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-10-17 14:10:51.959206 ",
13
- "spec_repo_commit": "fb024a45 "
12
+ "regenerated": "2024-10-18 21:00:52.083245 ",
13
+ "spec_repo_commit": "37070fd4 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -9917,7 +9917,6 @@ components:
9917
9917
HTTPLogItem:
9918
9918
additionalProperties:
9919
9919
description: Additional log attributes.
9920
- type: string
9921
9920
description: Logs that are sent over HTTP.
9922
9921
properties:
9923
9922
ddsource:
Original file line number Diff line number Diff line change 8
8
from datadog_api_client .model_utils import (
9
9
ModelNormal ,
10
10
cached_property ,
11
+ date ,
12
+ datetime ,
13
+ none_type ,
11
14
unset ,
12
15
UnsetType ,
16
+ UUID ,
13
17
)
14
18
15
19
16
20
class HTTPLogItem (ModelNormal ):
17
21
@cached_property
18
22
def additional_properties_type (_ ):
19
- return (str ,)
23
+ return (
24
+ bool ,
25
+ date ,
26
+ datetime ,
27
+ dict ,
28
+ float ,
29
+ int ,
30
+ list ,
31
+ str ,
32
+ UUID ,
33
+ none_type ,
34
+ )
20
35
21
36
@cached_property
22
37
def openapi_types (_ ):
You can’t perform that action at this time.
0 commit comments