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