NetFolderSyncStatus Data Type

The current sync status of a Net Folder.

Properties
name data type description
directory_enumeration_failure boolean Flag indicating whether an error occurred attempting to enumerate a directory.
directory_only boolean Flag indicating whether the most recent sync only scanned directories or directories and files.
end_date number Date/time when the most recent sync ended.
entries_expunged number The number of folder entries that were removed.
failures number The number of failures that occurred.
files_added number The number of new files found.
files_expunged number The number of files that were removed because they no longer exist.
files_found number The total number of files found.
files_modified number The number of updated files found.
files_with_modified_acl number The number of files with modified ACLs.
files_with_modified_owner number The number of files with a different owner.
folders_added number The number of new folders found.
folders_expunged number The number of folders that were removed because they no longer exist.
folders_found number The total number of folders found.
folders_processed number The number of folders that were processed.
folders_with_modified_acl number The number of folders with modified ACLs.
folders_with_modified_owner number The number of folders with a different owner.
node_ip_address string IP Address of the server node executing the most recent sync of the Net Folder.
start_date number Date/time when the most recent sync began.
status string The status of the most recent Net Folder sync job.

Possible values are:

  • none
  • ready
  • taken
  • started
  • stopped
  • finished
  • aborted
  • canceled
  • deleting

Example

{
  "status" : "...",
  "node_ip_address" : "...",
  "start_date" : 12345.0,
  "end_date" : 12345.0,
  "directory_only" : true,
  "directory_enumeration_failure" : true,
  "files_found" : 12345,
  "files_added" : 12345,
  "files_expunged" : 12345,
  "files_modified" : 12345,
  "files_with_modified_acl" : 12345,
  "files_with_modified_owner" : 12345,
  "folders_found" : 12345,
  "folders_added" : 12345,
  "folders_expunged" : 12345,
  "folders_with_modified_acl" : 12345,
  "folders_with_modified_owner" : 12345,
  "entries_expunged" : 12345,
  "failures" : 12345,
  "folders_processed" : 12345
}