Show / Hide Table of Contents

Class DbSystemStatus

Runtime status summary of a DbSystem, aggregating information about availability and operational indicators.

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

Properties

DbSystemId

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

The OCID of the DB System for which the status is gathered.

Remarks

Required

DbSystemStatusResult

Declaration
[JsonProperty(PropertyName = "dbSystemStatusResult")]
public DbSystemStatusResult DbSystemStatusResult { get; set; }
Property Value
Type Description
DbSystemStatusResult

TimeCreated

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

The date and time that the Work Request to generate the DB System status was issued, as described by RFC 3339.

Remarks

Required

TimeUpdated

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

The date and time that the DB System status was generated, as described by RFC 3339.

Remarks

Required

In this article
Back to top