Show / Hide Table of Contents

Class UpdateChannelTargetFromDbSystemDetails

Parameters detailing how to provision the target endpoint that is a DB System.

Inheritance
object
UpdateChannelTargetDetails
UpdateChannelTargetFromDbSystemDetails
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 UpdateChannelTargetFromDbSystemDetails : UpdateChannelTargetDetails

Properties

ApplierUsername

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

The username for the replication applier of the target MySQL DB System.

ChannelName

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

The case-insensitive name that identifies the replication channel. Channel names must follow the rules defined for MySQL identifiers. The names of non-Deleted Channels must be unique for each DB System.

DelayInSeconds

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

Specifies the amount of time, in seconds, that the channel waits before applying a transaction received from the source.

Filters

Declaration
[JsonProperty(PropertyName = "filters")]
public List<ChannelFilter> Filters { get; set; }
Property Value
Type Description
List<ChannelFilter>

Replication filter rules to be applied at the DB System Channel target.

TablesWithoutPrimaryKeyHandling

Declaration
[JsonProperty(PropertyName = "tablesWithoutPrimaryKeyHandling")]
[JsonConverter(typeof(StringEnumConverter))]
public ChannelTargetDbSystem.TablesWithoutPrimaryKeyHandlingEnum? TablesWithoutPrimaryKeyHandling { get; set; }
Property Value
Type Description
ChannelTargetDbSystem.TablesWithoutPrimaryKeyHandlingEnum?

Specifies how a replication channel handles the creation and alteration of tables that do not have a primary key.

In this article
Back to top