Show / Hide Table of Contents

Class LogAnalyticsEntityType

Description of log analytics entity type.

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

Properties

Category

Declaration
[Required(ErrorMessage = "Category is required.")]
[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.

Remarks

Required

CloudType

Declaration
[Required(ErrorMessage = "CloudType is required.")]
[JsonProperty(PropertyName = "cloudType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EntityCloudType? CloudType { get; set; }
Property Value
Type Description
EntityCloudType?

Log analytics entity type group. That can be CLOUD (OCI) or NON_CLOUD otherwise.

Remarks

Required

CompartmentId

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

Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).

InternalName

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

Internal name for the log analytics entity type.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EntityLifecycleStates? LifecycleState { get; set; }
Property Value
Type Description
EntityLifecycleStates?

The current lifecycle state of the log analytics entity.

Remarks

Required

ManagementAgentEligibilityStatus

Declaration
[JsonProperty(PropertyName = "managementAgentEligibilityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LogAnalyticsEntityType.ManagementAgentEligibilityStatusEnum? ManagementAgentEligibilityStatus { get; set; }
Property Value
Type Description
LogAnalyticsEntityType.ManagementAgentEligibilityStatusEnum?

This field indicates whether logs for entities of this type can be collected using a management agent.

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>

The parameters used in file patterns specified in log sources for this log analytics entity type.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Time the log analytics entity type was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

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

Time the log analytics entity type was updated. An RFC3339 formatted datetime string.

Remarks

Required

In this article
Back to top