ErrorOnAnonymousHandling¶
-
class
oci.mysql.models.
ErrorOnAnonymousHandling
(**kwargs)¶ Bases:
oci.mysql.models.anonymous_transactions_handling.AnonymousTransactionsHandling
Disables assignment of IDs to anonymous transactions coming from the source. Use this policy when the transaction identifiers are enabled in the source of the replication channel.
Attributes
POLICY_ASSIGN_MANUAL_UUID
str(object=’’) -> str POLICY_ASSIGN_TARGET_UUID
str(object=’’) -> str POLICY_ERROR_ON_ANONYMOUS
str(object=’’) -> str policy
[Required] Gets the policy of this AnonymousTransactionsHandling. Methods
__init__
(**kwargs)Initializes a new ErrorOnAnonymousHandling object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
POLICY_ASSIGN_MANUAL_UUID
= 'ASSIGN_MANUAL_UUID'¶
-
POLICY_ASSIGN_TARGET_UUID
= 'ASSIGN_TARGET_UUID'¶
-
POLICY_ERROR_ON_ANONYMOUS
= 'ERROR_ON_ANONYMOUS'¶
-
__init__
(**kwargs)¶ Initializes a new ErrorOnAnonymousHandling object with values from keyword arguments. The default value of the
policy
attribute of this class isERROR_ON_ANONYMOUS
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: policy (str) – The value to assign to the policy property of this ErrorOnAnonymousHandling. Allowed values for this property are: “ERROR_ON_ANONYMOUS”, “ASSIGN_TARGET_UUID”, “ASSIGN_MANUAL_UUID”
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
policy
¶ [Required] Gets the policy of this AnonymousTransactionsHandling. Specifies how the replication channel handles anonymous transactions.
Allowed values for this property are: “ERROR_ON_ANONYMOUS”, “ASSIGN_TARGET_UUID”, “ASSIGN_MANUAL_UUID”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The policy of this AnonymousTransactionsHandling. Return type: str
-