ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class GlossaryTreeElement(object): """ Glossary tree element with child terms. """ #: A constant which can be used with the workflow_status property of a GlossaryTreeElement. #: This constant has a value of "NEW" WORKFLOW_STATUS_NEW = "NEW" #: A constant which can be used with the workflow_status property of a GlossaryTreeElement. #: This constant has a value of "APPROVED" WORKFLOW_STATUS_APPROVED = "APPROVED" #: A constant which can be used with the workflow_status property of a GlossaryTreeElement. #: This constant has a value of "UNDER_REVIEW" WORKFLOW_STATUS_UNDER_REVIEW = "UNDER_REVIEW" #: A constant which can be used with the workflow_status property of a GlossaryTreeElement. #: This constant has a value of "ESCALATED" WORKFLOW_STATUS_ESCALATED = "ESCALATED" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "CREATING" LIFECYCLE_STATE_CREATING = "CREATING" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "ACTIVE" LIFECYCLE_STATE_ACTIVE = "ACTIVE" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "INACTIVE" LIFECYCLE_STATE_INACTIVE = "INACTIVE" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "UPDATING" LIFECYCLE_STATE_UPDATING = "UPDATING" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "DELETING" LIFECYCLE_STATE_DELETING = "DELETING" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "DELETED" LIFECYCLE_STATE_DELETED = "DELETED" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" #: A constant which can be used with the lifecycle_state property of a GlossaryTreeElement. #: This constant has a value of "MOVING" LIFECYCLE_STATE_MOVING = "MOVING" def __init__(self, **kwargs): """ Initializes a new GlossaryTreeElement object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param child_terms: The value to assign to the child_terms property of this GlossaryTreeElement. :type child_terms: list[oci.data_catalog.models.GlossaryTreeElement] :param key: The value to assign to the key property of this GlossaryTreeElement. :type key: str :param display_name: The value to assign to the display_name property of this GlossaryTreeElement. :type display_name: str :param description: The value to assign to the description property of this GlossaryTreeElement. :type description: str :param glossary_key: The value to assign to the glossary_key property of this GlossaryTreeElement. :type glossary_key: str :param uri: The value to assign to the uri property of this GlossaryTreeElement. :type uri: str :param parent_term_key: The value to assign to the parent_term_key property of this GlossaryTreeElement. :type parent_term_key: str :param is_allowed_to_have_child_terms: The value to assign to the is_allowed_to_have_child_terms property of this GlossaryTreeElement. :type is_allowed_to_have_child_terms: bool :param path: The value to assign to the path property of this GlossaryTreeElement. :type path: str :param time_created: The value to assign to the time_created property of this GlossaryTreeElement. :type time_created: datetime :param workflow_status: The value to assign to the workflow_status property of this GlossaryTreeElement. Allowed values for this property are: "NEW", "APPROVED", "UNDER_REVIEW", "ESCALATED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type workflow_status: str :param associated_object_count: The value to assign to the associated_object_count property of this GlossaryTreeElement. :type associated_object_count: int :param lifecycle_state: The value to assign to the lifecycle_state property of this GlossaryTreeElement. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "MOVING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str """ self.swagger_types = { 'child_terms': 'list[GlossaryTreeElement]', 'key': 'str', 'display_name': 'str', 'description': 'str', 'glossary_key': 'str', 'uri': 'str', 'parent_term_key': 'str', 'is_allowed_to_have_child_terms': 'bool', 'path': 'str', 'time_created': 'datetime', 'workflow_status': 'str', 'associated_object_count': 'int', 'lifecycle_state': 'str' } self.attribute_map = { 'child_terms': 'childTerms', 'key': 'key', 'display_name': 'displayName', 'description': 'description', 'glossary_key': 'glossaryKey', 'uri': 'uri', 'parent_term_key': 'parentTermKey', 'is_allowed_to_have_child_terms': 'isAllowedToHaveChildTerms', 'path': 'path', 'time_created': 'timeCreated', 'workflow_status': 'workflowStatus', 'associated_object_count': 'associatedObjectCount', 'lifecycle_state': 'lifecycleState' } self._child_terms = None self._key = None self._display_name = None self._description = None self._glossary_key = None self._uri = None self._parent_term_key = None self._is_allowed_to_have_child_terms = None self._path = None self._time_created = None self._workflow_status = None self._associated_object_count = None self._lifecycle_state = None @property def child_terms(self): """ Gets the child_terms of this GlossaryTreeElement. An array of child terms. :return: The child_terms of this GlossaryTreeElement. :rtype: list[oci.data_catalog.models.GlossaryTreeElement] """ return self._child_terms @child_terms.setter def child_terms(self, child_terms): """ Sets the child_terms of this GlossaryTreeElement. An array of child terms. :param child_terms: The child_terms of this GlossaryTreeElement. :type: list[oci.data_catalog.models.GlossaryTreeElement] """ self._child_terms = child_terms @property def key(self): """ **[Required]** Gets the key of this GlossaryTreeElement. Unique term key that is immutable. :return: The key of this GlossaryTreeElement. :rtype: str """ return self._key @key.setter def key(self, key): """ Sets the key of this GlossaryTreeElement. Unique term key that is immutable. :param key: The key of this GlossaryTreeElement. :type: str """ self._key = key @property def display_name(self): """ Gets the display_name of this GlossaryTreeElement. A user-friendly display name. Does not have to be unique, and it's changeable. Avoid entering confidential information. :return: The display_name of this GlossaryTreeElement. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this GlossaryTreeElement. A user-friendly display name. Does not have to be unique, and it's changeable. Avoid entering confidential information. :param display_name: The display_name of this GlossaryTreeElement. :type: str """ self._display_name = display_name @property def description(self): """ Gets the description of this GlossaryTreeElement. Detailed description of the term. :return: The description of this GlossaryTreeElement. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this GlossaryTreeElement. Detailed description of the term. :param description: The description of this GlossaryTreeElement. :type: str """ self._description = description @property def glossary_key(self): """ Gets the glossary_key of this GlossaryTreeElement. Unique id of the parent glossary. :return: The glossary_key of this GlossaryTreeElement. :rtype: str """ return self._glossary_key @glossary_key.setter def glossary_key(self, glossary_key): """ Sets the glossary_key of this GlossaryTreeElement. Unique id of the parent glossary. :param glossary_key: The glossary_key of this GlossaryTreeElement. :type: str """ self._glossary_key = glossary_key @property def uri(self): """ Gets the uri of this GlossaryTreeElement. URI to the term instance in the API. :return: The uri of this GlossaryTreeElement. :rtype: str """ return self._uri @uri.setter def uri(self, uri): """ Sets the uri of this GlossaryTreeElement. URI to the term instance in the API. :param uri: The uri of this GlossaryTreeElement. :type: str """ self._uri = uri @property def parent_term_key(self): """ Gets the parent_term_key of this GlossaryTreeElement. This terms parent term key. Will be null if the term has no parent term. :return: The parent_term_key of this GlossaryTreeElement. :rtype: str """ return self._parent_term_key @parent_term_key.setter def parent_term_key(self, parent_term_key): """ Sets the parent_term_key of this GlossaryTreeElement. This terms parent term key. Will be null if the term has no parent term. :param parent_term_key: The parent_term_key of this GlossaryTreeElement. :type: str """ self._parent_term_key = parent_term_key @property def is_allowed_to_have_child_terms(self): """ Gets the is_allowed_to_have_child_terms of this GlossaryTreeElement. Indicates whether a term may contain child terms. :return: The is_allowed_to_have_child_terms of this GlossaryTreeElement. :rtype: bool """ return self._is_allowed_to_have_child_terms @is_allowed_to_have_child_terms.setter def is_allowed_to_have_child_terms(self, is_allowed_to_have_child_terms): """ Sets the is_allowed_to_have_child_terms of this GlossaryTreeElement. Indicates whether a term may contain child terms. :param is_allowed_to_have_child_terms: The is_allowed_to_have_child_terms of this GlossaryTreeElement. :type: bool """ self._is_allowed_to_have_child_terms = is_allowed_to_have_child_terms @property def path(self): """ Gets the path of this GlossaryTreeElement. Absolute path of the term. :return: The path of this GlossaryTreeElement. :rtype: str """ return self._path @path.setter def path(self, path): """ Sets the path of this GlossaryTreeElement. Absolute path of the term. :param path: The path of this GlossaryTreeElement. :type: str """ self._path = path @property def time_created(self): """ Gets the time_created of this GlossaryTreeElement. The date and time the term was created, in the format defined by `RFC3339`__. Example: `2019-03-25T21:10:29.600Z` __ https://tools.ietf.org/html/rfc3339 :return: The time_created of this GlossaryTreeElement. :rtype: datetime """ return self._time_created @time_created.setter def time_created(self, time_created): """ Sets the time_created of this GlossaryTreeElement. The date and time the term was created, in the format defined by `RFC3339`__. Example: `2019-03-25T21:10:29.600Z` __ https://tools.ietf.org/html/rfc3339 :param time_created: The time_created of this GlossaryTreeElement. :type: datetime """ self._time_created = time_created @property def workflow_status(self): """ Gets the workflow_status of this GlossaryTreeElement. Status of the approval process workflow for this business term in the glossary. Allowed values for this property are: "NEW", "APPROVED", "UNDER_REVIEW", "ESCALATED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The workflow_status of this GlossaryTreeElement. :rtype: str """ return self._workflow_status @workflow_status.setter def workflow_status(self, workflow_status): """ Sets the workflow_status of this GlossaryTreeElement. Status of the approval process workflow for this business term in the glossary. :param workflow_status: The workflow_status of this GlossaryTreeElement. :type: str """ allowed_values = ["NEW", "APPROVED", "UNDER_REVIEW", "ESCALATED"] if not value_allowed_none_or_none_sentinel(workflow_status, allowed_values): workflow_status = 'UNKNOWN_ENUM_VALUE' self._workflow_status = workflow_status @property def associated_object_count(self): """ Gets the associated_object_count of this GlossaryTreeElement. The number of objects tagged with this term. :return: The associated_object_count of this GlossaryTreeElement. :rtype: int """ return self._associated_object_count @associated_object_count.setter def associated_object_count(self, associated_object_count): """ Sets the associated_object_count of this GlossaryTreeElement. The number of objects tagged with this term. :param associated_object_count: The associated_object_count of this GlossaryTreeElement. :type: int """ self._associated_object_count = associated_object_count @property def lifecycle_state(self): """ Gets the lifecycle_state of this GlossaryTreeElement. State of the term. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "MOVING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The lifecycle_state of this GlossaryTreeElement. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this GlossaryTreeElement. State of the term. :param lifecycle_state: The lifecycle_state of this GlossaryTreeElement. :type: str """ allowed_values = ["CREATING", "ACTIVE", "INACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED", "MOVING"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
cải xoăn