Show / Hide Table of Contents

Class AssignTargetUuidHandling

Enables assignment of IDs on the target to anonymous transactions coming from the source. The target server UUID is added as a prefix to the ID.

Inheritance
object
AnonymousTransactionsHandling
AssignTargetUuidHandling
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 AssignTargetUuidHandling : AnonymousTransactionsHandling

Properties

LastConfiguredLogFilename

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

Specifies one of the coordinates (file) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.

LastConfiguredLogOffset

Declaration
[JsonProperty(PropertyName = "lastConfiguredLogOffset")]
public long? LastConfiguredLogOffset { get; set; }
Property Value
Type Description
long?

Specifies one of the coordinates (offset) at which the replica should begin reading the source's log. As this value specifies the point where replication starts from, it is only used once, when it starts. It is never used again, unless a new UpdateChannel operation modifies it.

In this article
Back to top