ruạṛ
a ���f�$ � @ sD d dl mZ ddlmZmZmZ ddlmZ eG dd� de��ZdS )� )� ChannelSource� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdd� Ze dd � �Z e jd d � �Z e dd� �Zejd d� �Ze dd� �Z e jdd� �Z e dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Zdd� Zdd� Zdd� Zd S )!�ChannelSourceMysqlz4 Core properties of a Mysql Channel source. �VERIFY_IDENTITY� VERIFY_CA�REQUIRED�DISABLEDc K s` dddddddd�| _ dddd d ddd�| _d | _d | _d | _d | _d | _d | _d | _d| _d S )av Initializes a new ChannelSourceMysql object with values from keyword arguments. The default value of the :py:attr:`~oci.mysql.models.ChannelSourceMysql.source_type` attribute of this class is ``MYSQL`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param source_type: The value to assign to the source_type property of this ChannelSourceMysql. Allowed values for this property are: "MYSQL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type source_type: str :param hostname: The value to assign to the hostname property of this ChannelSourceMysql. :type hostname: str :param port: The value to assign to the port property of this ChannelSourceMysql. :type port: int :param username: The value to assign to the username property of this ChannelSourceMysql. :type username: str :param ssl_mode: The value to assign to the ssl_mode property of this ChannelSourceMysql. Allowed values for this property are: "VERIFY_IDENTITY", "VERIFY_CA", "REQUIRED", "DISABLED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type ssl_mode: str :param ssl_ca_certificate: The value to assign to the ssl_ca_certificate property of this ChannelSourceMysql. :type ssl_ca_certificate: oci.mysql.models.CaCertificate :param anonymous_transactions_handling: The value to assign to the anonymous_transactions_handling property of this ChannelSourceMysql. :type anonymous_transactions_handling: oci.mysql.models.AnonymousTransactionsHandling �str�intZ CaCertificateZAnonymousTransactionsHandling)Zsource_type�hostname�port�username�ssl_mode�ssl_ca_certificate�anonymous_transactions_handlingZ sourceTyper r r ZsslModeZsslCaCertificateZanonymousTransactionsHandlingNZMYSQL) Z swagger_typesZ attribute_mapZ_source_type� _hostname�_port� _username� _ssl_mode�_ssl_ca_certificate� _anonymous_transactions_handling)�self�kwargs� r �I/usr/lib/python3.9/site-packages/oci/mysql/models/channel_source_mysql.py�__init__"