Class Task
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.Task
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Task.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Arguments.The Category.The Continue On Error.The Description.The Display Name.The Execution Sequence.The Is Enabled.The Task Definition Id.The Task Processing Results. -
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
-
arguments
@SerializedName(value="arguments", alternate="Arguments") @Expose @Nullable public List<KeyValuePair> argumentsThe Arguments. Arguments included within the task. For guidance to configure this property, see Configure the arguments for built-in Lifecycle Workflow tasks. Required. -
category
@SerializedName(value="category", alternate="Category") @Expose @Nullable public EnumSet<LifecycleTaskCategory> categoryThe Category. The category of the task. The possible values are: joiner, leaver, unknownFutureValue. This property is multi-valued and the same task can apply to both joiner and leaver categories.Supports $filter(eq, ne). -
continueOnError
@SerializedName(value="continueOnError", alternate="ContinueOnError") @Expose @Nullable public Boolean continueOnErrorThe Continue On Error. A boolean value that specifies whether, if this task fails, the workflow will stop, and subsequent tasks will not run. Optional. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. A string that describes the purpose of the task for administrative use. Optional. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. A unique string that identifies the task. Required.Supports $filter(eq, ne) and orderBy. -
executionSequence
@SerializedName(value="executionSequence", alternate="ExecutionSequence") @Expose @Nullable public Integer executionSequenceThe Execution Sequence. An integer that states in what order the task will run in a workflow.Supports $orderby. -
isEnabled
@SerializedName(value="isEnabled", alternate="IsEnabled") @Expose @Nullable public Boolean isEnabledThe Is Enabled. A boolean value that denotes whether the task is set to run or not. Optional.Supports $filter(eq, ne) and orderBy. -
taskDefinitionId
@SerializedName(value="taskDefinitionId", alternate="TaskDefinitionId") @Expose @Nullable public String taskDefinitionIdThe Task Definition Id. A unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see supported tasks. Required.Supports $filter(eq, ne). -
taskProcessingResults
@SerializedName(value="taskProcessingResults", alternate="TaskProcessingResults") @Expose @Nullable public TaskProcessingResultCollectionPage taskProcessingResultsThe Task Processing Results. The result of processing the task.
-
-
Constructor Details
-
Task
public Task()
-
-
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
-