Show / Hide Table of Contents

Class LogAnalyticsLabelAlias

Label alias mapping view

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

Properties

Alias

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

The alias.

AliasDisplayName

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

The alias display name.

DisplayName

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

The label display name.

IsSystem

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

The system flag. A value of false denotes a custom, or user defined object. A value of true denotes a built in object.

Name

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

The label name.

Priority

Declaration
[JsonProperty(PropertyName = "priority")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogAnalyticsLabelAlias.PriorityEnum? Priority { get; set; }
Property Value
Type Description
LogAnalyticsLabelAlias.PriorityEnum?

The label priority. Default value is NONE.

In this article
Back to top