Show / Hide Table of Contents

Class EfdRegexResult

EfdRegexResult

Inheritance
object
EfdRegexResult
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 EfdRegexResult

Properties

BaseFieldName

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

The base field name.

Id

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

the unique identifier.

IsValidRegexSyntax

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

A flag indicating whether or not the regular expression is valid.

MatchResult

Declaration
[JsonProperty(PropertyName = "matchResult")]
public RegexMatchResult MatchResult { get; set; }
Property Value
Type Description
RegexMatchResult

ParsedFieldCount

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

The parsed field count.

ParsedFields

Declaration
[JsonProperty(PropertyName = "parsedFields")]
public Dictionary<string, string> ParsedFields { get; set; }
Property Value
Type Description
Dictionary<string, string>

The parsed fields.

Regex

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

The regular expression.

Status

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

The status.

StatusDescription

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

The Status description.

Violations

Declaration
[JsonProperty(PropertyName = "violations")]
public List<Violation> Violations { get; set; }
Property Value
Type Description
List<Violation>

The list of violations (if any).

In this article
Back to top