Show / Hide Table of Contents

Class PropertyDefinition

Defines an property of a macro, variable or query.

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

Properties

IsGlobal

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

True if property is for all macros. Not applicable for macro variables or query.

Name

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

Name of the property.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PropertyDefinition.TypeEnum? Type { get; set; }
Property Value
Type Description
PropertyDefinition.TypeEnum?

Type of the property.

Value

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

Value of the property.

In this article
Back to top