MySqlChannelApplyError¶
- 
class oci.database_management.models.MySqlChannelApplyError(**kwargs)¶
- Bases: - object- MySQL server replication channel name and error from its apply operation. - Methods - __init__(**kwargs)- Initializes a new MySqlChannelApplyError object with values from keyword arguments. - Attributes - apply_error- [Required] Gets the apply_error of this MySqlChannelApplyError. - channel_name- Gets the channel_name of this MySqlChannelApplyError. - 
__init__(**kwargs)¶
- Initializes a new MySqlChannelApplyError object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - channel_name (str) – The value to assign to the channel_name property of this MySqlChannelApplyError.
- apply_error (oci.database_management.models.MySqlApplyError) – The value to assign to the apply_error property of this MySqlChannelApplyError.
 
 - 
apply_error¶
- [Required] Gets the apply_error of this MySqlChannelApplyError. - Returns: - The apply_error of this MySqlChannelApplyError. - Return type: - oci.database_management.models.MySqlApplyError 
 - 
channel_name¶
- Gets the channel_name of this MySqlChannelApplyError. The name of the replication channel. - Returns: - The channel_name of this MySqlChannelApplyError. - Return type: - str 
 
-