Show / Hide Table of Contents

Class DbSystemStatusResult

The status collected from the DB System.

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

Properties

AreAllMysqlInstancesHealthy

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

Specifies if the single MySQL instance in a standalone DB System or all MySQL instances in a highly available DB System (excluding read replicas) are healthy.

CanAcceptClientConnections

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

Specifies if the Read/Write endpoint of the DB System can accept client connections.

ChannelsStatus

Declaration
[JsonProperty(PropertyName = "channelsStatus")]
public List<ChannelStatusResult> ChannelsStatus { get; set; }
Property Value
Type Description
List<ChannelStatusResult>

A list showing the status of the channels attached to the DB System for the requested channel IDs.

GtidSet

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

The GTID set on the DB System (either GTID_EXECUTED or GTID_AVAILABLE) as specified by the gtidSetType parameter in the request.

IsGtidSetApplied

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

Specifies if the GTID set in the gtidSetToApply parameter (if provided in the request) is fully applied on the DB System. If gtidSetToApply is not provided in the request or is "", this field will be empty.

IsInOfflineMode

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

Specifies if the DB System is in offline mode based on the value of the MySQL system variable offline_mode. If True, access is allowed only to users with specific privileges. If False, access is allowed for all MySQL user accounts.

IsStorageFull

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

Specifies if there is any MySQL instance (excluding read replicas) whose storage capacity is below [storage reserve] (https://docs.oracle.com/en-us/iaas/mysql-database/doc/health-monitor.html#GUID-C6CE25C7-B728-4C80-B548-A76B42005C83.html).

IsWritable

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

Specifies if connected users can run write queries on the DB System.

In this article
Back to top