Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR applicationinsights/resource-manager] Improve documentation for App Insights purge #3518

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