Class ManagedMySqlDatabaseBinaryLogInformation
Information pertaining to the binary logs of a MySQL server.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class ManagedMySqlDatabaseBinaryLogInformation
Properties
BinaryLogCompression
Declaration
[JsonProperty(PropertyName = "binaryLogCompression")]
public string BinaryLogCompression { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Indicates whether compression is enabled for transactions written to binary log files on the MySQL server. |
BinaryLogCompressionPercent
Declaration
[JsonProperty(PropertyName = "binaryLogCompressionPercent")]
public int? BinaryLogCompressionPercent { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The compression ratio for the binary log, expressed as a percentage. |
BinaryLogFormat
Declaration
[JsonProperty(PropertyName = "binaryLogFormat")]
public string BinaryLogFormat { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The binary logging format used by the MySQL server. |
BinaryLogName
Declaration
[JsonProperty(PropertyName = "binaryLogName")]
public string BinaryLogName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the binary log file. |
BinaryLogPosition
Declaration
[JsonProperty(PropertyName = "binaryLogPosition")]
public long? BinaryLogPosition { get; set; }
Property Value
| Type | Description |
|---|---|
| long? | The position within the binary log file. |
BinaryLogging
Declaration
[Required(ErrorMessage = "BinaryLogging is required.")]
[JsonProperty(PropertyName = "binaryLogging")]
public string BinaryLogging { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The status of binary logging on the MySQL server. |
Remarks
Required