ResourceLock¶
-
class
oci.identity.models.
ResourceLock
(**kwargs)¶ Bases:
object
Resource locks are used to prevent certain APIs from being called for the resource. A full lock prevents both updating the resource and deleting the resource. A delete lock prevents deleting the resource.
Attributes
TYPE_DELETE
A constant which can be used with the type property of a ResourceLock. TYPE_FULL
A constant which can be used with the type property of a ResourceLock. is_active
Gets the is_active of this ResourceLock. message
Gets the message of this ResourceLock. related_resource_id
Gets the related_resource_id of this ResourceLock. time_created
Gets the time_created of this ResourceLock. type
[Required] Gets the type of this ResourceLock. Methods
__init__
(**kwargs)Initializes a new ResourceLock object with values from keyword arguments. -
TYPE_DELETE
= 'DELETE'¶ A constant which can be used with the type property of a ResourceLock. This constant has a value of “DELETE”
-
TYPE_FULL
= 'FULL'¶ A constant which can be used with the type property of a ResourceLock. This constant has a value of “FULL”
-
__init__
(**kwargs)¶ Initializes a new ResourceLock object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - type (str) – The value to assign to the type property of this ResourceLock. Allowed values for this property are: “FULL”, “DELETE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- related_resource_id (str) – The value to assign to the related_resource_id property of this ResourceLock.
- message (str) – The value to assign to the message property of this ResourceLock.
- time_created (datetime) – The value to assign to the time_created property of this ResourceLock.
- is_active (bool) – The value to assign to the is_active property of this ResourceLock.
-
is_active
¶ Gets the is_active of this ResourceLock. Indicates if the lock is active or not. For example, if there are mutliple FULL locks, the first-created FULL lock will be effective.
Returns: The is_active of this ResourceLock. Return type: bool
-
message
¶ Gets the message of this ResourceLock. A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
Returns: The message of this ResourceLock. Return type: str
Gets the related_resource_id of this ResourceLock. The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
Returns: The related_resource_id of this ResourceLock. Return type: str
-
time_created
¶ Gets the time_created of this ResourceLock. When the lock was created.
Returns: The time_created of this ResourceLock. Return type: datetime
-
type
¶ [Required] Gets the type of this ResourceLock. Type of the lock.
Allowed values for this property are: “FULL”, “DELETE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this ResourceLock. Return type: str
-