Show / Hide Table of Contents

Class LogAnalyticsSourceDataFilter

LogAnalyticsSourceDataFilter

Inheritance
object
LogAnalyticsSourceDataFilter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class LogAnalyticsSourceDataFilter

Properties

DataFilterId

Declaration
[JsonProperty(PropertyName = "dataFilterId")]
public long? DataFilterId { get; set; }
Property Value
Type Description
long?

The filter unique identifier.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The filter description.

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The filter display name.

EditVersion

Declaration
[JsonProperty(PropertyName = "editVersion")]
public long? EditVersion { get; set; }
Property Value
Type Description
long?

The filter edit version.

FieldName

Declaration
[JsonProperty(PropertyName = "fieldName")]
public string FieldName { get; set; }
Property Value
Type Description
string

The field internal name.

FilterType

Declaration
[JsonProperty(PropertyName = "filterType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogAnalyticsSourceDataFilter.FilterTypeEnum? FilterType { get; set; }
Property Value
Type Description
LogAnalyticsSourceDataFilter.FilterTypeEnum?

The filter type.

HashType

Declaration
[JsonProperty(PropertyName = "hashType")]
public int? HashType { get; set; }
Property Value
Type Description
int?

The hash type.

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

A flag inidcating whether or not the filter is enabled.

IsSystem

Declaration
[JsonProperty(PropertyName = "isSystem")]
public bool? IsSystem { get; set; }
Property Value
Type Description
bool?

The system flag. A value of false denotes a custom, or user defined object. A value of true denotes a built in object.

MatchRegularExpression

Declaration
[JsonProperty(PropertyName = "matchRegularExpression")]
public string MatchRegularExpression { get; set; }
Property Value
Type Description
string

The regular expression for matching.

Order

Declaration
[JsonProperty(PropertyName = "order")]
public long? Order { get; set; }
Property Value
Type Description
long?

The filter order.

Path

Declaration
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
Property Value
Type Description
string

The filter path.

ReplacementString

Declaration
[JsonProperty(PropertyName = "replacementString")]
public string ReplacementString { get; set; }
Property Value
Type Description
string

The replacement string.

SourceId

Declaration
[JsonProperty(PropertyName = "sourceId")]
public long? SourceId { get; set; }
Property Value
Type Description
long?

The source unique identifier.

In this article
Back to top