Show / Hide Table of Contents

Class IngestTimeRuleAdditionalFieldCondition

The additional field condition(s) to evaluate for an ingest time rule.

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

Properties

ConditionField

Declaration
[Required(ErrorMessage = "ConditionField is required.")]
[JsonProperty(PropertyName = "conditionField")]
public string ConditionField { get; set; }
Property Value
Type Description
string

The additional field name to be evaluated.

Remarks

Required

ConditionOperator

Declaration
[Required(ErrorMessage = "ConditionOperator is required.")]
[JsonProperty(PropertyName = "conditionOperator")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IngestTimeRuleAdditionalFieldCondition.ConditionOperatorEnum? ConditionOperator { get; set; }
Property Value
Type Description
IngestTimeRuleAdditionalFieldCondition.ConditionOperatorEnum?

The operator to be used for evaluating the additional field.

Remarks

Required

ConditionValue

Declaration
[Required(ErrorMessage = "ConditionValue is required.")]
[JsonProperty(PropertyName = "conditionValue")]
public string ConditionValue { get; set; }
Property Value
Type Description
string

The additional field value to be evaluated.

Remarks

Required

In this article
Back to top