ruạṛ
a ���f:^ � @ 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 @ s2 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=� �Ze d?d@� �ZejdAd@� �ZdBdC� ZdDdE� Z dFdG� Z!dHS )I�JreUsagezt Java Runtime usage during a specified time period. A Java Runtime is identified by its vendor and version. �EARLY_ACCESS�UNKNOWN� UP_TO_DATE�UPDATE_REQUIRED�UPGRADE_REQUIREDc K s� dddddddddddddddddddd�| _ dddd d ddd dddddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _d| _d| _d| _d| _dS )a� Initializes a new JreUsage 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 JreUsage. :type id: str :param fleet_id: The value to assign to the fleet_id property of this JreUsage. :type fleet_id: str :param managed_instance_id: The value to assign to the managed_instance_id property of this JreUsage. :type managed_instance_id: str :param security_status: The value to assign to the security_status property of this JreUsage. Allowed values for this property are: "EARLY_ACCESS", "UNKNOWN", "UP_TO_DATE", "UPDATE_REQUIRED", "UPGRADE_REQUIRED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type security_status: str :param release_date: The value to assign to the release_date property of this JreUsage. :type release_date: datetime :param end_of_support_life_date: The value to assign to the end_of_support_life_date property of this JreUsage. :type end_of_support_life_date: datetime :param vendor: The value to assign to the vendor property of this JreUsage. :type vendor: str :param distribution: The value to assign to the distribution property of this JreUsage. :type distribution: str :param version: The value to assign to the version property of this JreUsage. :type version: str :param days_under_security_baseline: The value to assign to the days_under_security_baseline property of this JreUsage. :type days_under_security_baseline: int :param operating_systems: The value to assign to the operating_systems property of this JreUsage. :type operating_systems: list[oci.jms.models.OperatingSystem] :param approximate_installation_count: The value to assign to the approximate_installation_count property of this JreUsage. :type approximate_installation_count: int :param approximate_application_count: The value to assign to the approximate_application_count property of this JreUsage. :type approximate_application_count: int :param approximate_managed_instance_count: The value to assign to the approximate_managed_instance_count property of this JreUsage. :type approximate_managed_instance_count: int :param approximate_pending_work_request_count: The value to assign to the approximate_pending_work_request_count property of this JreUsage. :type approximate_pending_work_request_count: int :param time_start: The value to assign to the time_start property of this JreUsage. :type time_start: datetime :param time_end: The value to assign to the time_end property of this JreUsage. :type time_end: datetime :param time_first_seen: The value to assign to the time_first_seen property of this JreUsage. :type time_first_seen: datetime :param time_last_seen: The value to assign to the time_last_seen property of this JreUsage. :type time_last_seen: datetime �strZdatetime�intzlist[OperatingSystem])�id�fleet_id�managed_instance_id�security_status�release_date�end_of_support_life_date�vendor�distribution�version�days_under_security_baseline�operating_systems�approximate_installation_count�approximate_application_count�"approximate_managed_instance_count�&approximate_pending_work_request_count� time_start�time_end�time_first_seen�time_last_seenr ZfleetIdZmanagedInstanceIdZsecurityStatusZreleaseDateZendOfSupportLifeDater r r ZdaysUnderSecurityBaselineZoperatingSystemsZapproximateInstallationCountZapproximateApplicationCountZapproximateManagedInstanceCountZ"approximatePendingWorkRequestCountZ timeStartZtimeEndZ timeFirstSeenZtimeLastSeenN)Z swagger_typesZ attribute_map�_id� _fleet_id�_managed_instance_id�_security_status� _release_date�_end_of_support_life_date�_vendor� _distribution�_version�_days_under_security_baseline�_operating_systems�_approximate_installation_count�_approximate_application_count�#_approximate_managed_instance_count�'_approximate_pending_work_request_count�_time_start� _time_end�_time_first_seen�_time_last_seen)�self�kwargs� r6 �</usr/lib/python3.9/site-packages/oci/jms/models/jre_usage.py�__init__&