Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-25 11:39:38.389684",
"spec_repo_commit": "5d86661b"
"regenerated": "2025-06-25 15:29:00.956144",
"spec_repo_commit": "949f90e2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-25 11:39:38.406037",
"spec_repo_commit": "5d86661b"
"regenerated": "2025-06-25 15:29:00.973120",
"spec_repo_commit": "949f90e2"
}
}
}
5 changes: 5 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10965,19 +10965,24 @@ components:
example: {}
properties:
aggr:
deprecated: true
description: Query aggregator function.
type: string
expression:
deprecated: true
description: Query expression.
type: string
metric:
deprecated: true
description: Query metric used.
type: string
query_index:
deprecated: true
description: Query index from original combined query.
format: int64
type: integer
scope:
deprecated: true
description: Query scope.
type: string
unit:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,17 @@ public SLOHistoryMetricsSeriesMetadata aggr(String aggr) {
* Query aggregator function.
*
* @return aggr
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AGGR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAggr() {
return aggr;
}

@Deprecated
public void setAggr(String aggr) {
this.aggr = aggr;
}
Expand All @@ -81,14 +84,17 @@ public SLOHistoryMetricsSeriesMetadata expression(String expression) {
* Query expression.
*
* @return expression
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPRESSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getExpression() {
return expression;
}

@Deprecated
public void setExpression(String expression) {
this.expression = expression;
}
Expand All @@ -102,14 +108,17 @@ public SLOHistoryMetricsSeriesMetadata metric(String metric) {
* Query metric used.
*
* @return metric
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_METRIC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMetric() {
return metric;
}

@Deprecated
public void setMetric(String metric) {
this.metric = metric;
}
Expand All @@ -123,14 +132,17 @@ public SLOHistoryMetricsSeriesMetadata queryIndex(Long queryIndex) {
* Query index from original combined query.
*
* @return queryIndex
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_QUERY_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getQueryIndex() {
return queryIndex;
}

@Deprecated
public void setQueryIndex(Long queryIndex) {
this.queryIndex = queryIndex;
}
Expand All @@ -144,14 +156,17 @@ public SLOHistoryMetricsSeriesMetadata scope(String scope) {
* Query scope.
*
* @return scope
* @deprecated
*/
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SCOPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getScope() {
return scope;
}

@Deprecated
public void setScope(String scope) {
this.scope = scope;
}
Expand Down