Show / Hide Table of Contents

Class WorkRequestSummary

The work request summary. Tracks the status of the asynchronous operation.

Inheritance
System.Object
WorkRequestSummary
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class WorkRequestSummary : object

Properties

CompartmentId

Declaration
public string CompartmentId { get; set; }
Property Value
Type Description
System.String

The OCID of the compartment that contains the work request.

Errors

Declaration
public System.Collections.Generic.List<WorkRequestError> Errors { get; set; }
Property Value
Type Description
System.Collections.Generic.List<WorkRequestError>

The errors for work request.

Id

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

The OCID of the work request.

Remarks

Required

OperationType

Declaration
public System.Nullable<WorkRequestSummary.OperationTypeEnum> OperationType { get; set; }
Property Value
Type Description
System.Nullable<WorkRequestSummary.OperationTypeEnum>

An enum-like description of the type of work the work request is doing.

Remarks

Required

PercentComplete

Declaration
public System.Nullable<float> PercentComplete { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

How much progress the operation has made.

Resources

Declaration
public System.Collections.Generic.List<WorkRequestResource> Resources { get; set; }
Property Value
Type Description
System.Collections.Generic.List<WorkRequestResource>

The resources this work request affects.

Status

Declaration
public System.Nullable<WorkRequestSummary.StatusEnum> Status { get; set; }
Property Value
Type Description
System.Nullable<WorkRequestSummary.StatusEnum>

The current status of the work request.

Remarks

Required

TimeAccepted

Declaration
public System.Nullable<System.DateTime> TimeAccepted { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time the work was accepted, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

TimeFinished

Declaration
public System.Nullable<System.DateTime> TimeFinished { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time the work completed, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

TimeStarted

Declaration
public System.Nullable<System.DateTime> TimeStarted { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time the work started, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

In This Article
Back to top