File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/datadog_api_client/v1/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-07-16 18:49:24.415199 ",
8
- "spec_repo_commit": "a669b93e "
7
+ "regenerated": "2024-07-17 08:36:08.394705 ",
8
+ "spec_repo_commit": "f77e7cb2 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-07-16 18:49:24.431970 ",
13
- "spec_repo_commit": "a669b93e "
12
+ "regenerated": "2024-07-17 08:36:08.412103 ",
13
+ "spec_repo_commit": "f77e7cb2 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3087,10 +3087,12 @@ components:
3087
3087
description: Name of the query for use in formulas.
3088
3088
enum:
3089
3089
- metric
3090
+ - time_slice
3090
3091
example: metric
3091
3092
type: string
3092
3093
x-enum-varnames:
3093
3094
- METRIC
3095
+ - TIME_SLICE
3094
3096
FormulaType:
3095
3097
description: Set the sort type to formula.
3096
3098
enum:
Original file line number Diff line number Diff line change @@ -16,14 +16,16 @@ class FormulaAndFunctionSLOQueryType(ModelSimple):
16
16
"""
17
17
Name of the query for use in formulas.
18
18
19
- :param value: If omitted defaults to "metric". Must be one of ["metric"].
19
+ :param value: Must be one of ["metric", "time_slice "].
20
20
:type value: str
21
21
"""
22
22
23
23
allowed_values = {
24
24
"metric" ,
25
+ "time_slice" ,
25
26
}
26
27
METRIC : ClassVar ["FormulaAndFunctionSLOQueryType" ]
28
+ TIME_SLICE : ClassVar ["FormulaAndFunctionSLOQueryType" ]
27
29
28
30
@cached_property
29
31
def openapi_types (_ ):
@@ -33,3 +35,4 @@ def openapi_types(_):
33
35
34
36
35
37
FormulaAndFunctionSLOQueryType .METRIC = FormulaAndFunctionSLOQueryType ("metric" )
38
+ FormulaAndFunctionSLOQueryType .TIME_SLICE = FormulaAndFunctionSLOQueryType ("time_slice" )
You can’t perform that action at this time.
0 commit comments