Skip to content
Closed
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-07-08 07:29:01.236919",
"spec_repo_commit": "d9879085"
"regenerated": "2025-07-08 17:06:38.377613",
"spec_repo_commit": "811e2579"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-07-08 07:29:01.320596",
"spec_repo_commit": "d9879085"
"regenerated": "2025-07-08 17:06:38.395739",
"spec_repo_commit": "811e2579"
}
}
}
4 changes: 0 additions & 4 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11880,10 +11880,6 @@ components:
description: A monitor tag.
type: string
type: array
name:
description: The name of the service level objective object.
example: Custom Metric SLO
type: string
query:
$ref: '#/components/schemas/ServiceLevelObjectiveQuery'
sli_specification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
SLOResponseData.JSON_PROPERTY_MODIFIED_AT,
SLOResponseData.JSON_PROPERTY_MONITOR_IDS,
SLOResponseData.JSON_PROPERTY_MONITOR_TAGS,
SLOResponseData.JSON_PROPERTY_NAME,
SLOResponseData.JSON_PROPERTY_QUERY,
SLOResponseData.JSON_PROPERTY_SLI_SPECIFICATION,
SLOResponseData.JSON_PROPERTY_TAGS,
Expand Down Expand Up @@ -74,9 +73,6 @@ public class SLOResponseData {
public static final String JSON_PROPERTY_MONITOR_TAGS = "monitor_tags";
private List<String> monitorTags = null;

public static final String JSON_PROPERTY_NAME = "name";
private String name;

public static final String JSON_PROPERTY_QUERY = "query";
private ServiceLevelObjectiveQuery query;

Expand Down Expand Up @@ -315,27 +311,6 @@ public void setMonitorTags(List<String> monitorTags) {
this.monitorTags = monitorTags;
}

public SLOResponseData name(String name) {
this.name = name;
return this;
}

/**
* The name of the service level objective object.
*
* @return name
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public SLOResponseData query(ServiceLevelObjectiveQuery query) {
this.query = query;
this.unparsed |= query.unparsed;
Expand Down Expand Up @@ -606,7 +581,6 @@ public boolean equals(Object o) {
&& Objects.equals(this.modifiedAt, sloResponseData.modifiedAt)
&& Objects.equals(this.monitorIds, sloResponseData.monitorIds)
&& Objects.equals(this.monitorTags, sloResponseData.monitorTags)
&& Objects.equals(this.name, sloResponseData.name)
&& Objects.equals(this.query, sloResponseData.query)
&& Objects.equals(this.sliSpecification, sloResponseData.sliSpecification)
&& Objects.equals(this.tags, sloResponseData.tags)
Expand All @@ -630,7 +604,6 @@ public int hashCode() {
modifiedAt,
monitorIds,
monitorTags,
name,
query,
sliSpecification,
tags,
Expand All @@ -655,7 +628,6 @@ public String toString() {
sb.append(" modifiedAt: ").append(toIndentedString(modifiedAt)).append("\n");
sb.append(" monitorIds: ").append(toIndentedString(monitorIds)).append("\n");
sb.append(" monitorTags: ").append(toIndentedString(monitorTags)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" query: ").append(toIndentedString(query)).append("\n");
sb.append(" sliSpecification: ").append(toIndentedString(sliSpecification)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
Expand Down
Loading