Show / Hide Table of Contents

Class OpenAlertSummary

An alert from the Exadata storage server.

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

Properties

Message

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

The alert message.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AlertSeverityEnum? Severity { get; set; }
Property Value
Type Description
AlertSeverityEnum?

The severity of the alert.

TimeStartAt

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

The start time of the alert.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AlertTypeEnum? Type { get; set; }
Property Value
Type Description
AlertTypeEnum?

The type of alert.

In this article
Back to top