ComponentPurgeBodyFilters Constructors

Definition

Overloads

ComponentPurgeBodyFilters()

Initializes a new instance of the ComponentPurgeBodyFilters class.

ComponentPurgeBodyFilters(String, String, Object, String)

Initializes a new instance of the ComponentPurgeBodyFilters class.

ComponentPurgeBodyFilters()

Initializes a new instance of the ComponentPurgeBodyFilters class.

public ComponentPurgeBodyFilters ();
Public Sub New ()

Applies to

ComponentPurgeBodyFilters(String, String, Object, String)

Initializes a new instance of the ComponentPurgeBodyFilters class.

public ComponentPurgeBodyFilters (string column = default, string operatorProperty = default, object value = default, string key = default);
new Microsoft.Azure.Management.ApplicationInsights.Management.Models.ComponentPurgeBodyFilters : string * string * obj * string -> Microsoft.Azure.Management.ApplicationInsights.Management.Models.ComponentPurgeBodyFilters
Public Sub New (Optional column As String = Nothing, Optional operatorProperty As String = Nothing, Optional value As Object = Nothing, Optional key As String = Nothing)

Parameters

column
String

The column of the table over which the given query should run

operatorProperty
String

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.

value
Object

the value for the operator to function over. This can be a number (e.g., > 100), a string (timestamp >= '2017-09-01') or array of values.

key
String

When filtering over custom dimensions, this key will be used as the name of the custom dimension.

Applies to