File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/datadog_api_client/v2/model Expand file tree Collapse file tree 3 files changed +10
-5
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-12-12 13:29:31.187829 ",
8
- "spec_repo_commit": "f0c3c0f4 "
7
+ "regenerated": "2024-12-12 14:27:18.166809 ",
8
+ "spec_repo_commit": "3ebe762b "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-12-12 13:29:31.206413 ",
13
- "spec_repo_commit": "f0c3c0f4 "
12
+ "regenerated": "2024-12-12 14:27:18.187622 ",
13
+ "spec_repo_commit": "3ebe762b "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -21110,11 +21110,13 @@ components:
21110
21110
SLOReportInterval:
21111
21111
description: The frequency at which report data is to be generated.
21112
21112
enum:
21113
+ - daily
21113
21114
- weekly
21114
21115
- monthly
21115
21116
example: weekly
21116
21117
type: string
21117
21118
x-enum-varnames:
21119
+ - DAILY
21118
21120
- WEEKLY
21119
21121
- MONTHLY
21120
21122
SLOReportPostResponse:
Original file line number Diff line number Diff line change @@ -16,14 +16,16 @@ class SLOReportInterval(ModelSimple):
16
16
"""
17
17
The frequency at which report data is to be generated.
18
18
19
- :param value: Must be one of ["weekly", "monthly"].
19
+ :param value: Must be one of ["daily", " weekly", "monthly"].
20
20
:type value: str
21
21
"""
22
22
23
23
allowed_values = {
24
+ "daily" ,
24
25
"weekly" ,
25
26
"monthly" ,
26
27
}
28
+ DAILY : ClassVar ["SLOReportInterval" ]
27
29
WEEKLY : ClassVar ["SLOReportInterval" ]
28
30
MONTHLY : ClassVar ["SLOReportInterval" ]
29
31
@@ -34,5 +36,6 @@ def openapi_types(_):
34
36
}
35
37
36
38
39
+ SLOReportInterval .DAILY = SLOReportInterval ("daily" )
37
40
SLOReportInterval .WEEKLY = SLOReportInterval ("weekly" )
38
41
SLOReportInterval .MONTHLY = SLOReportInterval ("monthly" )
You can’t perform that action at this time.
0 commit comments