Class WorkRequest.Builder
- java.lang.Object
-
- com.oracle.bmc.databasemanagement.model.WorkRequest.Builder
-
- Enclosing class:
- WorkRequest
public static class WorkRequest.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WorkRequest
build()
WorkRequest.Builder
compartmentId(String compartmentId)
The OCID of the compartment that contains the work request.WorkRequest.Builder
copy(WorkRequest model)
WorkRequest.Builder
id(String id)
The ID of the work request.WorkRequest.Builder
operationType(WorkRequestOperationType operationType)
The type of work request.WorkRequest.Builder
percentComplete(Float percentComplete)
The completed percentage of the operation tracked by the work request.WorkRequest.Builder
resources(List<WorkRequestResource> resources)
The resources affected by this work request.WorkRequest.Builder
status(WorkRequestStatus status)
The status of the current work request.WorkRequest.Builder
timeAccepted(Date timeAccepted)
The date and time the work request was accepted, as described in RFC 3339.WorkRequest.Builder
timeFinished(Date timeFinished)
The date and time the work request reached a terminal state, either FAILED or SUCCEEDED, as described in RFC 3339.WorkRequest.Builder
timeStarted(Date timeStarted)
The date and time the work request transitioned from ACCEPTED to IN_PROGRESS, as described in RFC 3339.
-
-
-
Method Detail
-
id
public WorkRequest.Builder id(String id)
The ID of the work request.- Parameters:
id
- the value to set- Returns:
- this builder
-
compartmentId
public WorkRequest.Builder compartmentId(String compartmentId)
The OCID of the compartment that contains the work request.Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources that are not in the same compartment, then the system picks the primary resource whose compartment should be used.
- Parameters:
compartmentId
- the value to set- Returns:
- this builder
-
operationType
public WorkRequest.Builder operationType(WorkRequestOperationType operationType)
The type of work request.- Parameters:
operationType
- the value to set- Returns:
- this builder
-
status
public WorkRequest.Builder status(WorkRequestStatus status)
The status of the current work request.- Parameters:
status
- the value to set- Returns:
- this builder
-
percentComplete
public WorkRequest.Builder percentComplete(Float percentComplete)
The completed percentage of the operation tracked by the work request.- Parameters:
percentComplete
- the value to set- Returns:
- this builder
-
timeAccepted
public WorkRequest.Builder timeAccepted(Date timeAccepted)
The date and time the work request was accepted, as described in RFC 3339.The precision for this time object in milliseconds.
- Parameters:
timeAccepted
- the value to set- Returns:
- this builder
-
timeStarted
public WorkRequest.Builder timeStarted(Date timeStarted)
The date and time the work request transitioned from ACCEPTED to IN_PROGRESS, as described in RFC 3339.The precision for this time object is in milliseconds.
- Parameters:
timeStarted
- the value to set- Returns:
- this builder
-
timeFinished
public WorkRequest.Builder timeFinished(Date timeFinished)
The date and time the work request reached a terminal state, either FAILED or SUCCEEDED, as described in RFC 3339.The precision for this time object is in milliseconds.
- Parameters:
timeFinished
- the value to set- Returns:
- this builder
-
resources
public WorkRequest.Builder resources(List<WorkRequestResource> resources)
The resources affected by this work request.- Parameters:
resources
- the value to set- Returns:
- this builder
-
build
public WorkRequest build()
-
copy
public WorkRequest.Builder copy(WorkRequest model)
-
-