WorkRequest¶
- 
class 
oci.work_requests.models.WorkRequest(**kwargs)¶ Bases:
objectAn asynchronous work request.
Attributes
STATUS_ACCEPTEDA constant which can be used with the status property of a WorkRequest. STATUS_CANCELEDA constant which can be used with the status property of a WorkRequest. STATUS_CANCELINGA constant which can be used with the status property of a WorkRequest. STATUS_FAILEDA constant which can be used with the status property of a WorkRequest. STATUS_IN_PROGRESSA constant which can be used with the status property of a WorkRequest. STATUS_SUCCEEDEDA constant which can be used with the status property of a WorkRequest. compartment_id[Required] Gets the compartment_id of this WorkRequest. id[Required] Gets the id of this WorkRequest. operation_type[Required] Gets the operation_type of this WorkRequest. percent_complete[Required] Gets the percent_complete of this WorkRequest. resources[Required] Gets the resources of this WorkRequest. status[Required] Gets the status of this WorkRequest. time_accepted[Required] Gets the time_accepted of this WorkRequest. time_finishedGets the time_finished of this WorkRequest. time_startedGets the time_started of this WorkRequest. Methods
__init__(**kwargs)Initializes a new WorkRequest object with values from keyword arguments. - 
STATUS_ACCEPTED= 'ACCEPTED'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “ACCEPTED”
- 
STATUS_CANCELED= 'CANCELED'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “CANCELED”
- 
STATUS_CANCELING= 'CANCELING'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “CANCELING”
- 
STATUS_FAILED= 'FAILED'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “FAILED”
- 
STATUS_IN_PROGRESS= 'IN_PROGRESS'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “IN_PROGRESS”
- 
STATUS_SUCCEEDED= 'SUCCEEDED'¶ A constant which can be used with the status property of a WorkRequest. This constant has a value of “SUCCEEDED”
- 
__init__(**kwargs)¶ Initializes a new WorkRequest object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - operation_type (str) – The value to assign to the operation_type property of this WorkRequest.
 - status (str) – The value to assign to the status property of this WorkRequest. Allowed values for this property are: “ACCEPTED”, “IN_PROGRESS”, “FAILED”, “SUCCEEDED”, “CANCELING”, “CANCELED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
 - id (str) – The value to assign to the id property of this WorkRequest.
 - compartment_id (str) – The value to assign to the compartment_id property of this WorkRequest.
 - resources (list[oci.work_requests.models.WorkRequestResource]) – The value to assign to the resources property of this WorkRequest.
 - percent_complete (float) – The value to assign to the percent_complete property of this WorkRequest.
 - time_accepted (datetime) – The value to assign to the time_accepted property of this WorkRequest.
 - time_started (datetime) – The value to assign to the time_started property of this WorkRequest.
 - time_finished (datetime) – The value to assign to the time_finished property of this WorkRequest.
 
- 
compartment_id¶ [Required] Gets the compartment_id of this WorkRequest. The OCID of the compartment that contains the work request.
Returns: The compartment_id of this WorkRequest. Return type: str 
- 
id¶ [Required] Gets the id of this WorkRequest. The OCID of the work request.
Returns: The id of this WorkRequest. Return type: str 
- 
operation_type¶ [Required] Gets the operation_type of this WorkRequest. The asynchronous operation tracked by this work request.
Returns: The operation_type of this WorkRequest. Return type: str 
- 
percent_complete¶ [Required] Gets the percent_complete of this WorkRequest. The percentage complete of the operation tracked by this work request.
Returns: The percent_complete of this WorkRequest. Return type: float 
- 
resources¶ [Required] Gets the resources of this WorkRequest. The resources that are affected by this work request.
Returns: The resources of this WorkRequest. Return type: list[oci.work_requests.models.WorkRequestResource] 
- 
status¶ [Required] Gets the status of this WorkRequest. The status of the work request.
Allowed values for this property are: “ACCEPTED”, “IN_PROGRESS”, “FAILED”, “SUCCEEDED”, “CANCELING”, “CANCELED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this WorkRequest. Return type: str 
- 
time_accepted¶ [Required] Gets the time_accepted of this WorkRequest. The date and time the work request was created, in the format defined by RFC3339.
Returns: The time_accepted of this WorkRequest. Return type: datetime 
- 
time_finished¶ Gets the time_finished of this WorkRequest. The date and time the work request reached a terminal state, either FAILED or SUCCEEDED. Format is defined by RFC3339.
Returns: The time_finished of this WorkRequest. Return type: datetime 
- 
time_started¶ Gets the time_started of this WorkRequest. The date and time the work request transitioned from ACCEPTED to IN_PROGRESS, in the format defined by RFC3339.
Returns: The time_started of this WorkRequest. Return type: datetime 
-