o
    ëÉ¶d¿  ã                   @   s8   d dl mZmZmZ d dlmZ eG dd„ deƒƒZdS )é    )Úformatted_flat_dictÚNONE_SENTINELÚ#value_allowed_none_or_none_sentinel)Úinit_model_state_from_kwargsc                   @   sR   e Zd ZdZdZdZdd„ Zedd„ ƒZej	dd„ ƒZd	d
„ Z
dd„ Zdd„ ZdS )ÚInitializationVariablesz‚
    User-defined service variables set only at DB system initialization. These variables cannot be changed later at runtime.
    ÚCASE_SENSITIVEÚCASE_INSENSITIVE_LOWERCASEc                 K   s   ddi| _ ddi| _d| _dS )ag  
        Initializes a new InitializationVariables object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param lower_case_table_names:
            The value to assign to the lower_case_table_names property of this InitializationVariables.
            Allowed values for this property are: "CASE_SENSITIVE", "CASE_INSENSITIVE_LOWERCASE", 'UNKNOWN_ENUM_VALUE'.
            Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
        :type lower_case_table_names: str

        Úlower_case_table_namesÚstrZlowerCaseTableNamesN)Zswagger_typesZattribute_mapÚ_lower_case_table_names)ÚselfÚkwargs© r   úMusr/lib/python3.10/site-packages/oci/mysql/models/initialization_variables.pyÚ__init__   s
   ÿÿ
z InitializationVariables.__init__c                 C   s   | j S )aö  
        Gets the lower_case_table_names of this InitializationVariables.
        Represents the MySQL server system variable lower_case_table_names (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names).

        lowerCaseTableNames controls case-sensitivity of tables and schema names and how they are stored in the DB System.

        Valid values are:
          - CASE_SENSITIVE - (default) Table and schema name comparisons are case-sensitive and stored as specified. (lower_case_table_names=0)
          - CASE_INSENSITIVE_LOWERCASE - Table and schema name comparisons are not case-sensitive and stored in lowercase. (lower_case_table_names=1)

        Allowed values for this property are: "CASE_SENSITIVE", "CASE_INSENSITIVE_LOWERCASE", 'UNKNOWN_ENUM_VALUE'.
        Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.


        :return: The lower_case_table_names of this InitializationVariables.
        :rtype: str
        )r   ©r   r   r   r   r	   0   s   z.InitializationVariables.lower_case_table_namesc                 C   s    ddg}t ||ƒsd}|| _dS )a8  
        Sets the lower_case_table_names of this InitializationVariables.
        Represents the MySQL server system variable lower_case_table_names (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names).

        lowerCaseTableNames controls case-sensitivity of tables and schema names and how they are stored in the DB System.

        Valid values are:
          - CASE_SENSITIVE - (default) Table and schema name comparisons are case-sensitive and stored as specified. (lower_case_table_names=0)
          - CASE_INSENSITIVE_LOWERCASE - Table and schema name comparisons are not case-sensitive and stored in lowercase. (lower_case_table_names=1)


        :param lower_case_table_names: The lower_case_table_names of this InitializationVariables.
        :type: str
        r   r   ZUNKNOWN_ENUM_VALUEN)r   r   )r   r	   Zallowed_valuesr   r   r   r	   E   s   

c                 C   s   t | ƒS ©N)r   r   r   r   r   Ú__repr__Z   s   z InitializationVariables.__repr__c                 C   s   |d u rdS | j |j kS )NF)Ú__dict__©r   Úotherr   r   r   Ú__eq__]   s   zInitializationVariables.__eq__c                 C   s
   | |k S r   r   r   r   r   r   Ú__ne__c   s   
zInitializationVariables.__ne__N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Z%LOWER_CASE_TABLE_NAMES_CASE_SENSITIVEZ1LOWER_CASE_TABLE_NAMES_CASE_INSENSITIVE_LOWERCASEr   Úpropertyr	   Úsetterr   r   r   r   r   r   r   r      s    

r   N)Zoci.utilr   r   r   Zoci.decoratorsr   Úobjectr   r   r   r   r   Ú<module>   s   