Show / Hide Table of Contents

Class AssociationProperty

A property represented as a name-value pair.

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

Properties

Name

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

The name of the association property.

Remarks

Required

Patterns

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

A list of pattern level overrides for this property.

Value

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

The value of the association property.

In this article
Back to top