Show / Hide Table of Contents

Class EffectivePropertySummary

A property and its effective value details.

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

Properties

EffectiveLevel

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

The level from which the effective value was determined.

Name

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

The property name.

Remarks

Required

Patterns

Declaration
[JsonProperty(PropertyName = "patterns")]
public List<PatternOverride> Patterns { get; set; }
Property Value
Type Description
List<PatternOverride>

A list of pattern level override values for the property.

Value

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

The effective value of the property. This is determined by considering the value set at the most effective level.

In this article
Back to top