Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ public class ComponentPurgeBodyFilters {

/**
* A query operator to evaluate over the provided column and value(s).
* Supported operators are ==, =~, in, in~, >, >=, <, <=,
* between, and have the same behavior as they would in a KQL query.
*/
@JsonProperty(value = "operator")
private String operator;
Expand Down Expand Up @@ -61,7 +63,7 @@ public ComponentPurgeBodyFilters withColumn(String column) {
}

/**
* Get a query operator to evaluate over the provided column and value(s).
* Get a query operator to evaluate over the provided column and value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between, and have the same behavior as they would in a KQL query.
*
* @return the operator value
*/
Expand All @@ -70,7 +72,7 @@ public String operator() {
}

/**
* Set a query operator to evaluate over the provided column and value(s).
* Set a query operator to evaluate over the provided column and value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between, and have the same behavior as they would in a KQL query.
*
* @param operator the operator value to set
* @return the ComponentPurgeBodyFilters object itself.
Expand Down