ruạṛ
a ���fh � @ sD d dl mZ ddlmZmZmZ ddlmZ eG dd� de��ZdS )� )�PushDownOperation� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ st e Zd ZdZdZdZdZdZdd� Ze dd � �Z e jd d � �Z e dd� �Zejd d� �Zdd� Z dd� Zdd� ZdS )�Joinzn The information about the join operator. The join operator links data from multiple inbound sources. � INNER_JOIN� LEFT_JOIN� RIGHT_JOIN� FULL_JOINc K s8 dddd�| _ dddd�| _d| _d| _d| _d| _dS )a� Initializes a new Join object with values from keyword arguments. The default value of the :py:attr:`~oci.data_integration.models.Join.model_type` attribute of this class is ``JOIN`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param model_type: The value to assign to the model_type property of this Join. Allowed values for this property are: "FILTER", "JOIN", "SELECT", "SORT", "QUERY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type model_type: str :param condition: The value to assign to the condition property of this Join. :type condition: str :param policy: The value to assign to the policy property of this Join. Allowed values for this property are: "INNER_JOIN", "LEFT_JOIN", "RIGHT_JOIN", "FULL_JOIN", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type policy: str �str)Z model_type� condition�policyZ modelTyper r NZJOIN)Z swagger_typesZ attribute_mapZ_model_type� _condition�_policy)�self�kwargs� r �D/usr/lib/python3.9/site-packages/oci/data_integration/models/join.py�__init__"