Show / Hide Table of Contents

Class AttentionLogSummary

The details for one attention log entry.

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

Properties

Action

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

The recommended action to handle the attention log.

Cause

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

The cause of the attention log.

FileLocation

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

The attention log file location.

MessageContent

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

The contents of the attention log message.

MessageType

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

The type of attention log message.

Remarks

Required

MessageUrgency

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

The urgency of the attention log.

Remarks

Required

Scope

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

The database scope for the attention log.

SupplementalDetail

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

The supplemental details of the attention log.

TargetUser

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

The user who must act on the attention log message.

Timestamp

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

The date and time the attention log was created.

In this article
Back to top