Package com.microsoft.graph.models
Class LongRunningOperation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.LongRunningOperation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
RichLongRunningOperation
public class LongRunningOperation
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Long Running Operation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created Date Time.The Last Action Date Time.The Resource Location.The Status.The Status Detail. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The start time of the operation. -
lastActionDateTime
@SerializedName(value="lastActionDateTime", alternate="LastActionDateTime") @Expose @Nullable public OffsetDateTime lastActionDateTimeThe Last Action Date Time. The time of the last action in the operation. -
resourceLocation
@SerializedName(value="resourceLocation", alternate="ResourceLocation") @Expose @Nullable public String resourceLocationThe Resource Location. URI of the resource that the operation is performed on. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public LongRunningOperationStatus statusThe Status. The status of the operation. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. -
statusDetail
@SerializedName(value="statusDetail", alternate="StatusDetail") @Expose @Nullable public String statusDetailThe Status Detail. Details about the status of the operation.
-
-
Constructor Details
-
LongRunningOperation
public LongRunningOperation()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-