diff --git a/applicationinsights/resource-manager/v2015_05_01/src/main/java/com/microsoft/azure/management/applicationinsights/v2015_05_01/ComponentPurgeBodyFilters.java b/applicationinsights/resource-manager/v2015_05_01/src/main/java/com/microsoft/azure/management/applicationinsights/v2015_05_01/ComponentPurgeBodyFilters.java index e84676243cd9..fabce304e501 100644 --- a/applicationinsights/resource-manager/v2015_05_01/src/main/java/com/microsoft/azure/management/applicationinsights/v2015_05_01/ComponentPurgeBodyFilters.java +++ b/applicationinsights/resource-manager/v2015_05_01/src/main/java/com/microsoft/azure/management/applicationinsights/v2015_05_01/ComponentPurgeBodyFilters.java @@ -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; @@ -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 */ @@ -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.