3333 SLOResponseData .JSON_PROPERTY_MODIFIED_AT ,
3434 SLOResponseData .JSON_PROPERTY_MONITOR_IDS ,
3535 SLOResponseData .JSON_PROPERTY_MONITOR_TAGS ,
36- SLOResponseData .JSON_PROPERTY_NAME ,
3736 SLOResponseData .JSON_PROPERTY_QUERY ,
3837 SLOResponseData .JSON_PROPERTY_SLI_SPECIFICATION ,
3938 SLOResponseData .JSON_PROPERTY_TAGS ,
@@ -74,9 +73,6 @@ public class SLOResponseData {
7473 public static final String JSON_PROPERTY_MONITOR_TAGS = "monitor_tags" ;
7574 private List <String > monitorTags = null ;
7675
77- public static final String JSON_PROPERTY_NAME = "name" ;
78- private String name ;
79-
8076 public static final String JSON_PROPERTY_QUERY = "query" ;
8177 private ServiceLevelObjectiveQuery query ;
8278
@@ -315,27 +311,6 @@ public void setMonitorTags(List<String> monitorTags) {
315311 this .monitorTags = monitorTags ;
316312 }
317313
318- public SLOResponseData name (String name ) {
319- this .name = name ;
320- return this ;
321- }
322-
323- /**
324- * The name of the service level objective object.
325- *
326- * @return name
327- */
328- @ jakarta .annotation .Nullable
329- @ JsonProperty (JSON_PROPERTY_NAME )
330- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
331- public String getName () {
332- return name ;
333- }
334-
335- public void setName (String name ) {
336- this .name = name ;
337- }
338-
339314 public SLOResponseData query (ServiceLevelObjectiveQuery query ) {
340315 this .query = query ;
341316 this .unparsed |= query .unparsed ;
@@ -606,7 +581,6 @@ public boolean equals(Object o) {
606581 && Objects .equals (this .modifiedAt , sloResponseData .modifiedAt )
607582 && Objects .equals (this .monitorIds , sloResponseData .monitorIds )
608583 && Objects .equals (this .monitorTags , sloResponseData .monitorTags )
609- && Objects .equals (this .name , sloResponseData .name )
610584 && Objects .equals (this .query , sloResponseData .query )
611585 && Objects .equals (this .sliSpecification , sloResponseData .sliSpecification )
612586 && Objects .equals (this .tags , sloResponseData .tags )
@@ -630,7 +604,6 @@ public int hashCode() {
630604 modifiedAt ,
631605 monitorIds ,
632606 monitorTags ,
633- name ,
634607 query ,
635608 sliSpecification ,
636609 tags ,
@@ -655,7 +628,6 @@ public String toString() {
655628 sb .append (" modifiedAt: " ).append (toIndentedString (modifiedAt )).append ("\n " );
656629 sb .append (" monitorIds: " ).append (toIndentedString (monitorIds )).append ("\n " );
657630 sb .append (" monitorTags: " ).append (toIndentedString (monitorTags )).append ("\n " );
658- sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
659631 sb .append (" query: " ).append (toIndentedString (query )).append ("\n " );
660632 sb .append (" sliSpecification: " ).append (toIndentedString (sliSpecification )).append ("\n " );
661633 sb .append (" tags: " ).append (toIndentedString (tags )).append ("\n " );
0 commit comments