Package com.microsoft.graph.models
Class SynchronizationStatus
java.lang.Object
com.microsoft.graph.models.SynchronizationStatus
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SynchronizationStatus
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Synchronization Status.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Code.The Count Successive Complete Failures.The Escrows Pruned.The Last Execution.The Last Successful Execution.The Last Successful Execution With Exports.the OData type of the object as returned by the serviceThe Progress.The Quarantine.The Steady State First Achieved Time.The Steady State Last Achieved Time.The Synchronized Entry Count By Type.The Troubleshooting Url. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
code
@SerializedName(value="code", alternate="Code") @Expose @Nullable public SynchronizationStatusCode codeThe Code. High-level status code of the synchronization job. Possible values are: NotConfigured, NotRun, Active, Paused, Quarantine. -
countSuccessiveCompleteFailures
@SerializedName(value="countSuccessiveCompleteFailures", alternate="CountSuccessiveCompleteFailures") @Expose @Nullable public Long countSuccessiveCompleteFailuresThe Count Successive Complete Failures. Number of consecutive times this job failed. -
escrowsPruned
@SerializedName(value="escrowsPruned", alternate="EscrowsPruned") @Expose @Nullable public Boolean escrowsPrunedThe Escrows Pruned. true if the job's escrows (object-level errors) were pruned during initial synchronization. Escrows can be pruned if during the initial synchronization, you reach the threshold of errors that would normally put the job in quarantine. Instead of going into quarantine, the synchronization process clears the job's errors and continues until the initial synchronization is completed. When the initial synchronization is completed, the job will pause and wait for the customer to clean up the errors. -
lastExecution
@SerializedName(value="lastExecution", alternate="LastExecution") @Expose @Nullable public SynchronizationTaskExecution lastExecutionThe Last Execution. Details of the last execution of the job. -
lastSuccessfulExecution
@SerializedName(value="lastSuccessfulExecution", alternate="LastSuccessfulExecution") @Expose @Nullable public SynchronizationTaskExecution lastSuccessfulExecutionThe Last Successful Execution. Details of the last execution of this job, which didn't have any errors. -
lastSuccessfulExecutionWithExports
@SerializedName(value="lastSuccessfulExecutionWithExports", alternate="LastSuccessfulExecutionWithExports") @Expose @Nullable public SynchronizationTaskExecution lastSuccessfulExecutionWithExportsThe Last Successful Execution With Exports. Details of the last execution of the job, which exported objects into the target directory. -
progress
@SerializedName(value="progress", alternate="Progress") @Expose @Nullable public List<SynchronizationProgress> progressThe Progress. Details of the progress of a job toward completion. -
quarantine
@SerializedName(value="quarantine", alternate="Quarantine") @Expose @Nullable public SynchronizationQuarantine quarantineThe Quarantine. If job is in quarantine, quarantine details. -
steadyStateFirstAchievedTime
@SerializedName(value="steadyStateFirstAchievedTime", alternate="SteadyStateFirstAchievedTime") @Expose @Nullable public OffsetDateTime steadyStateFirstAchievedTimeThe Steady State First Achieved Time. The time when steady state (no more changes to the process) was first achieved. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
steadyStateLastAchievedTime
@SerializedName(value="steadyStateLastAchievedTime", alternate="SteadyStateLastAchievedTime") @Expose @Nullable public OffsetDateTime steadyStateLastAchievedTimeThe Steady State Last Achieved Time. The time when steady state (no more changes to the process) was last achieved. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. -
synchronizedEntryCountByType
@SerializedName(value="synchronizedEntryCountByType", alternate="SynchronizedEntryCountByType") @Expose @Nullable public List<StringKeyLongValuePair> synchronizedEntryCountByTypeThe Synchronized Entry Count By Type. Count of synchronized objects, listed by object type. -
troubleshootingUrl
@SerializedName(value="troubleshootingUrl", alternate="TroubleshootingUrl") @Expose @Nullable public String troubleshootingUrlThe Troubleshooting Url. In the event of an error, the URL with the troubleshooting steps for the issue.
-
-
Constructor Details
-
SynchronizationStatus
public SynchronizationStatus()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
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- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-