Class TaskReport
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.TaskReport
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Task Report.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Failed Users Count.The Last Updated Date Time.The Processing Status.The Run Id.The Started Date Time.The Successful Users Count.The Task.The Task Definition.The Task Processing Results.The Total Users Count.The Unprocessed Users Count. -
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 associated run completed. Value is null if the run has not completed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
failedUsersCount
@SerializedName(value="failedUsersCount", alternate="FailedUsersCount") @Expose @Nullable public Integer failedUsersCountThe Failed Users Count. The number of users in the run execution for which the associated task failed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
lastUpdatedDateTime
@SerializedName(value="lastUpdatedDateTime", alternate="LastUpdatedDateTime") @Expose @Nullable public OffsetDateTime lastUpdatedDateTimeThe Last Updated Date Time. The date and time that the task report was last updated. -
processingStatus
@SerializedName(value="processingStatus", alternate="ProcessingStatus") @Expose @Nullable public LifecycleWorkflowProcessingStatus processingStatusThe Processing Status. The processing status of the associated task based on the taskProcessingResults. The possible values are based on the number of queued, inProgress, completed, completedWithErrors, canceled, failed, and unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
runId
The Run Id. The unique identifier of the associated run. -
startedDateTime
@SerializedName(value="startedDateTime", alternate="StartedDateTime") @Expose @Nullable public OffsetDateTime startedDateTimeThe Started Date Time. The date time that the associated run started. Value is null if the run has not started. -
successfulUsersCount
@SerializedName(value="successfulUsersCount", alternate="SuccessfulUsersCount") @Expose @Nullable public Integer successfulUsersCountThe Successful Users Count. The number of users in the run execution for which the associated task succeeded.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
totalUsersCount
@SerializedName(value="totalUsersCount", alternate="TotalUsersCount") @Expose @Nullable public Integer totalUsersCountThe Total Users Count. The total number of users in the run execution for which the associated task was scheduled to execute.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
unprocessedUsersCount
@SerializedName(value="unprocessedUsersCount", alternate="UnprocessedUsersCount") @Expose @Nullable public Integer unprocessedUsersCountThe Unprocessed Users Count. The number of users in the run execution for which the associated task is queued, in progress, or canceled.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
task
The Task. The related lifecycle workflow task.Supports $filter(eq, ne) and $expand. -
taskDefinition
@SerializedName(value="taskDefinition", alternate="TaskDefinition") @Expose @Nullable public TaskDefinition taskDefinitionThe Task Definition. The taskDefinition associated with the related lifecycle workflow task.Supports $filter(eq, ne) and $expand. -
taskProcessingResults
@SerializedName(value="taskProcessingResults", alternate="TaskProcessingResults") @Expose @Nullable public TaskProcessingResultCollectionPage taskProcessingResultsThe Task Processing Results. The related lifecycle workflow taskProcessingResults.
-
-
Constructor Details
-
TaskReport
public TaskReport()
-
-
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
-