MySqlApplyError

class oci.database_management.models.MySqlApplyError(**kwargs)

Bases: object

Error from apply operation of a MySQL server replication channel.

Methods

__init__(**kwargs) Initializes a new MySqlApplyError object with values from keyword arguments.

Attributes

last_error_message Gets the last_error_message of this MySqlApplyError.
last_error_number Gets the last_error_number of this MySqlApplyError.
time_last_error Gets the time_last_error of this MySqlApplyError.
worker_errors Gets the worker_errors of this MySqlApplyError.
__init__(**kwargs)

Initializes a new MySqlApplyError object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • last_error_number (int) – The value to assign to the last_error_number property of this MySqlApplyError.
  • last_error_message (str) – The value to assign to the last_error_message property of this MySqlApplyError.
  • time_last_error (datetime) – The value to assign to the time_last_error property of this MySqlApplyError.
  • worker_errors (list[oci.database_management.models.MySqlApplyErrorWorker]) – The value to assign to the worker_errors property of this MySqlApplyError.
last_error_message

Gets the last_error_message of this MySqlApplyError. The error message of the most recent error that caused the SQL/coordinator thread to stop.

Returns:The last_error_message of this MySqlApplyError.
Return type:str
last_error_number

Gets the last_error_number of this MySqlApplyError. The error number of the most recent error that caused the SQL/coordinator thread to stop.

Returns:The last_error_number of this MySqlApplyError.
Return type:int
time_last_error

Gets the time_last_error of this MySqlApplyError. The timestamp when the most recent SQL/coordinator error occurred.

Returns:The time_last_error of this MySqlApplyError.
Return type:datetime
worker_errors

Gets the worker_errors of this MySqlApplyError. A list of MySqlApplyErrorWorker records.

Returns:The worker_errors of this MySqlApplyError.
Return type:list[oci.database_management.models.MySqlApplyErrorWorker]