ruạṛ
a ���f�K � @ 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 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� �Ze dd� �Zejd d� �Ze d!d"� �Zejd#d"� �Ze d$d%� �Zejd&d%� �Ze d'd(� �Zejd)d(� �Ze d*d+� �Zejd,d+� �Ze d-d.� �Zejd/d.� �Ze d0d1� �Zejd2d1� �Ze d3d4� �Zejd5d4� �Ze d6d7� �Zejd8d7� �Ze d9d:� �Zejd;d:� �Ze d<d=� �Zejd>d=� �Zd?d@� ZdAdB� ZdCdD� Z dES )F�ResourceProfilez# Resource profile details. �CRITICAL�HIGH�MEDIUM�LOW�MINORc K s� ddddddddddddddddddd�| _ d d ddd dddddddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _d| _d| _d| _dS )au Initializes a new ResourceProfile object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param sightings_count: The value to assign to the sightings_count property of this ResourceProfile. :type sightings_count: int :param id: The value to assign to the id property of this ResourceProfile. :type id: str :param resource_id: The value to assign to the resource_id property of this ResourceProfile. :type resource_id: str :param display_name: The value to assign to the display_name property of this ResourceProfile. :type display_name: str :param type: The value to assign to the type property of this ResourceProfile. :type type: str :param problem_ids: The value to assign to the problem_ids property of this ResourceProfile. :type problem_ids: list[str] :param compartment_id: The value to assign to the compartment_id property of this ResourceProfile. :type compartment_id: str :param target_id: The value to assign to the target_id property of this ResourceProfile. :type target_id: str :param risk_score: The value to assign to the risk_score property of this ResourceProfile. :type risk_score: float :param risk_level: The value to assign to the risk_level property of this ResourceProfile. Allowed values for this property are: "CRITICAL", "HIGH", "MEDIUM", "LOW", "MINOR", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type risk_level: str :param peak_risk_score: The value to assign to the peak_risk_score property of this ResourceProfile. :type peak_risk_score: float :param time_peak_score: The value to assign to the time_peak_score property of this ResourceProfile. :type time_peak_score: datetime :param time_first_detected: The value to assign to the time_first_detected property of this ResourceProfile. :type time_first_detected: datetime :param time_last_detected: The value to assign to the time_last_detected property of this ResourceProfile. :type time_last_detected: datetime :param time_first_occurred: The value to assign to the time_first_occurred property of this ResourceProfile. :type time_first_occurred: datetime :param time_last_occurred: The value to assign to the time_last_occurred property of this ResourceProfile. :type time_last_occurred: datetime :param tactics: The value to assign to the tactics property of this ResourceProfile. :type tactics: list[oci.cloud_guard.models.TacticSummary] :param locks: The value to assign to the locks property of this ResourceProfile. :type locks: list[oci.cloud_guard.models.ResourceLock] �int�strz list[str]�floatZdatetimezlist[TacticSummary]zlist[ResourceLock])�sightings_count�id�resource_id�display_name�type�problem_ids�compartment_id� target_id� risk_score� risk_level�peak_risk_score�time_peak_score�time_first_detected�time_last_detected�time_first_occurred�time_last_occurred�tactics�locksZsightingsCountr Z resourceIdZdisplayNamer Z problemIdsZ compartmentIdZtargetIdZ riskScoreZ riskLevelZ peakRiskScoreZ timePeakScoreZtimeFirstDetectedZtimeLastDetectedZtimeFirstOccurredZtimeLastOccurredr r N)Z swagger_typesZ attribute_map�_sightings_count�_id�_resource_id� _display_name�_type�_problem_ids�_compartment_id� _target_id�_risk_score�_risk_level�_peak_risk_score�_time_peak_score�_time_first_detected�_time_last_detected�_time_first_occurred�_time_last_occurred�_tactics�_locks)�self�kwargs� r5 �K/usr/lib/python3.9/site-packages/oci/cloud_guard/models/resource_profile.py�__init__&