Show / Hide Table of Contents

Class LogAnalyticsLabel

LogAnalytics label

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

Properties

Aliases

Declaration
[JsonProperty(PropertyName = "aliases")]
public List<LogAnalyticsLabelAlias> Aliases { get; set; }
Property Value
Type Description
List<LogAnalyticsLabelAlias>

An array of label aliases.

CountUsageInSource

Declaration
[JsonProperty(PropertyName = "countUsageInSource")]
public long? CountUsageInSource { get; set; }
Property Value
Type Description
long?

The source usage count for this label.

Description

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

The label description.

DisplayName

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

The label display name.

EditVersion

Declaration
[JsonProperty(PropertyName = "editVersion")]
public long? EditVersion { get; set; }
Property Value
Type Description
long?

The label edit version.

Impact

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

The label impact.

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 label. A value of true denotes a built in label.

IsUserDeleted

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

A flag indicating whether or not the label has been deleted.

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 LogAnalyticsLabel.PriorityEnum? Priority { get; set; }
Property Value
Type Description
LogAnalyticsLabel.PriorityEnum?

The label priority. Valid values are (NONE, LOW, HIGH). NONE is default.

Recommendation

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

The label recommendation.

SuggestType

Declaration
[JsonProperty(PropertyName = "suggestType")]
public long? SuggestType { get; set; }
Property Value
Type Description
long?

The type of suggestion for label usage.

Type

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

The label type. Valid values are (INFO, PROBLEM). INFO is default.

In this article
Back to top