Skip to content

Commit 5e3bca9

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 949f90e2 of spec repo (#2900)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 078777c commit 5e3bca9

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-06-25 11:39:38.389684",
8-
"spec_repo_commit": "5d86661b"
7+
"regenerated": "2025-06-25 15:29:00.956144",
8+
"spec_repo_commit": "949f90e2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-25 11:39:38.406037",
13-
"spec_repo_commit": "5d86661b"
12+
"regenerated": "2025-06-25 15:29:00.973120",
13+
"spec_repo_commit": "949f90e2"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10965,19 +10965,24 @@ components:
1096510965
example: {}
1096610966
properties:
1096710967
aggr:
10968+
deprecated: true
1096810969
description: Query aggregator function.
1096910970
type: string
1097010971
expression:
10972+
deprecated: true
1097110973
description: Query expression.
1097210974
type: string
1097310975
metric:
10976+
deprecated: true
1097410977
description: Query metric used.
1097510978
type: string
1097610979
query_index:
10980+
deprecated: true
1097710981
description: Query index from original combined query.
1097810982
format: int64
1097910983
type: integer
1098010984
scope:
10985+
deprecated: true
1098110986
description: Query scope.
1098210987
type: string
1098310988
unit:

src/main/java/com/datadog/api/client/v1/model/SLOHistoryMetricsSeriesMetadata.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,17 @@ public SLOHistoryMetricsSeriesMetadata aggr(String aggr) {
6060
* Query aggregator function.
6161
*
6262
* @return aggr
63+
* @deprecated
6364
*/
65+
@Deprecated
6466
@jakarta.annotation.Nullable
6567
@JsonProperty(JSON_PROPERTY_AGGR)
6668
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
6769
public String getAggr() {
6870
return aggr;
6971
}
7072

73+
@Deprecated
7174
public void setAggr(String aggr) {
7275
this.aggr = aggr;
7376
}
@@ -81,14 +84,17 @@ public SLOHistoryMetricsSeriesMetadata expression(String expression) {
8184
* Query expression.
8285
*
8386
* @return expression
87+
* @deprecated
8488
*/
89+
@Deprecated
8590
@jakarta.annotation.Nullable
8691
@JsonProperty(JSON_PROPERTY_EXPRESSION)
8792
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
8893
public String getExpression() {
8994
return expression;
9095
}
9196

97+
@Deprecated
9298
public void setExpression(String expression) {
9399
this.expression = expression;
94100
}
@@ -102,14 +108,17 @@ public SLOHistoryMetricsSeriesMetadata metric(String metric) {
102108
* Query metric used.
103109
*
104110
* @return metric
111+
* @deprecated
105112
*/
113+
@Deprecated
106114
@jakarta.annotation.Nullable
107115
@JsonProperty(JSON_PROPERTY_METRIC)
108116
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
109117
public String getMetric() {
110118
return metric;
111119
}
112120

121+
@Deprecated
113122
public void setMetric(String metric) {
114123
this.metric = metric;
115124
}
@@ -123,14 +132,17 @@ public SLOHistoryMetricsSeriesMetadata queryIndex(Long queryIndex) {
123132
* Query index from original combined query.
124133
*
125134
* @return queryIndex
135+
* @deprecated
126136
*/
137+
@Deprecated
127138
@jakarta.annotation.Nullable
128139
@JsonProperty(JSON_PROPERTY_QUERY_INDEX)
129140
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
130141
public Long getQueryIndex() {
131142
return queryIndex;
132143
}
133144

145+
@Deprecated
134146
public void setQueryIndex(Long queryIndex) {
135147
this.queryIndex = queryIndex;
136148
}
@@ -144,14 +156,17 @@ public SLOHistoryMetricsSeriesMetadata scope(String scope) {
144156
* Query scope.
145157
*
146158
* @return scope
159+
* @deprecated
147160
*/
161+
@Deprecated
148162
@jakarta.annotation.Nullable
149163
@JsonProperty(JSON_PROPERTY_SCOPE)
150164
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
151165
public String getScope() {
152166
return scope;
153167
}
154168

169+
@Deprecated
155170
public void setScope(String scope) {
156171
this.scope = scope;
157172
}

0 commit comments

Comments
 (0)