Show / Hide Table of Contents

Class UpsertLogAnalyticsFieldDetails

Upsert LogAnalytics Field Details

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

Properties

DataType

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

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

IsKeepDuplicates

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

A flag indicating whether duplicates should be retained while processing multi-valued fields.

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.

Name

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

The field internal name.

In this article
Back to top