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 Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • code

      @SerializedName(value="code", alternate="Code") @Expose @Nullable public SynchronizationStatusCode code
      The 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 countSuccessiveCompleteFailures
      The Count Successive Complete Failures. Number of consecutive times this job failed.
    • escrowsPruned

      @SerializedName(value="escrowsPruned", alternate="EscrowsPruned") @Expose @Nullable public Boolean escrowsPruned
      The 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 lastExecution
      The Last Execution. Details of the last execution of the job.
    • lastSuccessfulExecution

      @SerializedName(value="lastSuccessfulExecution", alternate="LastSuccessfulExecution") @Expose @Nullable public SynchronizationTaskExecution lastSuccessfulExecution
      The 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 lastSuccessfulExecutionWithExports
      The 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> progress
      The Progress. Details of the progress of a job toward completion.
    • quarantine

      @SerializedName(value="quarantine", alternate="Quarantine") @Expose @Nullable public SynchronizationQuarantine quarantine
      The Quarantine. If job is in quarantine, quarantine details.
    • steadyStateFirstAchievedTime

      @SerializedName(value="steadyStateFirstAchievedTime", alternate="SteadyStateFirstAchievedTime") @Expose @Nullable public OffsetDateTime steadyStateFirstAchievedTime
      The 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 steadyStateLastAchievedTime
      The 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> synchronizedEntryCountByType
      The Synchronized Entry Count By Type. Count of synchronized objects, listed by object type.
    • troubleshootingUrl

      @SerializedName(value="troubleshootingUrl", alternate="TroubleshootingUrl") @Expose @Nullable public String troubleshootingUrl
      The 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:
      additionalDataManager in interface com.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:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to