Show / Hide Table of Contents

Class PropertyOverride

Property overrides at the scope of objects. For example, if you want to use logSourceName as 'xyz' for all objects that conatins string 'abc/' then define matchType as 'contains', matchValue as 'abc/', propertyName as 'logSourceName' and propertyValue as 'xyz'.

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

Properties

MatchType

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

Match Type. Accepted values are: contains.

MatchValue

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

Match Value.

PropertyName

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

Property to override. Accepted values are: logSourceName, charEncoding.

PropertyValue

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

Value of the property.

In this article
Back to top