Show / Hide Table of Contents

Class AssignManualUuidHandling

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

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

Uuid

Declaration
[JsonProperty(PropertyName = "uuid")]
public Guid Uuid { get; set; }
Property Value
Type Description
Guid

The UUID that is used as a prefix when generating transaction identifiers for anonymous transactions coming from the source. You can change the UUID later.

In this article
Back to top