@@ -68,9 +68,6 @@ class SLOResponseData
6868 # determined entirely by the `monitor_ids` field).
6969 attr_accessor :monitor_tags
7070
71- # The name of the service level objective object.
72- attr_accessor :name
73-
7471 # A metric-based SLO. **Required if type is `metric`**. Note that Datadog only allows the sum by aggregator
7572 # to be used because this will sum up all request counts instead of averaging them, or taking the max or
7673 # min of all of those requests.
@@ -120,7 +117,6 @@ def self.attribute_map
120117 :'modified_at' => :'modified_at' ,
121118 :'monitor_ids' => :'monitor_ids' ,
122119 :'monitor_tags' => :'monitor_tags' ,
123- :'name' => :'name' ,
124120 :'query' => :'query' ,
125121 :'sli_specification' => :'sli_specification' ,
126122 :'tags' => :'tags' ,
@@ -145,7 +141,6 @@ def self.openapi_types
145141 :'modified_at' => :'Integer' ,
146142 :'monitor_ids' => :'Array<Integer>' ,
147143 :'monitor_tags' => :'Array<String>' ,
148- :'name' => :'String' ,
149144 :'query' => :'ServiceLevelObjectiveQuery' ,
150145 :'sli_specification' => :'SLOSliSpec' ,
151146 :'tags' => :'Array<String>' ,
@@ -227,10 +222,6 @@ def initialize(attributes = {})
227222 end
228223 end
229224
230- if attributes . key? ( :'name' )
231- self . name = attributes [ :'name' ]
232- end
233-
234225 if attributes . key? ( :'query' )
235226 self . query = attributes [ :'query' ]
236227 end
@@ -303,7 +294,6 @@ def ==(o)
303294 modified_at == o . modified_at &&
304295 monitor_ids == o . monitor_ids &&
305296 monitor_tags == o . monitor_tags &&
306- name == o . name &&
307297 query == o . query &&
308298 sli_specification == o . sli_specification &&
309299 tags == o . tags &&
@@ -319,7 +309,7 @@ def ==(o)
319309 # @return [Integer] Hash code
320310 # @!visibility private
321311 def hash
322- [ configured_alert_ids , created_at , creator , description , groups , id , modified_at , monitor_ids , monitor_tags , name , query , sli_specification , tags , target_threshold , thresholds , timeframe , type , warning_threshold , additional_properties ] . hash
312+ [ configured_alert_ids , created_at , creator , description , groups , id , modified_at , monitor_ids , monitor_tags , query , sli_specification , tags , target_threshold , thresholds , timeframe , type , warning_threshold , additional_properties ] . hash
323313 end
324314 end
325315end
0 commit comments