2727 * application key created by an admin.
2828 */
2929@ JsonPropertyOrder ({
30- LogsPipeline .JSON_PROPERTY_DESCRIPTION ,
3130 LogsPipeline .JSON_PROPERTY_FILTER ,
3231 LogsPipeline .JSON_PROPERTY_ID ,
3332 LogsPipeline .JSON_PROPERTY_IS_ENABLED ,
3433 LogsPipeline .JSON_PROPERTY_IS_READ_ONLY ,
3534 LogsPipeline .JSON_PROPERTY_NAME ,
3635 LogsPipeline .JSON_PROPERTY_PROCESSORS ,
37- LogsPipeline .JSON_PROPERTY_TAGS ,
3836 LogsPipeline .JSON_PROPERTY_TYPE
3937})
4038@ jakarta .annotation .Generated (
4139 value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator" )
4240public class LogsPipeline {
4341 @ JsonIgnore public boolean unparsed = false ;
44- public static final String JSON_PROPERTY_DESCRIPTION = "description" ;
45- private String description ;
46-
4742 public static final String JSON_PROPERTY_FILTER = "filter" ;
4843 private LogsFilter filter ;
4944
@@ -62,9 +57,6 @@ public class LogsPipeline {
6257 public static final String JSON_PROPERTY_PROCESSORS = "processors" ;
6358 private List <LogsProcessor > processors = null ;
6459
65- public static final String JSON_PROPERTY_TAGS = "tags" ;
66- private List <String > tags = null ;
67-
6860 public static final String JSON_PROPERTY_TYPE = "type" ;
6961 private String type ;
7062
@@ -75,27 +67,6 @@ public LogsPipeline(@JsonProperty(required = true, value = JSON_PROPERTY_NAME) S
7567 this .name = name ;
7668 }
7769
78- public LogsPipeline description (String description ) {
79- this .description = description ;
80- return this ;
81- }
82-
83- /**
84- * A description of the pipeline.
85- *
86- * @return description
87- */
88- @ jakarta .annotation .Nullable
89- @ JsonProperty (JSON_PROPERTY_DESCRIPTION )
90- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
91- public String getDescription () {
92- return description ;
93- }
94-
95- public void setDescription (String description ) {
96- this .description = description ;
97- }
98-
9970 public LogsPipeline filter (LogsFilter filter ) {
10071 this .filter = filter ;
10172 this .unparsed |= filter .unparsed ;
@@ -216,35 +187,6 @@ public void setProcessors(List<LogsProcessor> processors) {
216187 this .processors = processors ;
217188 }
218189
219- public LogsPipeline tags (List <String > tags ) {
220- this .tags = tags ;
221- return this ;
222- }
223-
224- public LogsPipeline addTagsItem (String tagsItem ) {
225- if (this .tags == null ) {
226- this .tags = new ArrayList <>();
227- }
228- this .tags .add (tagsItem );
229- return this ;
230- }
231-
232- /**
233- * A list of tags associated with the pipeline.
234- *
235- * @return tags
236- */
237- @ jakarta .annotation .Nullable
238- @ JsonProperty (JSON_PROPERTY_TAGS )
239- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
240- public List <String > getTags () {
241- return tags ;
242- }
243-
244- public void setTags (List <String > tags ) {
245- this .tags = tags ;
246- }
247-
248190 /**
249191 * Type of pipeline.
250192 *
@@ -313,45 +255,32 @@ public boolean equals(Object o) {
313255 return false ;
314256 }
315257 LogsPipeline logsPipeline = (LogsPipeline ) o ;
316- return Objects .equals (this .description , logsPipeline .description )
317- && Objects .equals (this .filter , logsPipeline .filter )
258+ return Objects .equals (this .filter , logsPipeline .filter )
318259 && Objects .equals (this .id , logsPipeline .id )
319260 && Objects .equals (this .isEnabled , logsPipeline .isEnabled )
320261 && Objects .equals (this .isReadOnly , logsPipeline .isReadOnly )
321262 && Objects .equals (this .name , logsPipeline .name )
322263 && Objects .equals (this .processors , logsPipeline .processors )
323- && Objects .equals (this .tags , logsPipeline .tags )
324264 && Objects .equals (this .type , logsPipeline .type )
325265 && Objects .equals (this .additionalProperties , logsPipeline .additionalProperties );
326266 }
327267
328268 @ Override
329269 public int hashCode () {
330270 return Objects .hash (
331- description ,
332- filter ,
333- id ,
334- isEnabled ,
335- isReadOnly ,
336- name ,
337- processors ,
338- tags ,
339- type ,
340- additionalProperties );
271+ filter , id , isEnabled , isReadOnly , name , processors , type , additionalProperties );
341272 }
342273
343274 @ Override
344275 public String toString () {
345276 StringBuilder sb = new StringBuilder ();
346277 sb .append ("class LogsPipeline {\n " );
347- sb .append (" description: " ).append (toIndentedString (description )).append ("\n " );
348278 sb .append (" filter: " ).append (toIndentedString (filter )).append ("\n " );
349279 sb .append (" id: " ).append (toIndentedString (id )).append ("\n " );
350280 sb .append (" isEnabled: " ).append (toIndentedString (isEnabled )).append ("\n " );
351281 sb .append (" isReadOnly: " ).append (toIndentedString (isReadOnly )).append ("\n " );
352282 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
353283 sb .append (" processors: " ).append (toIndentedString (processors )).append ("\n " );
354- sb .append (" tags: " ).append (toIndentedString (tags )).append ("\n " );
355284 sb .append (" type: " ).append (toIndentedString (type )).append ("\n " );
356285 sb .append (" additionalProperties: " )
357286 .append (toIndentedString (additionalProperties ))
0 commit comments