Show / Hide Table of Contents

Class ManagedMySqlDatabaseOutboundReplicationSummary

An outbound replication record of a MySQL Server.

Inheritance
object
ManagedMySqlDatabaseOutboundReplicationSummary
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 ManagedMySqlDatabaseOutboundReplicationSummary

Properties

ReplicaHost

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

The host name of the replica server, as specified on the replica with the --report-host option. This can differ from the machine name as configured in the operating system.

ReplicaPort

Declaration
[JsonProperty(PropertyName = "replicaPort")]
public int? ReplicaPort { get; set; }
Property Value
Type Description
int?

The port on the replica server, as specified on the replica with the --report-port option. A zero in this column means that the replica port (--report-port) was not set.

ReplicaServerId

Declaration
[Required(ErrorMessage = "ReplicaServerId is required.")]
[JsonProperty(PropertyName = "replicaServerId")]
public long? ReplicaServerId { get; set; }
Property Value
Type Description
long?

The server ID value of the replica.

Remarks

Required

ReplicaUuid

Declaration
[Required(ErrorMessage = "ReplicaUuid is required.")]
[JsonProperty(PropertyName = "replicaUuid")]
public string ReplicaUuid { get; set; }
Property Value
Type Description
string

The Universally Unique Identifier (UUID) value of the replica server.

Remarks

Required

In this article
Back to top