BaseTag¶
-
class
oci.data_catalog.models.BaseTag(**kwargs)¶ Bases:
objectRepresents the association of an object to a term. Tags are immutable.
Attributes
LIFECYCLE_STATE_ACTIVEA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_CREATINGA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_DELETEDA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_DELETINGA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_FAILEDA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_INACTIVEA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_MOVINGA constant which can be used with the lifecycle_state property of a BaseTag. LIFECYCLE_STATE_UPDATINGA constant which can be used with the lifecycle_state property of a BaseTag. created_by_idGets the created_by_id of this BaseTag. key[Required] Gets the key of this BaseTag. lifecycle_stateGets the lifecycle_state of this BaseTag. nameGets the name of this BaseTag. term_descriptionGets the term_description of this BaseTag. term_keyGets the term_key of this BaseTag. term_pathGets the term_path of this BaseTag. time_createdGets the time_created of this BaseTag. uriGets the uri of this BaseTag. Methods
__init__(**kwargs)Initializes a new BaseTag object with values from keyword arguments. -
LIFECYCLE_STATE_ACTIVE= 'ACTIVE'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “ACTIVE”
-
LIFECYCLE_STATE_CREATING= 'CREATING'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “CREATING”
-
LIFECYCLE_STATE_DELETED= 'DELETED'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “DELETED”
-
LIFECYCLE_STATE_DELETING= 'DELETING'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “DELETING”
-
LIFECYCLE_STATE_FAILED= 'FAILED'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “FAILED”
-
LIFECYCLE_STATE_INACTIVE= 'INACTIVE'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “INACTIVE”
-
LIFECYCLE_STATE_MOVING= 'MOVING'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “MOVING”
-
LIFECYCLE_STATE_UPDATING= 'UPDATING'¶ A constant which can be used with the lifecycle_state property of a BaseTag. This constant has a value of “UPDATING”
-
__init__(**kwargs)¶ Initializes a new BaseTag object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - key (str) – The value to assign to the key property of this BaseTag.
- name (str) – The value to assign to the name property of this BaseTag.
- term_key (str) – The value to assign to the term_key property of this BaseTag.
- term_path (str) – The value to assign to the term_path property of this BaseTag.
- term_description (str) – The value to assign to the term_description property of this BaseTag.
- lifecycle_state (str) – The value to assign to the lifecycle_state property of this BaseTag. 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’.
- time_created (datetime) – The value to assign to the time_created property of this BaseTag.
- created_by_id (str) – The value to assign to the created_by_id property of this BaseTag.
- uri (str) – The value to assign to the uri property of this BaseTag.
-
created_by_id¶ Gets the created_by_id of this BaseTag. OCID of the user who created the tag.
Returns: The created_by_id of this BaseTag. Return type: str
-
key¶ [Required] Gets the key of this BaseTag. Unique tag key that is immutable.
Returns: The key of this BaseTag. Return type: str
-
lifecycle_state¶ Gets the lifecycle_state of this BaseTag. The current state of the tag.
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’.
Returns: The lifecycle_state of this BaseTag. Return type: str
-
name¶ Gets the name of this BaseTag. Name of the tag which matches the term name.
Returns: The name of this BaseTag. Return type: str
-
term_description¶ Gets the term_description of this BaseTag. Description of the related term.
Returns: The term_description of this BaseTag. Return type: str
-
term_key¶ Gets the term_key of this BaseTag. Unique key of the related term.
Returns: The term_key of this BaseTag. Return type: str
-
term_path¶ Gets the term_path of this BaseTag. Path of the related term.
Returns: The term_path of this BaseTag. Return type: str
-
time_created¶ Gets the time_created of this BaseTag. The date and time the tag was created, in the format defined by RFC3339. Example: 2019-03-25T21:10:29.600Z
Returns: The time_created of this BaseTag. Return type: datetime
-
uri¶ Gets the uri of this BaseTag. URI to the tag instance in the API.
Returns: The uri of this BaseTag. Return type: str
-