ruạṛ
a ���f�P � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdZdZ dZ d Zd ZdZ dZd d� Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejd d� �Zed!d"� �Zejd#d"� �Zed$d%� �Zejd&d%� �Zed'd(� �Zejd)d(� �Zed*d+� �Zejd,d+� �Zed-d.� �Zejd/d.� �Zed0d1� �Zejd2d1� �Zed3d4� �Zejd5d4� �Zed6d7� �Zejd8d7� �Zed9d:� �Z e jd;d:� �Z d<d=� Z!d>d?� Z"d@dA� Z#dBS )C� DataSourcezG Detailed information for a data source (DataSource resource). �LOGGINGQUERY�SCHEDULEDQUERY�ENABLED�DISABLED�CREATING�UPDATING�ACTIVE�INACTIVE�DELETING�DELETED�FAILEDc K s� dddddddddddddddd �| _ d ddd dddddddddddd �| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _dS )a� Initializes a new DataSource object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this DataSource. :type id: str :param display_name: The value to assign to the display_name property of this DataSource. :type display_name: str :param data_source_feed_provider: The value to assign to the data_source_feed_provider property of this DataSource. Allowed values for this property are: "LOGGINGQUERY", "SCHEDULEDQUERY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type data_source_feed_provider: str :param compartment_id: The value to assign to the compartment_id property of this DataSource. :type compartment_id: str :param data_source_details: The value to assign to the data_source_details property of this DataSource. :type data_source_details: oci.cloud_guard.models.DataSourceDetails :param time_created: The value to assign to the time_created property of this DataSource. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this DataSource. :type time_updated: datetime :param status: The value to assign to the status property of this DataSource. Allowed values for this property are: "ENABLED", "DISABLED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type status: str :param data_source_detector_mapping_info: The value to assign to the data_source_detector_mapping_info property of this DataSource. :type data_source_detector_mapping_info: list[oci.cloud_guard.models.DataSourceMappingInfo] :param region_status_detail: The value to assign to the region_status_detail property of this DataSource. :type region_status_detail: list[oci.cloud_guard.models.RegionStatusDetail] :param lifecycle_state: The value to assign to the lifecycle_state property of this DataSource. Allowed values for this property are: "CREATING", "UPDATING", "ACTIVE", "INACTIVE", "DELETING", "DELETED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param locks: The value to assign to the locks property of this DataSource. :type locks: list[oci.cloud_guard.models.ResourceLock] :param freeform_tags: The value to assign to the freeform_tags property of this DataSource. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this DataSource. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this DataSource. :type system_tags: dict(str, dict(str, object)) �strZDataSourceDetailsZdatetimezlist[DataSourceMappingInfo]zlist[RegionStatusDetail]zlist[ResourceLock]zdict(str, str)zdict(str, dict(str, object)))�id�display_name�data_source_feed_provider�compartment_id�data_source_details�time_created�time_updated�status�!data_source_detector_mapping_info�region_status_detail�lifecycle_state�locks� freeform_tags�defined_tags�system_tagsr ZdisplayNameZdataSourceFeedProviderZ compartmentIdZdataSourceDetailsZtimeCreatedZtimeUpdatedr ZdataSourceDetectorMappingInfoZregionStatusDetailZlifecycleStater ZfreeformTagsZdefinedTagsZ systemTagsN)Z swagger_typesZ attribute_map�_id� _display_name�_data_source_feed_provider�_compartment_id�_data_source_details� _time_created� _time_updated�_status�"_data_source_detector_mapping_info�_region_status_detail�_lifecycle_state�_locks�_freeform_tags� _defined_tags�_system_tags)�self�kwargs� r3 �F/usr/lib/python3.9/site-packages/oci/cloud_guard/models/data_source.py�__init__>