Class Run
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.Run
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Run.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Failed Tasks Count.The Failed Users Count.The Last Updated Date Time.The Processing Status.The Scheduled Date Time.The Started Date Time.The Successful Users Count.The Task Processing Results.The Total Tasks Count.The Total Unprocessed Tasks Count.The Total Users Count.The User Processing Results.The Workflow Execution Type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. The date time that the run completed. Value is null if the workflow hasn't completed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
failedTasksCount
@SerializedName(value="failedTasksCount", alternate="FailedTasksCount") @Expose @Nullable public Integer failedTasksCountThe Failed Tasks Count. The number of tasks that failed in the run execution. -
failedUsersCount
@SerializedName(value="failedUsersCount", alternate="FailedUsersCount") @Expose @Nullable public Integer failedUsersCountThe Failed Users Count. The number of users that failed in the run execution. -
lastUpdatedDateTime
@SerializedName(value="lastUpdatedDateTime", alternate="LastUpdatedDateTime") @Expose @Nullable public OffsetDateTime lastUpdatedDateTimeThe Last Updated Date Time. The datetime that the run was last updated.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
processingStatus
@SerializedName(value="processingStatus", alternate="ProcessingStatus") @Expose @Nullable public LifecycleWorkflowProcessingStatus processingStatusThe Processing Status. The run execution status. The possible values are: queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
scheduledDateTime
@SerializedName(value="scheduledDateTime", alternate="ScheduledDateTime") @Expose @Nullable public OffsetDateTime scheduledDateTimeThe Scheduled Date Time. The date time that the run is scheduled to be executed for a workflow.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
startedDateTime
@SerializedName(value="startedDateTime", alternate="StartedDateTime") @Expose @Nullable public OffsetDateTime startedDateTimeThe Started Date Time. The date time that the run execution started.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
successfulUsersCount
@SerializedName(value="successfulUsersCount", alternate="SuccessfulUsersCount") @Expose @Nullable public Integer successfulUsersCountThe Successful Users Count. The number of successfully completed users in the run. -
totalTasksCount
@SerializedName(value="totalTasksCount", alternate="TotalTasksCount") @Expose @Nullable public Integer totalTasksCountThe Total Tasks Count. -
totalUnprocessedTasksCount
@SerializedName(value="totalUnprocessedTasksCount", alternate="TotalUnprocessedTasksCount") @Expose @Nullable public Integer totalUnprocessedTasksCountThe Total Unprocessed Tasks Count. The total number of unprocessed tasks in the run execution. -
totalUsersCount
@SerializedName(value="totalUsersCount", alternate="TotalUsersCount") @Expose @Nullable public Integer totalUsersCountThe Total Users Count. The total number of users in the workflow execution. -
workflowExecutionType
@SerializedName(value="workflowExecutionType", alternate="WorkflowExecutionType") @Expose @Nullable public WorkflowExecutionType workflowExecutionTypeThe Workflow Execution Type. The execution type of the workflows associated with the run. The possible values are: scheduled, onDemand, unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
taskProcessingResults
@SerializedName(value="taskProcessingResults", alternate="TaskProcessingResults") @Expose @Nullable public TaskProcessingResultCollectionPage taskProcessingResultsThe Task Processing Results. The related taskProcessingResults. -
userProcessingResults
@SerializedName(value="userProcessingResults", alternate="UserProcessingResults") @Expose @Nullable public UserProcessingResultCollectionPage userProcessingResultsThe User Processing Results. The associated individual user execution.
-
-
Constructor Details
-
Run
public Run()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-