Show / Hide Table of Contents

Class DependentParser

A parser that depends on or uses the resource such as a field or another parser.

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

Properties

Dependencies

Declaration
[JsonProperty(PropertyName = "dependencies")]
public List<Dependency> Dependencies { get; set; }
Property Value
Type Description
List<Dependency>

The list of dependencies of the parser.

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.

ParserDisplayName

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

The parser display name.

ParserId

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

The parser unique identifier.

ParserName

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

The parser name.

ParserType

Declaration
[JsonProperty(PropertyName = "parserType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DependentParser.ParserTypeEnum? ParserType { get; set; }
Property Value
Type Description
DependentParser.ParserTypeEnum?

The parser type

In this article
Back to top