Show / Hide Table of Contents

Class LogAnalyticsFieldSummary

A summary of a field.

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

Properties

CeeAlias

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

The name this field is given in the common event expression standard from mitre.org. This is used for reference when exporting content conforming to CEE standard

DataType

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

The field data type.

Description

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

The field description.

DisplayName

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

The field display name.

EditVersion

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

The field edit version.

FacetPriority

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

The facet priority.

IsFacetEligible

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

A flag inidcating whether or not the facet is elibigle for use.

IsHighCardinality

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

A flag inidcating whether or not the cardinality of the field is high.

IsKeepDuplicates

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

A flag indicating whether or not duplicates would be retained.

IsLargeData

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

A flag inidcating whether or not the field is a large data field.

IsMetricKeyEligible

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

A flag inidcating whether or not the field is metric key eligible.

IsMetricValueEligible

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

A flag inidcating whether or not the field is metric value eligible.

IsMultiValued

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

A flag indicating whether or not the field is multi-valued.

IsPrimary

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

A flag inidcating whether or not this is a primary field.

IsSummarizable

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

A flag inidcating whether or not the field can be summarized.

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.

IsTableEligible

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

A flag inidcating whether or not the field is table eligible.

MappedValue

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

The mapped value.

Name

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

The field internal name.

RangeFacetEligible

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

A flag inidcating whether or not the field is range facet eligible.

RegularExpression

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

The field default regular expression.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The last updated date and time.

UnitType

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

The field unit type.

In this article
Back to top