ruạṛ
a ���f�6 � @ 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 d � Zedd� �Z e jd d� �Z edd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zed d!� �Zejd"d!� �Zd#d$� Zd%d&� Zd'd(� Zd)S )*�AlarmStatusSummarya� A summary of properties for the specified alarm and its current evaluation status. For information about alarms, see `Alarms Overview`__. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see `Getting Started with Policies`__. For information about endpoints and signing API requests, see `About the API`__. For information about available SDKs and tools, see `SDKS and Other Tools`__. __ https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#AlarmsOverview __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/sdks.htm �CRITICAL�ERROR�WARNING�INFO�FIRING�OK� SUSPENDEDc K sd ddddddddd�| _ ddddd d ddd�| _d | _d | _d | _d | _d | _d | _d | _d | _ d S )a Initializes a new AlarmStatusSummary 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 AlarmStatusSummary. :type id: str :param display_name: The value to assign to the display_name property of this AlarmStatusSummary. :type display_name: str :param severity: The value to assign to the severity property of this AlarmStatusSummary. Allowed values for this property are: "CRITICAL", "ERROR", "WARNING", "INFO", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type severity: str :param rule_name: The value to assign to the rule_name property of this AlarmStatusSummary. :type rule_name: str :param timestamp_triggered: The value to assign to the timestamp_triggered property of this AlarmStatusSummary. :type timestamp_triggered: datetime :param alarm_summary: The value to assign to the alarm_summary property of this AlarmStatusSummary. :type alarm_summary: str :param status: The value to assign to the status property of this AlarmStatusSummary. Allowed values for this property are: "FIRING", "OK", "SUSPENDED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type status: str :param suppression: The value to assign to the suppression property of this AlarmStatusSummary. :type suppression: oci.monitoring.models.Suppression �strZdatetimeZSuppression)�id�display_name�severity� rule_name�timestamp_triggered� alarm_summary�status�suppressionr ZdisplayNamer ZruleNameZtimestampTriggeredZalarmSummaryr r N) Z swagger_typesZ attribute_map�_id� _display_name� _severity� _rule_name�_timestamp_triggered�_alarm_summary�_status�_suppression)�self�kwargs� r! �N/usr/lib/python3.9/site-packages/oci/monitoring/models/alarm_status_summary.py�__init__>