Show / Hide Table of Contents

Class LogAnalyticsParserFunction

LogAnalyticsParserFunction

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

Properties

IsEnabled

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

A flag inidcating whether or not the parser function 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.

ParserFunctionId

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

The parser function unique identifier.

ParserFunctionName

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

The parser function internal name.

ParserFunctionParameters

Declaration
[JsonProperty(PropertyName = "parserFunctionParameters")]
public List<LogAnalyticsParserFunctionParameter> ParserFunctionParameters { get; set; }
Property Value
Type Description
List<LogAnalyticsParserFunctionParameter>

The parser function parameter list.

ParserFunctionPriority

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

The parser function priority.

ParserId

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

The associated parser unique identifier.

ParserMetaPlugin

Declaration
[JsonProperty(PropertyName = "parserMetaPlugin")]
public LogAnalyticsParserMetaPlugin ParserMetaPlugin { get; set; }
Property Value
Type Description
LogAnalyticsParserMetaPlugin

ParserMetaPluginName

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

The plugin internal name.

ParserName

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

The associated parser internal name.

In this article
Back to top