WorkspacePurgeBodyFilters Constructors

Definition

Overloads

WorkspacePurgeBodyFilters()

Initializes a new instance of the WorkspacePurgeBodyFilters class.

WorkspacePurgeBodyFilters(String, String, Object, String)

Initializes a new instance of the WorkspacePurgeBodyFilters class.

WorkspacePurgeBodyFilters()

Initializes a new instance of the WorkspacePurgeBodyFilters class.

public WorkspacePurgeBodyFilters ();
Public Sub New ()

Applies to

WorkspacePurgeBodyFilters(String, String, Object, String)

Initializes a new instance of the WorkspacePurgeBodyFilters class.

public WorkspacePurgeBodyFilters (string column = default, string operatorProperty = default, object value = default, string key = default);
new Microsoft.Azure.Management.OperationalInsights.Models.WorkspacePurgeBodyFilters : string * string * obj * string -> Microsoft.Azure.Management.OperationalInsights.Models.WorkspacePurgeBodyFilters
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