Show / Hide Table of Contents

Class MySqlChannelApplyError

MySQL server replication Channel name and error from its apply operation.

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

Properties

ApplyError

Declaration
[Required(ErrorMessage = "ApplyError is required.")]
[JsonProperty(PropertyName = "applyError")]
public MySqlApplyError ApplyError { get; set; }
Property Value
Type Description
MySqlApplyError
Remarks

Required

ChannelName

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

The name of the replication channel

In this article
Back to top