Show / Hide Table of Contents

Class LogAnalyticsParserFunctionParameter

LogAnalyticsParserFunctionParameter

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

Properties

ParserFunctionId

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

The parser function unique identifier.

ParserFunctionParameterId

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

The parameter unique identifier.

ParserFunctionParameterName

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

The internal name

ParserMetaPluginParameter

Declaration
[JsonProperty(PropertyName = "parserMetaPluginParameter")]
public LogAnalyticsParserMetaPluginParameter ParserMetaPluginParameter { get; set; }
Property Value
Type Description
LogAnalyticsParserMetaPluginParameter

ParserMetaPluginParameterName

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

The parameter internal name.

ParserMetaPluginParameterValue

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

The parameter value.

ParserName

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

The parser internal name.

In this article
Back to top