ruạṛ
a ���f�N � @ 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� �Zd9d:� Z d;d<� Z!d=d>� Z"d?S )@�DataSourceSummaryz9 Summary information for a specific data source. �LOGGINGQUERY�SCHEDULEDQUERY�ENABLED�DISABLED�CREATING�UPDATING�ACTIVE�INACTIVE�DELETING�DELETED�FAILEDc K s� ddddddddddddddd�| _ dd d ddd ddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _dS )a~ Initializes a new DataSourceSummary 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 DataSourceSummary. :type id: str :param display_name: The value to assign to the display_name property of this DataSourceSummary. :type display_name: str :param data_source_feed_provider: The value to assign to the data_source_feed_provider property of this DataSourceSummary. 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 DataSourceSummary. :type compartment_id: str :param data_source_summary_details: The value to assign to the data_source_summary_details property of this DataSourceSummary. :type data_source_summary_details: oci.cloud_guard.models.DataSourceSummaryDetails :param time_created: The value to assign to the time_created property of this DataSourceSummary. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this DataSourceSummary. :type time_updated: datetime :param status: The value to assign to the status property of this DataSourceSummary. 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 logging_query_details: The value to assign to the logging_query_details property of this DataSourceSummary. :type logging_query_details: oci.cloud_guard.models.LoggingQueryDetails :param lifecycle_state: The value to assign to the lifecycle_state property of this DataSourceSummary. 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 lifecycle_details: The value to assign to the lifecycle_details property of this DataSourceSummary. :type lifecycle_details: str :param freeform_tags: The value to assign to the freeform_tags property of this DataSourceSummary. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this DataSourceSummary. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this DataSourceSummary. :type system_tags: dict(str, dict(str, object)) �strZDataSourceSummaryDetailsZdatetimeZLoggingQueryDetailszdict(str, str)zdict(str, dict(str, object)))�id�display_name�data_source_feed_provider�compartment_id�data_source_summary_details�time_created�time_updated�status�logging_query_details�lifecycle_state�lifecycle_details� freeform_tags�defined_tags�system_tagsr ZdisplayNameZdataSourceFeedProviderZ compartmentIdZdataSourceSummaryDetailsZtimeCreatedZtimeUpdatedr ZloggingQueryDetailsZlifecycleStateZlifecycleDetailsZfreeformTagsZdefinedTagsZ systemTagsN)Z swagger_typesZ attribute_map�_id� _display_name�_data_source_feed_provider�_compartment_id�_data_source_summary_details� _time_created� _time_updated�_status�_logging_query_details�_lifecycle_state�_lifecycle_details�_freeform_tags� _defined_tags�_system_tags)�self�kwargs� r1 �N/usr/lib/python3.9/site-packages/oci/cloud_guard/models/data_source_summary.py�__init__>