GenerateDbSystemStatusDetails

class oci.mysql.models.GenerateDbSystemStatusDetails(**kwargs)

Bases: object

Parameters for selecting which attributes to include in the DB System status.

Attributes

GTID_SET_TYPE_GTID_AVAILABLE A constant which can be used with the gtid_set_type property of a GenerateDbSystemStatusDetails.
GTID_SET_TYPE_GTID_EXECUTED A constant which can be used with the gtid_set_type property of a GenerateDbSystemStatusDetails.
channel_ids Gets the channel_ids of this GenerateDbSystemStatusDetails.
gtid_set_to_apply Gets the gtid_set_to_apply of this GenerateDbSystemStatusDetails.
gtid_set_type Gets the gtid_set_type of this GenerateDbSystemStatusDetails.

Methods

__init__(**kwargs) Initializes a new GenerateDbSystemStatusDetails object with values from keyword arguments.
GTID_SET_TYPE_GTID_AVAILABLE = 'GTID_AVAILABLE'

A constant which can be used with the gtid_set_type property of a GenerateDbSystemStatusDetails. This constant has a value of “GTID_AVAILABLE”

GTID_SET_TYPE_GTID_EXECUTED = 'GTID_EXECUTED'

A constant which can be used with the gtid_set_type property of a GenerateDbSystemStatusDetails. This constant has a value of “GTID_EXECUTED”

__init__(**kwargs)

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

Parameters:
  • gtid_set_type (str) – The value to assign to the gtid_set_type property of this GenerateDbSystemStatusDetails. Allowed values for this property are: “GTID_EXECUTED”, “GTID_AVAILABLE”
  • gtid_set_to_apply (str) – The value to assign to the gtid_set_to_apply property of this GenerateDbSystemStatusDetails.
  • channel_ids (list[str]) – The value to assign to the channel_ids property of this GenerateDbSystemStatusDetails.
channel_ids

Gets the channel_ids of this GenerateDbSystemStatusDetails. List of Channel IDs for which to collect status information.

Returns:The channel_ids of this GenerateDbSystemStatusDetails.
Return type:list[str]
gtid_set_to_apply

Gets the gtid_set_to_apply of this GenerateDbSystemStatusDetails. Specifies the GTID set to be checked on the DB System to determine whether it has been applied. The result of the check is isGtidSetApplied in the response.

Returns:The gtid_set_to_apply of this GenerateDbSystemStatusDetails.
Return type:str
gtid_set_type

Gets the gtid_set_type of this GenerateDbSystemStatusDetails. Specifies whether to collect the full set of GTIDs executed on the DB System (gtid_executed) or the set of GTIDs available in the DB System binary logs, not part of (gtid_purged) (GTID_AVAILABLE, which is gtid_executed - gtid_purged). Use GTID_AVAILABLE if gtid_executed is too large to fit in the response.

Allowed values for this property are: “GTID_EXECUTED”, “GTID_AVAILABLE”

Returns:The gtid_set_type of this GenerateDbSystemStatusDetails.
Return type:str