ruạṛ
a ���fTR � @ 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 )@�ServiceProviderz Details of the Service Provider. Service provider offers services to the customer to support the delegated resources. �ORACLE_PROVIDED�TROUBLESHOOTING�ASSISTED_PATCHING� VMCLUSTER�CLOUDVMCLUSTER�CREATING�ACTIVE�UPDATING�DELETING�DELETED�FAILEDc K s� ddddddddddddddd�| _ ddd d ddd dddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _dS )a� Initializes a new ServiceProvider 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 ServiceProvider. :type id: str :param compartment_id: The value to assign to the compartment_id property of this ServiceProvider. :type compartment_id: str :param name: The value to assign to the name property of this ServiceProvider. :type name: str :param description: The value to assign to the description property of this ServiceProvider. :type description: str :param service_provider_type: The value to assign to the service_provider_type property of this ServiceProvider. Allowed values for this property are: "ORACLE_PROVIDED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type service_provider_type: str :param service_types: The value to assign to the service_types property of this ServiceProvider. Allowed values for items in this list are: "TROUBLESHOOTING", "ASSISTED_PATCHING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type service_types: list[str] :param supported_resource_types: The value to assign to the supported_resource_types property of this ServiceProvider. Allowed values for items in this list are: "VMCLUSTER", "CLOUDVMCLUSTER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type supported_resource_types: list[str] :param lifecycle_state: The value to assign to the lifecycle_state property of this ServiceProvider. Allowed values for this property are: "CREATING", "ACTIVE", "UPDATING", "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_state_details: The value to assign to the lifecycle_state_details property of this ServiceProvider. :type lifecycle_state_details: str :param time_created: The value to assign to the time_created property of this ServiceProvider. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this ServiceProvider. :type time_updated: datetime :param freeform_tags: The value to assign to the freeform_tags property of this ServiceProvider. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this ServiceProvider. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this ServiceProvider. :type system_tags: dict(str, dict(str, object)) �strz list[str]Zdatetimezdict(str, str)zdict(str, dict(str, object)))�id�compartment_id�name�description�service_provider_type� service_types�supported_resource_types�lifecycle_state�lifecycle_state_details�time_created�time_updated� freeform_tags�defined_tags�system_tagsr Z compartmentIdr r ZserviceProviderTypeZserviceTypesZsupportedResourceTypesZlifecycleStateZlifecycleStateDetailsZtimeCreatedZtimeUpdatedZfreeformTagsZdefinedTagsZ systemTagsN)Z swagger_typesZ attribute_map�_id�_compartment_id�_name�_description�_service_provider_type�_service_types�_supported_resource_types�_lifecycle_state�_lifecycle_state_details� _time_created� _time_updated�_freeform_tags� _defined_tags�_system_tags)�self�kwargs� r1 �W/usr/lib/python3.9/site-packages/oci/delegate_access_control/models/service_provider.py�__init__>