Show / Hide Table of Contents

Class UpsertLogAnalyticsLabelDetails

Upsert LogAnalytics Label Details

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

Properties

Aliases

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

The alias list.

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 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.

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(StringEnumConverter))]
public UpsertLogAnalyticsLabelDetails.PriorityEnum? Priority { get; set; }
Property Value
Type Description
UpsertLogAnalyticsLabelDetails.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?

suggest type

Type

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

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

In this article
Back to top