Show / Hide Table of Contents

Class CreateLogAnalyticsEntityTypeDetails

Details for new log analytics entity type to be added.

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

Properties

Category

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

Log analytics entity type category. Category will be used for grouping and filtering.

Name

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

Log analytics entity type name.

Remarks

Required

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<EntityTypeProperty> Properties { get; set; }
Property Value
Type Description
List<EntityTypeProperty>

Log analytics entity type property definition.

In this article
Back to top