Show / Hide Table of Contents

Class LogAnalyticsFieldUsages

Contains information about resources such as parsers and sources that use the field.

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

Properties

DependentParsers

Declaration
[Required(ErrorMessage = "DependentParsers is required.")]
[JsonProperty(PropertyName = "dependentParsers")]
public List<DependentParser> DependentParsers { get; set; }
Property Value
Type Description
List<DependentParser>

Parsers that depend on or use the field.

Remarks

Required

DependentSources

Declaration
[Required(ErrorMessage = "DependentSources is required.")]
[JsonProperty(PropertyName = "dependentSources")]
public List<DependentSource> DependentSources { get; set; }
Property Value
Type Description
List<DependentSource>

Sources that depend on or use the field.

Remarks

Required

In this article
Back to top