Show / Hide Table of Contents

Class AlertLogSummary

The detail for one alert log entry.

Inheritance
object
AlertLogSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class AlertLogSummary

Properties

FileLocation

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

The alert log file location.

MessageContent

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

The contents of the alert log message.

MessageLevel

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

The level of the alert log.

Remarks

Required

MessageType

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

The type of alert log message.

Remarks

Required

SupplementalDetail

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

The supplemental details of the alert log.

Timestamp

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

The date and time the alert log was created.

In this article
Back to top