ruạṛ
a ���f2 � @ sD d dl mZ ddlmZmZmZ ddlmZ eG dd� de��ZdS )� )�ProjectionRule� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdZdd� Z e d d � �Zejdd � �Ze dd � �Z e jdd � �Z e dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Zdd� Zd d!� Zd"d#� Zd$S )%�NamePatternRulez� This rule projects fields by a name pattern, for example it may start with STR_ or end with _DATE. This is defined using a regular expression. �NAME_OR_TAGS� TAGS_ONLY� NAME_ONLY�INCLUDE�EXCLUDEc K s� dddddddddddddddd�| _ dd d ddd dddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _d| _dS )aZ Initializes a new NamePatternRule object with values from keyword arguments. The default value of the :py:attr:`~oci.data_integration.models.NamePatternRule.model_type` attribute of this class is ``NAME_PATTERN_RULE`` 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 NamePatternRule. Allowed values for this property are: "NAME_PATTERN_RULE", "TYPE_LIST_RULE", "NAME_LIST_RULE", "TYPED_NAME_PATTERN_RULE", "RENAME_RULE", "GROUPED_NAME_PATTERN_RULE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type model_type: str :param key: The value to assign to the key property of this NamePatternRule. :type key: str :param model_version: The value to assign to the model_version property of this NamePatternRule. :type model_version: str :param parent_ref: The value to assign to the parent_ref property of this NamePatternRule. :type parent_ref: oci.data_integration.models.ParentReference :param is_java_regex_syntax: The value to assign to the is_java_regex_syntax property of this NamePatternRule. :type is_java_regex_syntax: bool :param config_values: The value to assign to the config_values property of this NamePatternRule. :type config_values: oci.data_integration.models.ConfigValues :param object_status: The value to assign to the object_status property of this NamePatternRule. :type object_status: int :param description: The value to assign to the description property of this NamePatternRule. :type description: str :param is_skip_remaining_rules_on_match: The value to assign to the is_skip_remaining_rules_on_match property of this NamePatternRule. :type is_skip_remaining_rules_on_match: bool :param scope: The value to assign to the scope property of this NamePatternRule. :type scope: object :param is_cascade: The value to assign to the is_cascade property of this NamePatternRule. :type is_cascade: bool :param matching_strategy: The value to assign to the matching_strategy property of this NamePatternRule. Allowed values for this property are: "NAME_OR_TAGS", "TAGS_ONLY", "NAME_ONLY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type matching_strategy: str :param is_case_sensitive: The value to assign to the is_case_sensitive property of this NamePatternRule. :type is_case_sensitive: bool :param rule_type: The value to assign to the rule_type property of this NamePatternRule. Allowed values for this property are: "INCLUDE", "EXCLUDE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type rule_type: str :param pattern: The value to assign to the pattern property of this NamePatternRule. :type pattern: str �strZParentReference�boolZConfigValues�int�object)Z model_type�keyZ model_versionZ parent_refZis_java_regex_syntaxZ config_valuesZ object_status�description� is_skip_remaining_rules_on_match�scope� is_cascade�matching_strategy�is_case_sensitive� rule_type�patternZ modelTyper ZmodelVersionZ parentRefZisJavaRegexSyntaxZconfigValuesZobjectStatusr ZisSkipRemainingRulesOnMatchr Z isCascadeZmatchingStrategyZisCaseSensitiveZruleTyper NZNAME_PATTERN_RULE)Z swagger_typesZ attribute_mapZ_model_typeZ_keyZ_model_versionZ_parent_refZ_is_java_regex_syntaxZ_config_valuesZ_object_statusZ_description�!_is_skip_remaining_rules_on_match�_scope�_is_cascade�_matching_strategy�_is_case_sensitive� _rule_type�_pattern)�self�kwargs� r$ �Q/usr/lib/python3.9/site-packages/oci/data_integration/models/name_pattern_rule.py�__init__&