AddResourceLockDetails¶
-
class
oci.golden_gate.models.
AddResourceLockDetails
(**kwargs)¶ Bases:
object
Used to add a resource lock. 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 AddResourceLockDetails. TYPE_FULL
A constant which can be used with the type property of a AddResourceLockDetails. message
Gets the message of this AddResourceLockDetails. type
[Required] Gets the type of this AddResourceLockDetails. Methods
__init__
(**kwargs)Initializes a new AddResourceLockDetails object with values from keyword arguments. -
TYPE_DELETE
= 'DELETE'¶ A constant which can be used with the type property of a AddResourceLockDetails. This constant has a value of “DELETE”
-
TYPE_FULL
= 'FULL'¶ A constant which can be used with the type property of a AddResourceLockDetails. This constant has a value of “FULL”
-
__init__
(**kwargs)¶ Initializes a new AddResourceLockDetails 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 AddResourceLockDetails. Allowed values for this property are: “FULL”, “DELETE”
- message (str) – The value to assign to the message property of this AddResourceLockDetails.
-
message
¶ Gets the message of this AddResourceLockDetails. 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 AddResourceLockDetails. Return type: str
-
type
¶ [Required] Gets the type of this AddResourceLockDetails. Type of the lock.
Allowed values for this property are: “FULL”, “DELETE”
Returns: The type of this AddResourceLockDetails. Return type: str
-