Class GenerateDbSystemStatusDetails
Parameters for selecting which attributes to include in the DB System status.
Inherited Members
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. |