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 @ sH 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%� �Zd'd(� Zd)d*� Zd+d,� Zd-S ).�Compartmenta? A collection of related resources. Compartments are a fundamental component of Oracle Cloud Infrastructure for organizing and isolating your cloud resources. You use them to clearly separate resources for the purposes of measuring usage and billing, access (through the use of IAM Service policies), and isolation (separating the resources for one project or business unit from another). A common approach is to create a compartment for each major part of your organization. For more information, see `Overview of IAM`__ and also `Setting Up Your Tenancy`__. To place a resource in a compartment, simply specify the compartment ID in the "Create" request object when initially creating the resource. For example, to launch an instance into a particular compartment, specify that compartment's OCID in the `LaunchInstance` request. You can't move an existing resource from one compartment to another. 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 `Get Started with Policies`__. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. __ https://docs.cloud.oracle.com//Content/Identity/getstarted/identity-domains.htm __ https://docs.cloud.oracle.com/Content/GSG/Concepts/settinguptenancy.htm __ https://docs.cloud.oracle.com/Content/Identity/policiesgs/get-started-with-policies.htm �CREATING�ACTIVE�INACTIVE�DELETING�DELETEDc K sx ddddddddddd� | _ dd d ddd ddddd� | _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _dS )aY Initializes a new Compartment 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 Compartment. :type id: str :param compartment_id: The value to assign to the compartment_id property of this Compartment. :type compartment_id: str :param name: The value to assign to the name property of this Compartment. :type name: str :param description: The value to assign to the description property of this Compartment. :type description: str :param time_created: The value to assign to the time_created property of this Compartment. :type time_created: datetime :param lifecycle_state: The value to assign to the lifecycle_state property of this Compartment. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param inactive_status: The value to assign to the inactive_status property of this Compartment. :type inactive_status: int :param is_accessible: The value to assign to the is_accessible property of this Compartment. :type is_accessible: bool :param freeform_tags: The value to assign to the freeform_tags property of this Compartment. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this Compartment. :type defined_tags: dict(str, dict(str, object)) �strZdatetime�int�boolzdict(str, str)zdict(str, dict(str, object))) �id�compartment_id�name�description�time_created�lifecycle_state�inactive_status� is_accessible� freeform_tags�defined_tagsr Z compartmentIdr r ZtimeCreatedZlifecycleStateZinactiveStatusZisAccessibleZfreeformTagsZdefinedTagsN)Z swagger_typesZ attribute_map�_id�_compartment_id�_name�_description� _time_created�_lifecycle_state�_inactive_status�_is_accessible�_freeform_tags� _defined_tags)�self�kwargs� r% �C/usr/lib/python3.9/site-packages/oci/identity/models/compartment.py�__init__<