Show / Hide Table of Contents

Class GenerateDbSystemStatusDetails

Parameters for selecting which attributes to include in the DB System status.

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

Properties

ChannelIds

Declaration
[JsonProperty(PropertyName = "channelIds")]
public List<string> ChannelIds { get; set; }
Property Value
Type Description
List<string>

List of Channel IDs for which to collect status information.

GtidSetToApply

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

Specifies the GTID set to be checked on the DB System to determine whether it has been applied. The result of the check is isGtidSetApplied in the response.

GtidSetType

Declaration
[JsonProperty(PropertyName = "gtidSetType")]
[JsonConverter(typeof(StringEnumConverter))]
public GenerateDbSystemStatusDetails.GtidSetTypeEnum? GtidSetType { get; set; }
Property Value
Type Description
GenerateDbSystemStatusDetails.GtidSetTypeEnum?

Specifies whether to collect the full set of GTIDs executed on the DB System (gtid_executed) or the set of GTIDs available in the DB System binary logs, not part of (gtid_purged) (GTID_AVAILABLE, which is gtid_executed - gtid_purged). Use GTID_AVAILABLE if gtid_executed is too large to fit in the response.

In this article
Back to top