Show / Hide Table of Contents

Class ScopeFilter

Scope filter to reduce the scope of the query.

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

Properties

FieldName

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

Field must be a valid logging-analytics out-of-the-box field.

Remarks

Required

Values

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

Field values that will be used to filter the query scope. Please note all values should reflect the fields data type otherwise the query is subject to fail.

Remarks

Required

In this article
Back to top