Show / Hide Table of Contents

Class ManagedMySqlDatabaseBinaryLogInformation

Information pertaining to the binary logs of a MySQL server.

Inheritance
object
ManagedMySqlDatabaseBinaryLogInformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top