Show / Hide Table of Contents

Class ValidateLabelConditionResult

The result of the label condition validation

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

Properties

ConditionBlock

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

Required

ConditionString

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

String representation of the validated label condition.

Remarks

Required

EvaluationResult

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

The result of evaluating the condition blocks against the specified field values. Either true or false.

FieldValues

Declaration
[JsonProperty(PropertyName = "fieldValues")]
public List<LogAnalyticsProperty> FieldValues { get; set; }
Property Value
Type Description
List<LogAnalyticsProperty>

Field values against which the label condition was evaluated.

Status

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

The validation status.

Remarks

Required

StatusDescription

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

The validation status description.

In this article
Back to top