File tree 5 files changed +21
-12
lines changed
src/main/java/com/datadog/api/client/v2/model
5 files changed +21
-12
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": "2025-03-28 15:07:41.004258 ",
8
- "spec_repo_commit": "3f3e8eaf "
7
+ "regenerated": "2025-03-28 19:42:58.001817 ",
8
+ "spec_repo_commit": "1d2132af "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-03-28 15:07:41.026638 ",
13
- "spec_repo_commit": "3f3e8eaf "
12
+ "regenerated": "2025-03-28 19:42:58.026085 ",
13
+ "spec_repo_commit": "1d2132af "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -19109,10 +19109,10 @@ components:
19109
19109
type: string
19110
19110
type: object
19111
19111
LogsQueryOptions:
19112
+ deprecated: true
19112
19113
description: 'Global query options that are used during the query.
19113
19114
19114
- Note: you should supply either timezone or time offset, but not both. Otherwise,
19115
- the query will fail.'
19115
+ Note: These fields are currently deprecated and do not affect the query results.'
19116
19116
properties:
19117
19117
timeOffset:
19118
19118
description: The time offset (in seconds) to apply to the query.
Original file line number Diff line number Diff line change @@ -140,18 +140,21 @@ public LogsAggregateRequest options(LogsQueryOptions options) {
140
140
}
141
141
142
142
/**
143
- * Global query options that are used during the query. Note: you should supply either timezone or
144
- * time offset, but not both. Otherwise, the query will fail .
143
+ * Global query options that are used during the query. Note: These fields are currently
144
+ * deprecated and do not affect the query results .
145
145
*
146
146
* @return options
147
+ * @deprecated
147
148
*/
149
+ @ Deprecated
148
150
@ jakarta .annotation .Nullable
149
151
@ JsonProperty (JSON_PROPERTY_OPTIONS )
150
152
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
151
153
public LogsQueryOptions getOptions () {
152
154
return options ;
153
155
}
154
156
157
+ @ Deprecated
155
158
public void setOptions (LogsQueryOptions options ) {
156
159
this .options = options ;
157
160
}
Original file line number Diff line number Diff line change @@ -68,18 +68,21 @@ public LogsListRequest options(LogsQueryOptions options) {
68
68
}
69
69
70
70
/**
71
- * Global query options that are used during the query. Note: you should supply either timezone or
72
- * time offset, but not both. Otherwise, the query will fail .
71
+ * Global query options that are used during the query. Note: These fields are currently
72
+ * deprecated and do not affect the query results .
73
73
*
74
74
* @return options
75
+ * @deprecated
75
76
*/
77
+ @ Deprecated
76
78
@ jakarta .annotation .Nullable
77
79
@ JsonProperty (JSON_PROPERTY_OPTIONS )
78
80
@ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
79
81
public LogsQueryOptions getOptions () {
80
82
return options ;
81
83
}
82
84
85
+ @ Deprecated
83
86
public void setOptions (LogsQueryOptions options ) {
84
87
this .options = options ;
85
88
}
Original file line number Diff line number Diff line change 17
17
import java .util .Objects ;
18
18
19
19
/**
20
- * Global query options that are used during the query. Note: you should supply either timezone or
21
- * time offset, but not both. Otherwise, the query will fail.
20
+ * Global query options that are used during the query. Note: These fields are currently deprecated
21
+ * and do not affect the query results.
22
+ *
23
+ * @deprecated
22
24
*/
25
+ @ Deprecated
23
26
@ JsonPropertyOrder ({
24
27
LogsQueryOptions .JSON_PROPERTY_TIME_OFFSET ,
25
28
LogsQueryOptions .JSON_PROPERTY_TIMEZONE
You can’t perform that action at this time.
0 commit comments