Show / Hide Table of Contents

Class EventType

The event type.

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

Properties

EventTypeName

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

The name of the event type.

IsEnabled

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

A flag indicating whether or not the event type is enabled.

IsSystem

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

A flag indicating whether or not the event type is user defined.

SpecVersion

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

The version.

TimeUpdated

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

The last updated time.

In this article
Back to top